1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/biology/crimap/Makefile
Edwin Groothuis 8a256d14e0 Fix maintainer address
From: Tony Maher <anthony.maher@uts.edu.au>
    To: Edwin Groothuis <edwin@FreeBSD.org>
    Subject: Re: ports/91537: maths/xgobi - download site moved/maintainer addressupdate

    Actually I need  modify all my ports to use OptusNet rather than
    Biolateral.  Is there an easy way to do this or should I submit a
    separate 1-line patch and PR for each port?

    biology/crimap
    biology/dna-qc
    biology/flip
    biology/primer3
    biology/seqio
    biology/wise
    math/xgobi
    net/generic-nqs

Submitted by:	Tony Maher <anthony.maher@uts.edu.au>
2006-01-09 03:25:03 +00:00

49 lines
1.1 KiB
Makefile

# New ports collection makefile for: crimap
# Date created: 4 December 2001
# Whom: Tony Maher <tonym@biolateral.com.au>
#
# $FreeBSD$
#
PORTNAME= crimap
PORTVERSION= 2.4
CATEGORIES= biology
MASTER_SITES= http://compgen.rutgers.edu/multimap/crimap/
DISTNAME= ${PORTNAME}.source
EXTRACT_SUFX= .tar.Z
MAINTAINER= tonymaher@optusnet.com.au
COMMENT= Creation of multilocus linkage maps
NO_WRKSUBDIR= true
USE_REINPLACE= yes
PROGRAMS= crimap
EXAMPLES= chr7a.gen demo.dat
EXIT_PATCH= e_ped.c get_log.c our_allo.c our_orde.c
post-patch:
.for file in ${EXIT_PATCH}
@${REINPLACE_CMD} -e 's|exit\ *()|exit(0)|' ${WRKSRC}/${file}
.endfor
do-build:
cd ${WRKSRC}; \
${CC} ${CFLAGS} -o crimap *.c -lm
do-install:
.for file in ${PROGRAMS}
${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR}
@${MKDIR} ${DOCSDIR}
${CAT} ${WRKSRC}/progdoc_v2.4 | tbl | eqn -Tlatin1 | nroff -ms -t \
> ${DOCSDIR}/progdoc_v2.4
.for file in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>