Prune devel/py-EnthoughtBase
[dports.git] / devel / libcutl / Makefile
1 # $FreeBSD$
2
3 PORTNAME=       libcutl
4 PORTVERSION=    1.9.0
5 CATEGORIES=     devel
6 MASTER_SITES=   http://www.codesynthesis.com/download/${PORTNAME}/${PORTVERSION:R}/
7
8 MAINTAINER=     rakuco@FreeBSD.org
9 COMMENT=        C++ utility library with generic and independent components
10
11 LICENSE=        MIT
12 LICENSE_FILE=   ${WRKSRC}/LICENSE
13
14 LIB_DEPENDS=    libboost_system.so:${PORTSDIR}/devel/boost-libs \
15                 libexpat.so:${PORTSDIR}/textproc/expat2
16
17 GNU_CONFIGURE=  yes
18 INSTALL_TARGET= install-strip
19 USES=           libtool
20
21 # The checks for external boost and external expat are quite limited and do not
22 # add the ${LOCALBASE} paths correctly (libboost.m4 uses wrong paths and
23 # libexpat.m4 does nothing at all).
24 CPPFLAGS+=      -I${LOCALBASE}/include
25 LDFLAGS+=       -L${LOCALBASE}/lib
26
27 CONFIGURE_ARGS= --disable-static \
28                 --with-boost=${LOCALBASE} \
29                 --with-external-boost \
30                 --with-external-expat \
31                 --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
32
33 .include <bsd.port.mk>