blob: cdfbaa7ed46be9c8f907fcf7dd3a6533d9ac48a3 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
# $NetBSD: Makefile,v 1.24 2012/09/11 20:32:13 asau Exp $
DISTNAME= phylip-3.69
CATEGORIES= biology
MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/phylip/
MAINTAINER= babafou@babafou.eu.org
HOMEPAGE= http://evolution.genetics.washington.edu/phylip.html
COMMENT= Phylogeny Inference Package
LICENSE= phylip-license
RESTRICTED= Distribution permitted only if no fee is charged.
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_CDROM= ${RESTRICTED}
WRKSRC= ${WRKDIR}/${DISTNAME}/src
INSTALLATION_DIRS= bin share/fonts/phylip share/doc/phylip
do-install:
.for prog in clique consense contml contrast dnacomp dnadist \
dnainvar dnaml dnamlk dnamove dnapars dnapenny \
dolmove dollop dolpenny factor fitch gendist kitsch \
mix move neighbor pars penny proml promlk protdist \
protpars restdist restml retree seqboot treedist \
drawgram drawtree
${INSTALL_PROGRAM} ${WRKSRC}/${prog} ${DESTDIR}${PREFIX}/bin
.endfor
.for font in font1 font2 font3 font4 font5 font6
${INSTALL_DATA} ${WRKSRC}/${font} ${DESTDIR}${PREFIX}/share/fonts/phylip
.endfor
.for html in clique.html consense.html contchar.html contml.html \
contrast.html discrete.html distance.html dnacomp.html \
dnadist.html dnainvar.html dnaml.html dnamlk.html \
dnamove.html dnapars.html dnapenny.html dollop.html \
dolmove.html dolpenny.html draw.html drawgram.html \
drawtree.html factor.html fitch.html gendist.html \
kitsch.html main.html mix.html move.html neighbor.html \
pars.html penny.html phylip.gif proml.html \
promlk.html protdist.html protpars.html restdist.html \
restml.html retree.html seqboot.html sequence.html \
treedist.html
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/doc/${html} \
${DESTDIR}${PREFIX}/share/doc/phylip
.endfor
MAKE_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q}
.include "../../x11/libXaw/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|