diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2011-01-04 21:13:44 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2011-01-04 21:13:44 +0000 |
commit | e52f5a3c8fb70fc269c72e59868d7579c757ea6e (patch) | |
tree | ef07515df71c5fdcdbe7ae4dd5503a2771720ed4 /cad/salome/Makefile | |
parent | - Update to 0.6.3.3. (diff) |
Update cad/salome* to 5.1.4.
Warning: This port require gcc 4.4 build 20090512 or _EARLIER_ for
successful _run_.
PR: ports/152396
Submitted by: maintainer (Stas Timokhin)
Diffstat (limited to 'cad/salome/Makefile')
-rw-r--r-- | cad/salome/Makefile | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/cad/salome/Makefile b/cad/salome/Makefile index 9d1c80fdafb0..4c6d0ce1c1fb 100644 --- a/cad/salome/Makefile +++ b/cad/salome/Makefile @@ -5,11 +5,10 @@ # $FreeBSD$ PORTNAME= salome -PORTVERSION= 5.1.3 -PORTREVISION= 4 +PORTVERSION= 5.1.4 CATEGORIES= cad science MASTER_SITES= http://www.stasyan.com/devel/distfiles/ -DISTNAME= src5.1.3 +DISTNAME= src5.1.4 DIST_SUBDIR= ${PORTNAME} .if !defined(PKGNAMESUFFIX) EXTRACT_ONLY= #none @@ -21,20 +20,22 @@ OPTIONS= \ GEOM "GEOM module" on \ MED "MED module" on \ SMESH "SMESH module (require MED & GEOM)" on \ + NETGENPLUGIN "Netgen-meser plugin" on \ VISU "VISU module (require MED)" on \ LIGHT "LIGHT module" on \ YACS "Yacs module" on \ MULTIPR "Multipr module" on \ RANDOMIZER "Randomizer module" on \ SIERPINSKY "Sierpinsky module" on \ - CPPUNIT "build with C++ unit testing framework" off \ - MPI "build with support parrallel calculation" off + JOBMAN "Job manager module" on \ + MPI "build with support parrallel calculation" on -RESOURCEDIR= ${DATADIR}/resources +RESOURCEDIR= ${PREFIX}/share/salome/resources SLAVEDIRS= cad/salome-kernel cad/salome-gui cad/salome-geom cad/salome-light \ cad/salome-yacs cad/salome-randomizer cad/salome-visu cad/salome-med \ - cad/salome-sierpinsky cad/salome-smesh cad/salome-multipr + cad/salome-sierpinsky cad/salome-smesh cad/salome-multipr cad/salome-jobmanager \ + cad/salome-netgenplugin .include <bsd.port.options.mk> @@ -72,9 +73,15 @@ RUN_DEPENDS+= ${RESOURCEDIR}/sierpinsky:${PORTSDIR}/cad/salome-sierpinsky .if defined(WITH_SMESH) RUN_DEPENDS+= ${RESOURCEDIR}/smesh:${PORTSDIR}/cad/salome-smesh .endif +.if defined(WITH_NETGENPLUGIN) +RUN_DEPENDS+= ${RESOURCEDIR}/netgenplugin:${PORTSDIR}/cad/salome-netgenplugin +.endif .if defined(WITH_MULTIPR) RUN_DEPENDS+= ${RESOURCEDIR}/multipr:${PORTSDIR}/cad/salome-multipr .endif +.if defined(WITH_JOBMAN) +RUN_DEPENDS+= ${RESOURCEDIR}/jobmanager:${PORTSDIR}/cad/salome-jobmanager +.endif SUB_LIST= PREFIX=${PREFIX} SUB_FILES= pkg-message runSalome.csh |