mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
# Created by: Bob Zimmermann <rpz@cse.wustl.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gmap
|
|
PORTVERSION= 2015.09.21
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://research-pub.gene.com/gmap/src/
|
|
DISTNAME= ${PORTNAME}-gsnap-${PORTVERSION:C|\.|-|g}
|
|
|
|
MAINTAINER= bacon4000@gmail.com
|
|
COMMENT= Genomic Mapping and Alignment Program for mRNA and EST Sequences
|
|
|
|
LICENSE= GMAP
|
|
LICENSE_NAME= GMAP License
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
|
|
|
USES= gmake perl5
|
|
GNU_CONFIGURE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C|\.|-|g}
|
|
|
|
OPTIONS_DEFINE= SIMD
|
|
|
|
SIMD_CONFIGURE_OFF= --disable-builtin-popcount --disable-simd
|
|
|
|
BROKEN_aarch64= Does not build: invokes x86 asm
|
|
BROKEN_mips64= Does not build: invokes x86 asm
|
|
BROKEN_powerpc64= Does not build on powerpc64
|
|
BROKEN_sparc64= Does not build: invokes x86 asm
|
|
|
|
# shebang_fix operates during patch.
|
|
# These scripts are created during configure.
|
|
post-configure:
|
|
${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|g' \
|
|
${WRKSRC}/Makefile ${WRKSRC}/util/*.pl
|
|
|
|
.include <bsd.port.mk>
|