Date: Wed, 18 Jun 2014 16:11:42 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358284 - head/math/libranlip Message-ID: <201406181611.s5IGBgXN031820@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Wed Jun 18 16:11:42 2014 New Revision: 358284 URL: http://svnweb.freebsd.org/changeset/ports/358284 QAT: https://qat.redports.org/buildarchive/r358284/ Log: 1: Stagify. 2: USES=libtool, bump version. Approved by: portmgr@ Modified: head/math/libranlip/Makefile Modified: head/math/libranlip/Makefile ============================================================================== --- head/math/libranlip/Makefile Wed Jun 18 16:05:20 2014 (r358283) +++ head/math/libranlip/Makefile Wed Jun 18 16:11:42 2014 (r358284) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406181611.s5IGBgXN031820>