diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-21 07:06:48 +0800 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-21 07:06:48 +0800 |
commit | 090f15acf530a94a743c84f71971c2019c99d42d (patch) | |
tree | 16c758c7d2610a2474a3540cabd06eb5affa0744 /biology | |
parent | 5221a9dd7a29841fb4e2e36b9b0933bd93029eae (diff) | |
download | freebsd-ports-gnome-090f15acf530a94a743c84f71971c2019c99d42d.tar.gz freebsd-ports-gnome-090f15acf530a94a743c84f71971c2019c99d42d.tar.zst freebsd-ports-gnome-090f15acf530a94a743c84f71971c2019c99d42d.zip |
Support stage
Diffstat (limited to 'biology')
-rw-r--r-- | biology/artemis/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/biology/artemis/Makefile b/biology/artemis/Makefile index f665deffa161..64cb567766b7 100644 --- a/biology/artemis/Makefile +++ b/biology/artemis/Makefile @@ -10,7 +10,7 @@ MASTER_SITES= http://www.sanger.ac.uk/Software/Artemis/v${PORTVERSION}/ \ DISTNAME= artemis_compiled_v${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A DNA sequence viewer and annotation tool +COMMENT= DNA sequence viewer and annotation tool WRKSRC= ${WRKDIR}/${PORTNAME} @@ -20,14 +20,13 @@ JAVA_VERSION= 1.6+ NO_BUILD= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -type d -name CVS -exec ${RM} -rf {} + do-install: - @${MKDIR} ${PREFIX}/${PORTNAME}-${PORTVERSION} - @${TAR} -C ${WRKSRC} -cf- . | ${TAR} -C ${PREFIX}/${PORTNAME}-${PORTVERSION} -xpf- - @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/art ${PREFIX}/bin/art - @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/act ${PREFIX}/bin/act + @${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${PORTVERSION} + @${TAR} -C ${WRKSRC} -cf- . | ${TAR} -C ${STAGEDIR}${PREFIX}/${PORTNAME}-${PORTVERSION} -xpf- + @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/art ${STAGEDIR}${PREFIX}/bin/art + @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/act ${STAGEDIR}${PREFIX}/bin/act .include <bsd.port.mk> |