1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/devel/libcutl/Makefile
Raphael Kubo da Costa bcde9b96ca New port: devel/libcutl.
libcutl is a C++ utility library. It contains a collection of generic and
independent components such as meta-programming tests, smart pointers,
containers, compiler building blocks, etc.

WWW: http://www.codesynthesis.com/projects/libcutl/
2015-09-06 21:49:50 +00:00

34 lines
913 B
Makefile

# $FreeBSD$
PORTNAME= libcutl
PORTVERSION= 1.9.0
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:${PORTSDIR}/devel/boost-libs \
libexpat.so:${PORTSDIR}/textproc/expat2
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USES= 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>