diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2006-05-17 11:26:56 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2006-05-17 11:26:56 +0000 |
commit | 974204a41f6972db150bd21b230ec31ba24aa9e3 (patch) | |
tree | 2b4be0fcbfab0a3914c68e26b3b95e120989c1c2 /net-p2p | |
parent | 2802fd279fb35deeb14c4072a12c8d1062640c5a (diff) | |
download | ports-974204a41f6972db150bd21b230ec31ba24aa9e3.tar.gz ports-974204a41f6972db150bd21b230ec31ba24aa9e3.zip |
- Transform rtorrent into a master port.
- Add rtorrent-devel, the development version of rtorrent.
Notes
Notes:
svn path=/head/; revision=162644
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/Makefile | 1 | ||||
-rw-r--r-- | net-p2p/rtorrent-devel/Makefile | 25 | ||||
-rw-r--r-- | net-p2p/rtorrent-devel/distinfo | 3 | ||||
-rw-r--r-- | net-p2p/rtorrent-devel/pkg-plist | 3 | ||||
-rw-r--r-- | net-p2p/rtorrent/Makefile | 15 |
5 files changed, 41 insertions, 6 deletions
diff --git a/net-p2p/Makefile b/net-p2p/Makefile index 6dde0ed98a63..775565e7f625 100644 --- a/net-p2p/Makefile +++ b/net-p2p/Makefile @@ -97,6 +97,7 @@ SUBDIR += qtorrent SUBDIR += rblibtorrent SUBDIR += rtorrent + SUBDIR += rtorrent-devel SUBDIR += squall SUBDIR += torrentflux SUBDIR += torrentsniff diff --git a/net-p2p/rtorrent-devel/Makefile b/net-p2p/rtorrent-devel/Makefile new file mode 100644 index 000000000000..e787f4ad235f --- /dev/null +++ b/net-p2p/rtorrent-devel/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: rtorrent-devel +# Date created: May 17 2006 +# Whom: Florent Thoumie <flz@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= rtorrent-devel +PORTVERSION= 0.5.1 +PORTREVISION= 0 +DISTNAME= ${PORTNAME:S/-devel//}-${PORTVERSION} + +MAINTAINER= flz@FreeBSD.org +COMMENT= BitTorrent Client written in C++ (development version) + +LIB_DEPENDS= torrent.7:${PORTSDIR}/net-p2p/libtorrent-devel + +MASTERDIR= ${.CURDIR}/../rtorrent +MD5_FILE= ${.CURDIR}/distinfo +PLIST= ${.CURDIR}/pkg-plist +DESCR= ${MASTERDIR}/pkg-descr + +CONFLICTS= rtorrent-[0-9]* + +.include "${MASTERDIR}/Makefile" diff --git a/net-p2p/rtorrent-devel/distinfo b/net-p2p/rtorrent-devel/distinfo new file mode 100644 index 000000000000..c8a5f77052c6 --- /dev/null +++ b/net-p2p/rtorrent-devel/distinfo @@ -0,0 +1,3 @@ +MD5 (rtorrent-0.5.1.tar.gz) = e33e1478bbe1a8836f318f0d904782c4 +SHA256 (rtorrent-0.5.1.tar.gz) = d6c94ce0236f455bebb79a5851525ceecde160fc94b3bd1b4ea55406f85be561 +SIZE (rtorrent-0.5.1.tar.gz) = 411269 diff --git a/net-p2p/rtorrent-devel/pkg-plist b/net-p2p/rtorrent-devel/pkg-plist new file mode 100644 index 000000000000..f1b481743355 --- /dev/null +++ b/net-p2p/rtorrent-devel/pkg-plist @@ -0,0 +1,3 @@ +bin/rtorrent +%%EXAMPLESDIR%%/rtorrent.rc +@dirrm %%EXAMPLESDIR%% diff --git a/net-p2p/rtorrent/Makefile b/net-p2p/rtorrent/Makefile index c9c1f3bfefb2..d39a163b3069 100644 --- a/net-p2p/rtorrent/Makefile +++ b/net-p2p/rtorrent/Makefile @@ -5,16 +5,19 @@ # $FreeBSD$ # -PORTNAME= rtorrent -PORTVERSION= 0.4.5 +PORTNAME?= rtorrent +PORTVERSION?= 0.4.5 +PORTREVISION?= 0 CATEGORIES= net-p2p MASTER_SITES= http://libtorrent.rakshasa.no/downloads/ -MAINTAINER= flz@FreeBSD.org -COMMENT= BitTorrent Client written in C++ +MAINTAINER?= flz@FreeBSD.org +COMMENT?= BitTorrent Client written in C++ -LIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl \ - torrent.6:${PORTSDIR}/net-p2p/libtorrent +LIB_DEPENDS?= torrent.6:${PORTSDIR}/net-p2p/libtorrent +LIB_DEPENDS+= curl.3:${PORTSDIR}/ftp/curl + +CONFLICTS= rtorrent-devel-[0-9]* MAN1= rtorrent.1 |