From owner-svn-ports-head@FreeBSD.ORG Wed Jun 18 16:11:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA167C27; Wed, 18 Jun 2014 16:11:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD0732467; Wed, 18 Jun 2014 16:11:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5IGBgQA031821; Wed, 18 Jun 2014 16:11:42 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5IGBgXN031820; Wed, 18 Jun 2014 16:11:42 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406181611.s5IGBgXN031820@svn.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 18 Jun 2014 16:11:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358284 - head/math/libranlip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 16:11:42 -0000 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 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