aboutsummaryrefslogtreecommitdiffstats
path: root/biology/phrap/Makefile
blob: de2be50a3c568d52aa853d13a1596fa6400533f6 (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# $FreeBSD$

PORTNAME=   phrap
PORTVERSION=    1.090518
CATEGORIES= biology
MASTER_SITES=   # put the tarball manually
DISTFILES=  distrib.tar.gz
DIST_SUBDIR=    ${PORTNAME}

MAINTAINER= mzaki@m.u-tokyo.ac.jp
COMMENT=    Phrap is a program for assembling shotgun DNA sequence data

RESTRICTED= Redistribution is not permitted in any form. You must request the tarball via e-mail. Free for academic use.
.if defined(PACKAGE_BUILDING)
IGNORE=     distribution files must be obtained via the authors
.endif

NO_WRKSUBDIR=   yes

MAKEFILE=   makefile
ALL_TARGET= all

BINARIES=   calf_merge pcluster cross_match loco phrap swat
SCRIPTS=    phrapview

PORTDATA=   BLOSUM50 BLOSUM62 PAM250 mat50 mat70 mb_matrix penalty2 vector.seq
PORTDOCS=   general.doc phrap.doc swat.doc

.include <bsd.port.pre.mk>

.for f in ${DISTFILES}
.if !exists(${DISTDIR}/${DIST_SUBDIR}/${f})
IGNORE= you must request the source code \(${DISTFILES}\) via e-mail, place it manually in ${DISTDIR}/${DIST_SUBDIR}, and then try it again
.endif
.endfor

do-install:
.for f in ${BINARIES}
    @${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin/
.endfor
.for f in ${SCRIPTS}
    @${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin/
.endfor
    @${MKDIR} ${STAGEDIR}${DATADIR}
.for f in ${PORTDATA}
    @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}
.endfor
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
    @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor

.include <bsd.port.post.mk>