mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
35 lines
915 B
Makefile
35 lines
915 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libccp4
|
|
DISTVERSION= 6.5.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= science
|
|
MASTER_SITES= ftp://ftp.ccp4.ac.uk/opensource/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Protein X-ray crystallography toolkit
|
|
|
|
LICENSE= GPLv3 LGPL3
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING
|
|
LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LESSER
|
|
|
|
BROKEN_aarch64= ccp4/ccp4_sysdep.h:244:4: error: "Can't determine machine number format"
|
|
|
|
LIB_DEPENDS= libmmdb2.so:science/mmdb2
|
|
|
|
USES= fortran gmake libtool localbase:ldflags
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-shared --disable-static
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
CFLAGS+= -fPIC
|
|
FFLAGS+= -fPIC
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} -e 's| -Wl,--as-needed||; s| -Wl,--no-as-needed||' ${WRKSRC}/Makefile
|
|
${REINPLACE_CMD} -e 's|^archive_cmds=|wl="-Wl,"; archive_cmds=|' ${WRKSRC}/libtool # wl is missing otherwise for some reason
|
|
|
|
.include <bsd.port.mk>
|