diff options
author | gahr <gahr@FreeBSD.org> | 2013-10-07 16:25:11 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-10-07 16:25:11 +0800 |
commit | 04843e1aa8dab9deda21000ac65ec2587a12d66c (patch) | |
tree | 3952d82b64b67e279689e2610f64b662ded8fc2a /math | |
parent | 9b649518364861dc29dba0e63965bd3cc87ffb3e (diff) | |
download | freebsd-ports-gnome-04843e1aa8dab9deda21000ac65ec2587a12d66c.tar.gz freebsd-ports-gnome-04843e1aa8dab9deda21000ac65ec2587a12d66c.tar.zst freebsd-ports-gnome-04843e1aa8dab9deda21000ac65ec2587a12d66c.zip |
- Connect math/abacus to the build [1]
- Convert to new LIB_DEPENDS format
- STAGE-clean
Reported by: linimon [1]
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/abacus/Makefile | 11 |
2 files changed, 6 insertions, 6 deletions
diff --git a/math/Makefile b/math/Makefile index b3e936560861..07da1a2622f4 100644 --- a/math/Makefile +++ b/math/Makefile @@ -44,6 +44,7 @@ SUBDIR += R-cran-xts SUBDIR += R-cran-zoo SUBDIR += aamath + SUBDIR += abacus SUBDIR += abakus SUBDIR += abs SUBDIR += add diff --git a/math/abacus/Makefile b/math/abacus/Makefile index b542ee5d8eec..ab366e621227 100644 --- a/math/abacus/Makefile +++ b/math/abacus/Makefile @@ -11,7 +11,7 @@ COMMENT= A Branch-And-CUt System LICENSE= GPLv2 -LIB_DEPENDS= Clp:${PORTSDIR}/math/coinmp +LIB_DEPENDS= libClp.so:${PORTSDIR}/math/coinmp USE_GCC= 4.4+ USES= gmake perl5 @@ -21,7 +21,6 @@ ALL_TARGET= abacus WRKSRC= ${WRKDIR} -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e '\ s|%%LOCALBASE%%|${LOCALBASE}|g; \ @@ -30,9 +29,9 @@ post-patch: ${WRKSRC}/Makefile do-install: - ${INSTALL_DATA} ${WRKSRC}/lib/linux20-gcc44/libabacus-osi.a ${PREFIX}/lib/libabacus-osi.a - ${INSTALL_DATA} ${WRKSRC}/lib/linux20-gcc44/libabacus-osi.so ${PREFIX}/lib/libabacus-osi.so.1 - ${LN} -sf libabacus-osi.so.1 ${PREFIX}/lib/libabacus-osi.so - cd ${WRKSRC}/Include && ${COPYTREE_SHARE} abacus ${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/lib/linux20-gcc44/libabacus-osi.a ${STAGEDIR}${PREFIX}/lib/libabacus-osi.a + ${INSTALL_DATA} ${WRKSRC}/lib/linux20-gcc44/libabacus-osi.so ${STAGEDIR}${PREFIX}/lib/libabacus-osi.so.1 + ${LN} -sf libabacus-osi.so.1 ${STAGEDIR}${PREFIX}/lib/libabacus-osi.so + cd ${WRKSRC}/Include && ${COPYTREE_SHARE} abacus ${STAGEDIR}${PREFIX}/include .include <bsd.port.mk> |