mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
ecd280d820
PLINK is a free, open-source whole genome association analysis toolset. PLINK/SEQ is an open-source C/C++ library for working with human genetic variation data. PR: ports/171918 [1] PR: ports/171922 [2] Submitted by: Jason Bacon <jwbacon at tds.net>
29 lines
705 B
Makefile
29 lines
705 B
Makefile
# Created by: Jason Bacon <jwbacon@tds.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= plinkseq
|
|
PORTVERSION= 0.08
|
|
CATEGORIES= biology science
|
|
MASTER_SITES= http://atgu.mgh.harvard.edu/${PORTNAME}/dist/version-${PORTVERSION}/
|
|
|
|
MAINTAINER= jwbacon@tds.net
|
|
COMMENT= Toolset for working with human genetic variation data
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= protobuf:${PORTSDIR}/devel/protobuf
|
|
|
|
USE_DOS2UNIX= yes
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--with-protobuf=${LOCALBASE}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|PF_INET|AF_INET|g' ${WRKSRC}/browser/mongoose.c
|
|
${REINPLACE_CMD} -e 's|-ldl||g' \
|
|
${WRKSRC}/browser/Makefile.in \
|
|
${WRKSRC}/client/Makefile.in \
|
|
${WRKSRC}/index/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|