blob: da61d9250c86c160acf969a7db36fb7bf9f772d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $FreeBSD$
PORTNAME= libcutl
PORTVERSION= 1.10.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>
|