mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
33 lines
943 B
Makefile
33 lines
943 B
Makefile
# Created by: camson@bilateral.com.au
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= artemis
|
|
PORTVERSION= 9
|
|
PORTREVISION= 1
|
|
CATEGORIES= biology java
|
|
MASTER_SITES= http://www.sanger.ac.uk/Software/Artemis/v${PORTVERSION}/ \
|
|
ftp://ftp.sanger.ac.uk/pub/pathogens/software/artemis/v${PORTVERSION}/
|
|
DISTNAME= artemis_compiled_v${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= DNA sequence viewer and annotation tool
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
|
|
NO_BUILD= yes
|
|
PLIST_SUB= PORTVERSION="${PORTVERSION}"
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type d -name CVS -exec ${RM} -rf {} +
|
|
|
|
do-install:
|
|
@${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>
|