View | Details | Raw Unified | Return to bug 111803
Collapse All | Expand All

(-)rblibtorrent/Makefile (-13 / +4 lines)
Lines 9-39 Link Here
9
PORTVERSION=	0.11
9
PORTVERSION=	0.11
10
PORTREVISION=	1
10
PORTREVISION=	1
11
CATEGORIES=	net-p2p
11
CATEGORIES=	net-p2p
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	SF
13
MASTER_SITE_SUBDIR=libtorrent
14
PKGNAMEPREFIX=	rb
13
PKGNAMEPREFIX=	rb
15
14
16
MAINTAINER=	johan@stromnet.se
15
MAINTAINER=	johan@stromnet.se
17
COMMENT=	A C++ library implementing a BitTorrent client
16
COMMENT=	A C++ library implementing a BitTorrent client
18
17
19
LIB_DEPENDS=	boost_date_time.3:${PORTSDIR}/devel/boost \
18
LIB_DEPENDS=	boost_date_time.3:${PORTSDIR}/devel/boost
20
		boost_filesystem.3:${PORTSDIR}/devel/boost \
21
		boost_thread.3:${PORTSDIR}/devel/boost
22
19
23
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
24
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
25
CONFIGURE_ARGS=	--disable-debug
22
CONFIGURE_ARGS=	--disable-debug
26
CONFIGURE_ENV=	CXXFLAGS="-I${LOCALBASE}/include" \
23
CONFIGURE_ENV=	CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
27
		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
24
		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
28
25
29
CONFLICTS=	libtorrent-[0-9]* \
26
CONFLICTS=	libtorrent-[0-9]* \
30
		libtorrent-devel-[0-9]* \
27
		libtorrent-devel-[0-9]* \
31
		rblibtorrent-devel-[0-9]*
28
		rblibtorrent-devel-[0-9]*
32
29
33
.include <bsd.port.pre.mk>
30
.include <bsd.port.mk>
34
35
.if ${OSVERSION} < 500000
36
IGNORE=	is unsupported on FreeBSD < 5
37
.endif
38
39
.include <bsd.port.post.mk>
(-)rblibtorrent/pkg-descr (-7 / +7 lines)
Lines 1-12 Link Here
1
libtorrent is a C++ library that aims to be a good alternative to 
1
libtorrent is a C++ library that aims to be a good alternative to all the
2
all the other bittorrent implementations around.
2
other bittorrent implementations around.  It is a library and not a full
3
It is a library and not a full featured client, although it comes 
3
featured client, although it comes with a working example client.
4
with a working example client.
5
4
6
The main goals of libtorrent are:
5
The main goals of libtorrent are:
7
	* to be cpu efficient
6
8
	* to be memory efficient
7
* to be cpu efficient
9
	* to be very easy to use
8
* to be memory efficient
9
* to be very easy to use
10
10
11
Note that this is NOT the same library as the libtorrent port!
11
Note that this is NOT the same library as the libtorrent port!

Return to bug 111803