From owner-svn-ports-head@FreeBSD.ORG Wed Mar 13 21:39:41 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DA05A4EB; Wed, 13 Mar 2013 21:39:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BD291DC6; Wed, 13 Mar 2013 21:39:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2DLdf1b086907; Wed, 13 Mar 2013 21:39:41 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2DLdfbk086901; Wed, 13 Mar 2013 21:39:41 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201303132139.r2DLdfbk086901@svn.freebsd.org> From: Pawel Pekala Date: Wed, 13 Mar 2013 21:39:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r314115 - in head/cad: . ldraw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Mar 2013 21:39:41 -0000 Author: pawel Date: Wed Mar 13 21:39:40 2013 New Revision: 314115 URL: http://svnweb.freebsd.org/changeset/ports/314115 Log: LDraw is an open standard for LEGO CAD programs that allow the user to create virtual LEGO models and scenes. You can use it to document models you have physically built, create building instructions just like LEGO, render 3D photo realistic images of your virtual models and even make animations. The possibilities are endless. Unlike real LEGO bricks where you are limited by the number of parts and colors, in LDraw nothing is impossible. WWW: http://www.ldraw.org/ PR: ports/174901 Submitted by: nemysis@gmx.ch Added: head/cad/ldraw/ head/cad/ldraw/Makefile (contents, props changed) head/cad/ldraw/distinfo (contents, props changed) head/cad/ldraw/pkg-descr (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Wed Mar 13 21:29:11 2013 (r314114) +++ head/cad/Makefile Wed Mar 13 21:39:40 2013 (r314115) @@ -52,6 +52,7 @@ SUBDIR += kicad-library SUBDIR += klayout SUBDIR += layouteditor + SUBDIR += ldraw SUBDIR += leocad SUBDIR += libgeda SUBDIR += librecad Added: head/cad/ldraw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ldraw/Makefile Wed Mar 13 21:39:40 2013 (r314115) @@ -0,0 +1,29 @@ +# Created by: nemysis@gmx.ch +# $FreeBSD$ + +PORTNAME= ldraw +PORTVERSION= 20120913 +CATEGORIES= cad +MASTER_SITES= http://www.ldraw.org/library/updates/ +DISTNAME= complete +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= nemysis@gmx.ch +COMMENT= LDraw parts library + +LICENSE= CDDL + +USE_ZIP= yes +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-install: + @(cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${DATADIR}) + +post-install: + @${FIND} ${DATADIR}/ ! -type d | ${SED} 's|^${PREFIX}/||' >> ${TMPPLIST} + @${FIND} -ds ${DATADIR}/ -type d | \ + ${SED} -E -e 's,(.*),@unexec ${RMDIR} "\1" 2>/dev/null || true,' >> ${TMPPLIST} + +.include Added: head/cad/ldraw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ldraw/distinfo Wed Mar 13 21:39:40 2013 (r314115) @@ -0,0 +1,2 @@ +SHA256 (ldraw/complete.zip) = d6949e51f617ff46457dc5467d9b8d525cf744486ff9f29a49927f6eaa882b79 +SIZE (ldraw/complete.zip) = 21433103 Added: head/cad/ldraw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/ldraw/pkg-descr Wed Mar 13 21:39:40 2013 (r314115) @@ -0,0 +1,8 @@ +LDraw is an open standard for LEGO CAD programs that allow the user to create +virtual LEGO models and scenes. You can use it to document models you have +physically built, create building instructions just like LEGO, render 3D photo +realistic images of your virtual models and even make animations. +The possibilities are endless. Unlike real LEGO bricks where you are limited by +the number of parts and colors, in LDraw nothing is impossible. + +WWW: http://www.ldraw.org/