1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/biology/tinker/Makefile
John Marino b0b3dcecc0 biology/tinker: Regenerate distinfo to unbreak fetch
Apparently the distfile was rerolled.  The sizes of the file are only a few
bytes apart.  Since the master site never changed, it's reasonable just to
regenerate the distinfo and bump the PORTREVISION.

PR:		180664
Approved by:	bapt/culot (mentors, implicit)
2013-08-18 11:38:34 +00:00

71 lines
1.8 KiB
Makefile

# Created by: Glenn Johnson
# $FreeBSD$
PORTNAME= tinker
PORTVERSION= 6.2.06
PORTREVISION= 1
CATEGORIES= biology
MASTER_SITES= http://dasher.wustl.edu/tinker/downloads/
MAINTAINER= ports@FreeBSD.org
COMMENT= General purpose molecular modelling package
RESTRICTED= author requests no distribution except from his FTP site
OPTIONS_DEFINE= OPTIMIZED_FFLAGS DOCS EXAMPLES
OPTIMIZED_FFLAGS_DESC= compilation optimizations
WRKSRC= ${WRKDIR}/${PORTNAME}
BUILD_WRKSRC= ${WRKSRC}/source
INSTALL_WRKSRC= ${WRKSRC}/source
USE_FORTRAN= yes
MAKE_ENV= HAVE_G2C=yes
MAKEFILE= ${WRKSRC}/make/Makefile
ALL_TARGET= all listing
INSTALL_TARGET= rename
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MOPTIMIZED_FFLAGS}
FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations
.if (${ARCH} == "i386")
FFLAGS+= -mfancy-math-387 -malign-double
.endif # i386
.endif
post-extract:
@${CHMOD} -R u+w ${WRKSRC}
pre-build:
@${RM} -f ${BUILD_WRKSRC}/*.c
post-install:
@${MKDIR} ${DATADIR}
(cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} tinker.txt ${DATADIR})
@${MKDIR} ${DATADIR}/bench
(cd ${WRKSRC}/bench && ${INSTALL_DATA} \
0README *.dyn0 *.log *.key *.run *.xyz results* \
${DATADIR}/bench)
@${MKDIR} ${DATADIR}/params
(cd ${WRKSRC}/params && ${INSTALL_DATA} * ${DATADIR}/params)
@${MKDIR} ${DATADIR}/test
(cd ${WRKSRC}/test && ${INSTALL_DATA} * ${DATADIR}/test)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
(cd ${WRKSRC}/doc && ${INSTALL_DATA} 0README *.pdf *.txt ${DOCSDIR})
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
(cd ${WRKSRC}/example && ${INSTALL_DATA} \
0README *.make *.dyn *.int *.frac *.key *.seq *.pdb *.xyz \
${EXAMPLESDIR})
.endif
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.include <bsd.port.post.mk>