aboutsummaryrefslogtreecommitdiffstats
path: root/biology/mummer/Makefile
blob: fa6324fb7a0775233165a1f8c4331701e92d05ad (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
# ex:ts=8
# New ports collection makefile for:    MUMmer
# Date created:             20 November 2007
# Whom:                 Tony Maher
#
# $FreeBSD$
#

PORTNAME=   mummer
PORTVERSION=    3.23
CATEGORIES= biology
MASTER_SITES=   SF
DISTNAME=   MUMmer${PORTVERSION}

MAINTAINER= sylvio@FreeBSD.org
COMMENT=    A modular system for rapid whole genome alignment

USE_GMAKE=  yes

PROGRAMS=   annotate combineMUMs delta-filter gaps \
        mgaps mummer repeat-match show-aligns \
        show-coords show-diff show-snps show-tiling
SCRIPTS=    dnadiff exact-tandems mapview mummerplot nucmer \
        nucmer2xfig promer run-mummer1 run-mummer3
DOCUMENTS=  COPYRIGHT INSTALL LICENSE README

do-install:
.for program in ${PROGRAMS}
    (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${program} ${PREFIX}/bin)
.endfor

.for script in ${SCRIPTS}
    (cd ${WRKSRC} && ${INSTALL_SCRIPT} ${script} ${PREFIX}/bin)
.endfor

.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for doc in ${DOCUMENTS}
    (cd ${WRKSRC} && ${INSTALL_DATA} ${doc} ${DOCSDIR})
.endfor
.endif

.include <bsd.port.mk>