blob: 43f3040cf01630e8d7134d15d8bce9f6a2218f95 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: phred
# Date created: 6 December 2007
# Whom: Motomichi Matsuzaki <mzaki@biol.s.u-tokyo.ac.jp>
#
# $FreeBSD$
#
PORTNAME= phred
PORTVERSION= 0.020425.c
CATEGORIES= biology
MASTER_SITES= # put the tarball manually
DISTNAME= ${PORTNAME}-dist-${PORTVERSION:S/0.//}-acd
EXTRACT_SUFX= .tar.Z
MAINTAINER= mzaki@biol.s.u-tokyo.ac.jp
COMMENT= Base calling and quality value assignment on DNA sequencing
RESTRICTED= Redistribution is not permitted in any form. You must request the tarball via e-mail. Free for academic use.
NO_WRKSUBDIR= yes
ALL_TARGET= phred daev
BINMODE= 0111 # avoid copying binaries as required by the agreement
BINARIES= phred daev
.for f in ${BINARIES}
PLIST_FILES+= bin/${f}
.endfor
DATADIR= ${PREFIX}/etc/PhredPar
DATAFILES= phredpar.dat
.for f in ${DATAFILES}
PORTDATA+= ${f}.dist
.endfor
PORTDOCS= NEWS PHRED.DOC DAEV.DOC
.include <bsd.port.pre.mk>
.for f in ${DISTFILES}
.if !exists(${DISTDIR}/${f})
IGNORE= you must request the source code \(${f}\) via e-mail, place it manually in ${DISTDIR}, and then try it again
.endif
.endfor
do-install:
.for f in ${BINARIES}
@${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/
.endfor
@${MKDIR} ${DATADIR}
.for f in ${DATAFILES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}/${f}.dist
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
@${ECHO} "---------------------------------------------------------------------------"
@${ECHO} "You must set PHRED_PARAMETER_FILE environment variable."
@${ECHO} ""
@${ECHO} "The default parameter file in the distribution is located at:"
@${ECHO} " ${DATADIR}/phredpar.dat.dist"
@${ECHO} "---------------------------------------------------------------------------"
.include <bsd.port.post.mk>
|