f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
34 lines
803 B
Makefile
34 lines
803 B
Makefile
# Created by: Johann Visagie <wjv@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= recombine
|
|
PORTVERSION= 1.41
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://evolution.gs.washington.edu/lamarc/recombine/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}.src.doc
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Program to fit population models across sites
|
|
|
|
USES= shebangfix
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES+= bin/filetran bin/recombine
|
|
PORTDOCS= recombine.txt
|
|
SHEBANG_FILES= filetran
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/filetran ${STAGEDIR}${PREFIX}/bin
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/recombine.txt ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|