blob: f2c3b3dfa8b5b3c7f68c2ade517b18b32b84f5e6 (
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
44
45
46
47
|
# New ports collection makefile for: rblibtorrent
# Date created: 5 February 2006
# Whom: Johan Ström <johan@stromnet.org>
#
# $FreeBSD$
#
PORTNAME= libtorrent
PORTVERSION= 0.14.3
CATEGORIES= net-p2p
MASTER_SITES= SF
PKGNAMEPREFIX= rb
PKGNAMESUFFIX= -devel
DISTNAME= ${PORTNAME}-rasterbar-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A C++ library implementing a BitTorrent client (devel version)
LIB_DEPENDS= boost_date_time.4:${PORTSDIR}/devel/boost
CONFLICTS= rblibtorrent-[0-9]*
USE_GNOME= gnomehack
USE_OPENSSL= yes
USE_AUTOTOOLS= aclocal:110 automake:110 autoconf:262 libtool:15
ACLOCAL_ARGS= -I m4
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --disable-debug \
--disable-python-binding \
--with-boost-filesystem=boost_filesystem \
--with-boost-thread=boost_thread \
--with-boost-regex=boost_regex \
--with-boost-program-options=boost_program_options \
--with-asio=shipped \
--with-zlib=system
USE_LDCONFIG= yes
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
post-patch:
@${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|g' \
${WRKSRC}/Makefile.am
@${REINPLACE_CMD} -e 's|^AM_CFLAGS|AM_CPPFLAGS|g ; \
s|@BOOST_SYSTEM_LIB@||g' ${WRKSRC}/src/Makefile.am
.include <bsd.port.mk>
|