diff options
author | erwin <erwin@FreeBSD.org> | 2005-07-13 16:39:18 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2005-07-13 16:39:18 +0800 |
commit | 764cd12bf2efdb409685d93503003df849ecc8b4 (patch) | |
tree | bcdc00e6017b9d065196d268d0fc571b91cce8bc /math/ccmath | |
parent | 0110335f70ab0fad15a9c2e1d8ad744980f28282 (diff) | |
download | freebsd-ports-gnome-764cd12bf2efdb409685d93503003df849ecc8b4.tar.gz freebsd-ports-gnome-764cd12bf2efdb409685d93503003df849ecc8b4.tar.zst freebsd-ports-gnome-764cd12bf2efdb409685d93503003df849ecc8b4.zip |
This port installs libccm.so in /usr/local/lib. ldconfig
will not pick this library up because it is missing a final digit.
This among other things, breaks LIB_DEPENDS.
PR: 83360
Submitted by: Diane Bruce <db@db.net>
Diffstat (limited to 'math/ccmath')
-rw-r--r-- | math/ccmath/Makefile | 4 | ||||
-rw-r--r-- | math/ccmath/pkg-plist | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/math/ccmath/Makefile b/math/ccmath/Makefile index b92b4717c757..df6b1198be37 100644 --- a/math/ccmath/Makefile +++ b/math/ccmath/Makefile @@ -7,11 +7,12 @@ PORTNAME= ccmath PORTVERSION= 2.2.1 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= libs -MAINTAINER= ports@FreeBSD.org +MAINTAINER= db@db.net COMMENT= A mathematics library with many different functions INSTALLS_SHLIB= yes @@ -28,6 +29,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/ccmath.h ${PREFIX}/include ${INSTALL_DATA} ${WRKSRC}/tmp/libccm.a ${PREFIX}/lib ${INSTALL_PROGRAM} ${WRKSRC}/tmp/libccm.so ${PREFIX}/lib + ${LN} -s ${PREFIX}/lib/libccm.so ${PREFIX}/lib/libccm.so.1 .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/ccmath ${INSTALL_DATA} ${WRKSRC}/manual/* ${PREFIX}/share/doc/ccmath diff --git a/math/ccmath/pkg-plist b/math/ccmath/pkg-plist index bda2a4184b6c..9fbd09a20c71 100644 --- a/math/ccmath/pkg-plist +++ b/math/ccmath/pkg-plist @@ -1,6 +1,7 @@ include/ccmath.h lib/libccm.a lib/libccm.so +lib/libccm.so.1 %%PORTDOCS%%%%DOCSDIR%%/C00-intro %%PORTDOCS%%%%DOCSDIR%%/C01-matrix %%PORTDOCS%%%%DOCSDIR%%/C02-intg |