blob: b7ec309be6f088ba08da64725d1876614c183ac3 (
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
|
# New ports collection makefile for: phylip
# Date created: 4 July 2000
# Whom: dbader@eece.unm.edu
#
# $FreeBSD$
#
PORTNAME= phylip
PORTVERSION= 3.5
CATEGORIES= biology
MASTER_SITES= ftp://evolution.genetics.washington.edu/pub/phylip/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= .tar.Z
MAINTAINER= dbader@eece.unm.edu
NO_WRKSUBDIR= yes
BINARIES= 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
DOCFILES= README clique.doc consense.doc contchar.doc contml.doc \
contrast.doc discrete.doc distance.doc dnacomp.doc dnadist.doc \
dnainvar.doc dnaml.doc dnamlk.doc dnamove.doc dnapars.doc \
dnapenny.doc dollop.doc dolmove.doc dolpenny.doc draw.doc \
drawgram.doc drawtree.doc factor.doc fitch.doc gendist.doc \
kitsch.doc main.doc makeinf.doc mix.doc move.doc neighbor.doc \
penny.doc protdist.doc protml.doc protpars.doc restml.doc \
retree.doc seqboot.doc sequence.doc
do-install:
.for f in ${BINARIES}
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
.for f in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME}
.endfor
.endif
.include <bsd.port.mk>
|