freebsd-ports/devel/libcutl/Makefile
2018-01-18 04:11:02 +00:00

36 lines
986 B
Makefile

# $FreeBSD$
PORTNAME= libcutl
PORTVERSION= 1.10.0
PORTREVISION= 8
CATEGORIES= devel
MASTER_SITES= http://www.codesynthesis.com/download/${PORTNAME}/${PORTVERSION:R}/
MAINTAINER= rakuco@FreeBSD.org
COMMENT= C++ utility library with generic and independent components
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
libexpat.so:textproc/expat2
BROKEN_sparc64= Does not build: cannot configure with boost
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USES= compiler:c++11-lib libtool
# The checks for external boost and external expat are quite limited and do not
# add the ${LOCALBASE} paths correctly (libboost.m4 uses wrong paths and
# libexpat.m4 does nothing at all).
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --disable-static \
--with-boost=${LOCALBASE} \
--with-external-boost \
--with-external-expat \
--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
.include <bsd.port.mk>