blob: 31d0eb9e403e903cbbafc4f1d15ae112de19f1ec (
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
|
# New ports collection makefile for: rblibtorrent
# Date created: 5 February 2006
# Whom: Johan Ström <johan@stromnet.org>
#
# $FreeBSD$
#
PORTNAME= libtorrent
PORTVERSION= 0.11
PORTREVISION= 1
CATEGORIES= net-p2p
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=libtorrent
PKGNAMEPREFIX= rb
MAINTAINER= johan@stromnet.se
COMMENT= A C++ library implementing a BitTorrent client
LIB_DEPENDS= boost_date_time.3:${PORTSDIR}/devel/boost \
boost_filesystem.3:${PORTSDIR}/devel/boost \
boost_thread.3:${PORTSDIR}/devel/boost
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-debug
CONFIGURE_ENV= CXXFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CONFLICTS= libtorrent-[0-9]* \
libtorrent-devel-[0-9]* \
rblibtorrent-devel-[0-9]*
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= is unsupported on FreeBSD < 5
.endif
.include <bsd.port.post.mk>
|