Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Dec 2013 17:54:12 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r336072 - head/biology/mrbayes
Message-ID:  <201312101754.rBAHsCCR046953@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Tue Dec 10 17:54:12 2013
New Revision: 336072
URL: http://svnweb.freebsd.org/changeset/ports/336072

Log:
  Support stage
  USE_GMAKE -> USES=gmake
  use USES=readline:port

Modified:
  head/biology/mrbayes/Makefile

Modified: head/biology/mrbayes/Makefile
==============================================================================
--- head/biology/mrbayes/Makefile	Tue Dec 10 17:25:38 2013	(r336071)
+++ head/biology/mrbayes/Makefile	Tue Dec 10 17:54:12 2013	(r336072)
@@ -10,23 +10,20 @@ MASTER_SITES=	SF
 MAINTAINER=	mzaki@m.u-tokyo.ac.jp
 COMMENT=	Bayesian inference of phylogeny
 
-USE_GMAKE=	yes
+OPTIONS_DEFINE=	EXAMPLES
 
-LIB_DEPENDS+=	readline.6:${PORTSDIR}/devel/readline
+USES=		gmake readline:port
 
 PLIST_FILES=	bin/mb
 
 PORTEXAMPLES=	adh.nex anolis.nex avian_ovomucoids.nex bglobin.nex \
 		cynmix.nex kim.nex primates.nex replicase.nex
 
-NO_STAGE=	yes
 do-install:
-	@${INSTALL_PROGRAM} ${WRKSRC}/mb ${PREFIX}/bin/
-.if !defined(NOPORTEXAMPLES)
-	@${MKDIR} ${EXAMPLESDIR}
+	@${INSTALL_PROGRAM} ${WRKSRC}/mb ${STAGEDIR}${PREFIX}/bin/
+	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 .for file in ${PORTEXAMPLES}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
+	@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${EXAMPLESDIR}
 .endfor
-.endif
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312101754.rBAHsCCR046953>