From owner-svn-ports-all@freebsd.org Fri Jul 3 14:45:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0F7D994F70; Fri, 3 Jul 2015 14:45:42 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA76E1D8D; Fri, 3 Jul 2015 14:45:42 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t63Ejgs4054719; Fri, 3 Jul 2015 14:45:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t63EjfAF054712; Fri, 3 Jul 2015 14:45:41 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201507031445.t63EjfAF054712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 3 Jul 2015 14:45:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391246 - in head/cad: . stepcode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jul 2015 14:45:42 -0000 Author: amdmi3 Date: Fri Jul 3 14:45:40 2015 New Revision: 391246 URL: https://svnweb.freebsd.org/changeset/ports/391246 Log: In April/May 2012, STEP Class Library was renamed to STEPcode. This was done because the old name wasn't accurate - the class libraries are only a fraction of the software. The STEP Class Library (SCL) originated at the National Institute of Standards and Technology, or NIST. NIST started working with STEP in the 80's and continued until the late 90's. Some components of SCL were originally written in Lisp and then re-written in mixed C and C++ in the early 90's. The rest of SCL was written in C++ to begin with. STEPcode (SC) includes the class libraries, some of the most widely used EXPRESS schemas, some tools to work with EXPRESS, and support libraries for those tools. Two of the tools can create schema-specific libraries that are used with the class libraries. There are also some test files and programs. WWW: https://github.com/stepcode/stepcode/wiki PR: 201046 Submitted by: fernando.apesteguia@gmail.com Added: head/cad/stepcode/ head/cad/stepcode/Makefile (contents, props changed) head/cad/stepcode/distinfo (contents, props changed) head/cad/stepcode/pkg-descr (contents, props changed) head/cad/stepcode/pkg-plist (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Jul 3 14:43:09 2015 (r391245) +++ head/cad/Makefile Fri Jul 3 14:45:40 2015 (r391246) @@ -83,6 +83,7 @@ SUBDIR += scotch SUBDIR += slffea SUBDIR += spice + SUBDIR += stepcode SUBDIR += sweethome3d SUBDIR += tkgate SUBDIR += tochnog Added: head/cad/stepcode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/stepcode/Makefile Fri Jul 3 14:45:40 2015 (r391246) @@ -0,0 +1,28 @@ +# Created by: Fernando Apesteguia +# $FreeBSD$ + +PORTNAME= stepcode +PORTVERSION= 0.8 +DISTVERSIONPREFIX= v +CATEGORIES= cad + +MAINTAINER= fernando.apesteguia@gmail.com +COMMENT= Generates C++ and Python from ISO10303 files + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes + +USE_LDCONFIG= yes + +USES= cmake:outsource compiler:c++11-lang +CMAKE_ARGS+= -DSC_INSTALL_PREFIX=${PREFIX} \ + -DSC_BUILD_TYPE=Release + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/schema_scanner + @(cd ${STAGEDIR}${PREFIX} ; \ + ${FIND} include \( -type f -or -type l \) | ${SORT} >> ${TMPPLIST}) + +.include Added: head/cad/stepcode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/stepcode/distinfo Fri Jul 3 14:45:40 2015 (r391246) @@ -0,0 +1,2 @@ +SHA256 (stepcode-stepcode-v0.8_GH0.tar.gz) = f9cc8a5a4193f97add595c1909433154f82983b892c532be2a696758b153fd2c +SIZE (stepcode-stepcode-v0.8_GH0.tar.gz) = 5967472 Added: head/cad/stepcode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/stepcode/pkg-descr Fri Jul 3 14:45:40 2015 (r391246) @@ -0,0 +1,16 @@ +In April/May 2012, STEP Class Library was renamed to STEPcode. This was done +because the old name wasn't accurate - the class libraries are only a fraction +of the software. + +The STEP Class Library (SCL) originated at the National Institute of Standards +and Technology, or NIST. NIST started working with STEP in the 80's and +continued until the late 90's. Some components of SCL were originally written +in Lisp and then re-written in mixed C and C++ in the early 90's. +The rest of SCL was written in C++ to begin with. + +STEPcode (SC) includes the class libraries, some of the most widely used EXPRESS +schemas, some tools to work with EXPRESS, and support libraries for those tools. +Two of the tools can create schema-specific libraries that are used with the +class libraries. There are also some test files and programs. + +WWW: https://github.com/stepcode/stepcode/wiki Added: head/cad/stepcode/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/stepcode/pkg-plist Fri Jul 3 14:45:40 2015 (r391246) @@ -0,0 +1,118 @@ +bin/check-express +bin/exp2cxx +bin/exp2python +bin/exppp +bin/lazy_sdai_IFC4 +bin/lazy_sdai_ISO15926 +bin/lazy_sdai_ap203 +bin/lazy_sdai_ap203e2 +bin/lazy_sdai_ap210e2 +bin/lazy_sdai_ap214e3 +bin/lazy_sdai_ap219 +bin/lazy_sdai_ap227 +bin/lazy_sdai_ap235 +bin/lazy_sdai_ap238 +bin/lazy_sdai_ap239 +bin/lazy_sdai_ap240 +bin/lazy_sdai_cd209 +bin/lazy_sdai_cd242 +bin/lazy_sdai_ifc2x3 +bin/lazy_sdai_pdm +bin/lazy_sdai_wip210e3 +bin/lazy_test +bin/p21read_sdai_IFC4 +bin/p21read_sdai_ISO15926 +bin/p21read_sdai_ap203 +bin/p21read_sdai_ap203e2 +bin/p21read_sdai_ap210e2 +bin/p21read_sdai_ap214e3 +bin/p21read_sdai_ap219 +bin/p21read_sdai_ap227 +bin/p21read_sdai_ap235 +bin/p21read_sdai_ap238 +bin/p21read_sdai_ap239 +bin/p21read_sdai_ap240 +bin/p21read_sdai_cd209 +bin/p21read_sdai_cd242 +bin/p21read_sdai_ifc2x3 +bin/p21read_sdai_pdm +bin/p21read_sdai_wip210e3 +bin/schema_scanner +@comment include/* is handled dynamically in the Makefile +lib/libbase.so +lib/libbase.so.2 +lib/libbase.so.2.0.0 +lib/libexppp.so +lib/libexppp.so.2 +lib/libexppp.so.2.0.0 +lib/libexpress.so +lib/libexpress.so.2 +lib/libexpress.so.2.0.0 +lib/libsdai_IFC4.so +lib/libsdai_IFC4.so.2 +lib/libsdai_IFC4.so.2.0.0 +lib/libsdai_ISO15926.so +lib/libsdai_ISO15926.so.2 +lib/libsdai_ISO15926.so.2.0.0 +lib/libsdai_ap203.so +lib/libsdai_ap203.so.2 +lib/libsdai_ap203.so.2.0.0 +lib/libsdai_ap203e2.so +lib/libsdai_ap203e2.so.2 +lib/libsdai_ap203e2.so.2.0.0 +lib/libsdai_ap210e2.so +lib/libsdai_ap210e2.so.2 +lib/libsdai_ap210e2.so.2.0.0 +lib/libsdai_ap214e3.so +lib/libsdai_ap214e3.so.2 +lib/libsdai_ap214e3.so.2.0.0 +lib/libsdai_ap219.so +lib/libsdai_ap219.so.2 +lib/libsdai_ap219.so.2.0.0 +lib/libsdai_ap227.so +lib/libsdai_ap227.so.2 +lib/libsdai_ap227.so.2.0.0 +lib/libsdai_ap235.so +lib/libsdai_ap235.so.2 +lib/libsdai_ap235.so.2.0.0 +lib/libsdai_ap238.so +lib/libsdai_ap238.so.2 +lib/libsdai_ap238.so.2.0.0 +lib/libsdai_ap239.so +lib/libsdai_ap239.so.2 +lib/libsdai_ap239.so.2.0.0 +lib/libsdai_ap240.so +lib/libsdai_ap240.so.2 +lib/libsdai_ap240.so.2.0.0 +lib/libsdai_cd209.so +lib/libsdai_cd209.so.2 +lib/libsdai_cd209.so.2.0.0 +lib/libsdai_cd242.so +lib/libsdai_cd242.so.2 +lib/libsdai_cd242.so.2.0.0 +lib/libsdai_ifc2x3.so +lib/libsdai_ifc2x3.so.2 +lib/libsdai_ifc2x3.so.2.0.0 +lib/libsdai_pdm.so +lib/libsdai_pdm.so.2 +lib/libsdai_pdm.so.2.0.0 +lib/libsdai_wip210e3.so +lib/libsdai_wip210e3.so.2 +lib/libsdai_wip210e3.so.2.0.0 +lib/libstepcore.so +lib/libstepcore.so.2 +lib/libstepcore.so.2.0.0 +lib/libstepdai.so +lib/libstepdai.so.2 +lib/libstepdai.so.2.0.0 +lib/libstepeditor.so +lib/libstepeditor.so.2 +lib/libstepeditor.so.2.0.0 +lib/libsteplazyfile.so +lib/libsteplazyfile.so.2 +lib/libsteplazyfile.so.2.0.0 +lib/libsteputils.so +lib/libsteputils.so.2 +lib/libsteputils.so.2.0.0 +share/man/man1/exp2cxx.1 +share/man/man1/fedex.1