summaryrefslogtreecommitdiff
path: root/math/libranlip
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2014-06-18 16:11:42 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2014-06-18 16:11:42 +0000
commit926a215156f2904b9d4c322c591533e4292c333a (patch)
treef68dc297066770cbb5e235e8581538f24c80d9a9 /math/libranlip
parentStagify. (diff)
1: Stagify.
2: USES=libtool, bump version. Approved by: portmgr@
Notes
Notes: svn path=/head/; revision=358284
Diffstat (limited to 'math/libranlip')
-rw-r--r--math/libranlip/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/math/libranlip/Makefile b/math/libranlip/Makefile
index b2c3c3e5fcb8..3b083c7a6938 100644
--- a/math/libranlip/Makefile
+++ b/math/libranlip/Makefile
@@ -3,6 +3,7 @@
PORTNAME= libranlip
DISTVERSION= 1.0
+PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= LOCAL/bf \
http://www.deakin.edu.au/~gleb/
@@ -10,29 +11,28 @@ MASTER_SITES= LOCAL/bf \
MAINTAINER= bf@FreeBSD.org
COMMENT= A random variate generator for Lipschitz-continuous densities
+USES= libtool
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INFO= ranlip
-PLIST_FILES= include/ranlip.h include/ranlipdist.h include/ranlipproc.h lib/libranlip.so.${PORTVERSION} \
- lib/libranlip.so.${PORTVERSION:R} lib/libranlip.la lib/libranlip.a
+PLIST_FILES= include/ranlip.h include/ranlipdist.h include/ranlipproc.h lib/libranlip.so.1.0.0 \
+ lib/libranlip.so.1 lib/libranlip.so lib/libranlip.a
PORTDOCS= ranlip.ps
PORTEXAMPLES= makefile ranliptest.cpp ranliptestproc.cpp
TESTPROGS= static_example static_example2 static_example3 shared_example
-NO_STAGE= yes
.include <bsd.port.pre.mk>
post-install:
- ${LN} -s ${PREFIX}/lib/libranlip.so.${PORTVERSION} ${PREFIX}/lib/libranlip.so.${PORTVERSION:R}
.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR}
- ${INSTALL_MAN} ${WRKSRC}/docs/ranlip.ps ${DOCSDIR}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_MAN} ${WRKSRC}/docs/ranlip.ps ${STAGEDIR}${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
- ${MKDIR} ${EXAMPLESDIR}
+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for _file in ${PORTEXAMPLES}
- ${INSTALL_DATA} ${WRKSRC}/examples/${_file} ${EXAMPLESDIR}
+ ${INSTALL_DATA} ${WRKSRC}/examples/${_file} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.endif