e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
37 lines
929 B
Makefile
37 lines
929 B
Makefile
# Created by: Johann Visagie <wjv@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= t_coffee
|
|
PORTVERSION= 9.03
|
|
DISTVERSIONSUFFIX= .r1318
|
|
PORTREVISION= 6
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.tcoffee.org/Packages/Stable/Version_${PORTVERSION}${DISTVERSIONSUFFIX}/
|
|
DISTNAME= T-COFFEE_distribution_Version_${PORTVERSION}${DISTVERSIONSUFFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Multiple DNA or protein sequence alignment package
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= clustalw:biology/clustalw
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/t_coffee_source
|
|
|
|
USES= fortran
|
|
CFLAGS+= -Wno-return-type
|
|
MAKE_ENV= FCC="${FC} ${FFLAGS}"
|
|
MAKEFILE= makefile
|
|
|
|
PORTEXAMPLES= *
|
|
PLIST_FILES= bin/TMalign bin/t_coffee
|
|
|
|
do-install:
|
|
(cd ${BUILD_WRKSRC} \
|
|
&& ${INSTALL_PROGRAM} TMalign t_coffee ${STAGEDIR}${PREFIX}/bin)
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|