a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
36 lines
978 B
Makefile
36 lines
978 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ticcutils
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.20
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel textproc
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Generic utility library shared by the Tilburg University software
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= autoconf-archive>=0:devel/autoconf-archive
|
|
LIB_DEPENDS= libboost_regex.so:devel/boost-libs \
|
|
libicui18n.so:devel/icu \
|
|
libtar.so:devel/libtar
|
|
|
|
USES= autoreconf compiler:c++11-lib gmake gnome libtool localbase:ldflags pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= LanguageMachines
|
|
USE_GNOME= libxml2
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
CFLAGS+= -D_THREAD_SAFE # configure on GCC-based architectures fails w/out this
|
|
# Workaround for https://github.com/LanguageMachines/ticcutils/issues/18 (also see the patch files/patch-configure.ac)
|
|
CXXFLAGS+= -DHAVE_BOOST_REGEX
|
|
LDFLAGS+= -lboost_regex
|
|
|
|
.include <bsd.port.mk>
|