blob: ee85444fc5ef65962d8bfcde7d65c9a20fba159e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: artemis
# Date created: 10 Nov 2001
# Whom: camson@bilateral.com.au
#
# $FreeBSD$
#
PORTNAME= artemis
PORTVERSION= 7
PORTREVISION= 2
CATEGORIES= biology java
MASTER_SITES= http://www.sanger.ac.uk/Software/Artemis/v${PORTVERSION}/
DISTNAME= artemis_compiled_v${PORTVERSION}_${PORTREVISION}
MAINTAINER= fernan@iib.unsam.edu.ar
COMMENT= A DNA sequence viewer and annotation tool
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_JAVA= yes
JAVA_VERSION= 1.4+
NO_BUILD= yes
PLIST_SUB= PORTVERSION="${PORTVERSION}"
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
.include <bsd.port.mk>
|