blob: 1418f923908f61b55b02fe71a3f456dccdab25f9 (
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
33
34
35
36
37
38
|
# $NetBSD: Makefile,v 1.5 2003/03/29 12:40:14 jmmv Exp $
DISTNAME= phylip
PKGNAME= phylip-3.573c
WRKSRC= ${WRKDIR}
CATEGORIES= biology
MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/phylip/ \
ftp://ftp.bioss.sari.ac.uk/pub/phylogeny/phylip/
EXTRACT_SUFX= .tar.Z
MAINTAINER= babafou@babafou.eu.org
HOMEPAGE= http://evolution.genetics.washington.edu/phylip.html
COMMENT= Phylogeny Inference Package
RESTRICTED= "No commercial distribution without a royalty agreement with the author"
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_CDROM= ${RESTRICTED}
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/phylip
.for DOC in main.doc \
contchar.doc discrete.doc distance.doc draw.doc sequence.doc
${INSTALL_DATA} ${WRKSRC}/${DOC} ${PREFIX}/share/doc/phylip
.endfor
.for PROGRAM in clique consense contml contrast dnacomp dnadist \
dnainvar dnaml dnamlk dnamove dnapars dnapenny \
dolmove dollop dolpenny drawgram drawtree factor \
fitch gendist kitsch mix move neighbor penny \
protdist protpars restml retree seqboot
${INSTALL_PROGRAM} ${WRKSRC}/${PROGRAM} ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/${PROGRAM}.doc ${PREFIX}/share/doc/phylip
.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/misc/phylip
.for FONT in font1 font2 font3 font4 font5 font6
${INSTALL_DATA} ${WRKSRC}/${FONT} ${PREFIX}/share/misc/phylip
.endfor
.include "../../mk/bsd.pkg.mk"
|