mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
db03c16270
as per hier(7) and Porter's Handbook. PR: 18929 Submitted by: MAINTAINER
112 lines
3.8 KiB
Makefile
112 lines
3.8 KiB
Makefile
# New ports collection makefile for: tinker
|
|
# Date Created: 26 August 1998
|
|
# Whom: Glenn Johnson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tinker
|
|
PORTVERSION= 3.7
|
|
CATEGORIES= biology
|
|
MASTER_SITES= ftp://dasher.wustl.edu/pub/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= gjohnson@nola.srrc.usda.gov
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 400005
|
|
LIB_DEPENDS= U77:${PORTSDIR}/devel/libU77
|
|
|
|
# If you wish to use g77 from EGCS, do the following:
|
|
# a) comment out the LIB_DEPENDS line above and uncomment the following line
|
|
|
|
# BUILD_DEPENDS= g77:${PORTSDIR}/lang/egcs
|
|
|
|
# b) set env variable 'FC' to 'g77' before running `make'; or 'make FC=g77'
|
|
|
|
.else
|
|
MAKE_ENV+= HAVE_G2C=yes INSTALL_PROGRAM="${INSTALL_PROGRAM}"
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/tinker/source
|
|
|
|
MAKEFILE= ${WRKDIR}/tinker/make/Makefile
|
|
ALL_TARGET= all listing
|
|
INSTALL_TARGET= rename
|
|
|
|
RESTRICTED= author requests no distribution except from his FTP site
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/share/tinker
|
|
${MKDIR} ${PREFIX}/share/tinker/params
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/source/tinker.txt \
|
|
${PREFIX}/share/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/params/* \
|
|
${PREFIX}/share/tinker/params
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/tinker
|
|
${MKDIR} ${PREFIX}/share/examples/tinker
|
|
${MKDIR} ${PREFIX}/share/tinker/bench
|
|
${MKDIR} ${PREFIX}/share/tinker/test
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/doc/README \
|
|
${PREFIX}/share/doc/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/doc/*.pdf \
|
|
${PREFIX}/share/doc/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/doc/*.ps \
|
|
${PREFIX}/share/doc/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/doc/*.Z \
|
|
${PREFIX}/share/doc/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/doc/*.txt \
|
|
${PREFIX}/share/doc/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/README \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/anion.dyn0 \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/*.in* \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/*.key \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/*.log \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/*.xyz \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/argon.1st \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/crambin.pdb \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/cyclohex.boat \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/cyclohex.chair \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/example/formamide.cell \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_SCRIPT} ${WRKDIR}/tinker/example/clean.make \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_SCRIPT} ${WRKDIR}/tinker/example/*.run \
|
|
${PREFIX}/share/examples/tinker
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/bench/*.input \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/bench/*.key \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/bench/*.xyz \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/bench/water.dyn0 \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/bench/results* \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_SCRIPT} ${WRKDIR}/tinker/bench/*.run \
|
|
${PREFIX}/share/tinker/bench
|
|
${INSTALL_DATA} ${WRKDIR}/tinker/test/* ${PREFIX}/share/tinker/test
|
|
.endif
|
|
@${ECHO} ""
|
|
@${ECHO} " **********************************************************"
|
|
@${ECHO} " The author requests that you return a license form "
|
|
@${ECHO} " to him if you find Tinker to be useful. "
|
|
@${ECHO} " "
|
|
@${ECHO} " See ${PREFIX}/share/tinker/doc for license forms. "
|
|
@${ECHO} " **********************************************************"
|
|
@${ECHO} ""
|
|
|
|
.include <bsd.port.post.mk>
|