aboutsummaryrefslogtreecommitdiff
path: root/devel/uatraits/Makefile
blob: 30cda10a064108c8a488c8c1be12c8190c9c6747 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
# $FreeBSD$

PORTNAME=	uatraits
PORTVERSION=	20130430
PORTREVISION=	2
CATEGORIES=	devel www
MASTER_SITES=	http://people.freebsd.org/~demon/

MAINTAINER=	demon@FreeBSD.org
COMMENT=	User-Agent detection library

BUILD_DEPENDS=	autoconf:${PORTSDIR}/devel/autoconf \
		automake:${PORTSDIR}/devel/automake \
		libtool:${PORTSDIR}/devel/libtool
LIB_DEPENDS=	libboost_python.so:${PORTSDIR}/devel/boost-python-libs \
		libpcre.so:${PORTSDIR}/devel/pcre \
		libxml2.so:${PORTSDIR}/textproc/libxml2

USES=		pkgconfig
GNU_CONFIGURE=	yes
USE_PYTHON=	yes
USE_OPENSSL=	yes
USE_LDCONFIG=	yes

.include <bsd.port.pre.mk>

.if exists(${PYTHON_CMD}-config)
PYLIBS!=	${PYTHON_CMD}-config --libs
.endif
CONFIGURE_ARGS+=	--with-boost-prefix=${LOCALBASE} \
			--with-pcre-prefix=${LOCALBASE} \
			--enable-python --disable-perl --disable-tests \
			--disable-java --disable-nodejs
CPPFLAGS+=	"-I${LOCALBASE}/include"
CONFIGURE_ENV+=		crypto_CFLAGS="-I${OPENSSLINC}" \
			crypto_LIBS="-L${OPENSSLLIB} -lcrypto" \
			PYTHON_LIBS="${PYLIBS} -L${LOCALBASE}/lib"

pre-configure:
	cd ${WRKSRC} && ./autogen.sh

.include <bsd.port.post.mk>