aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/rtorrent
diff options
context:
space:
mode:
authorFlorent Thoumie <flz@FreeBSD.org>2011-05-07 16:29:46 +0000
committerFlorent Thoumie <flz@FreeBSD.org>2011-05-07 16:29:46 +0000
commit6894adc5bfb3e1092b855ada4eaedc9a2d9be250 (patch)
tree5336c0cb81307fa24e48b2c908545c502ae0328c /net-p2p/rtorrent
parent5c9c7a01ff550600ef074c905b20c2d88f9cba60 (diff)
downloadports-6894adc5bfb3e1092b855ada4eaedc9a2d9be250.tar.gz
ports-6894adc5bfb3e1092b855ada4eaedc9a2d9be250.zip
rtorrent: enabled ipv6 by default, fix with ncurses 5.8, fix link.
- Enable IPV6 in OPTIONS by default. [1] - Remove outdated link in pkg-message. [1] - Add local patch to fix rtorrent with ncurses 5.8. [2,3] PR: ports/155609 [1], ports/155318 [2], ports/156294 [3] Submitted by: tom@ [1], Yamagi Burmeister <yamagi@yamagi.org> [2], freebsd@nagilum.org [3]
Notes
Notes: svn path=/head/; revision=273737
Diffstat (limited to 'net-p2p/rtorrent')
-rw-r--r--net-p2p/rtorrent/Makefile3
-rw-r--r--net-p2p/rtorrent/files/patch-src__display__canvas.h11
-rw-r--r--net-p2p/rtorrent/files/pkg-message.in4
3 files changed, 14 insertions, 4 deletions
diff --git a/net-p2p/rtorrent/Makefile b/net-p2p/rtorrent/Makefile
index f0f4732bfb3e..eea6a94c8117 100644
--- a/net-p2p/rtorrent/Makefile
+++ b/net-p2p/rtorrent/Makefile
@@ -7,6 +7,7 @@
PORTNAME?= rtorrent
PORTVERSION?= 0.8.7
+PORTREVISION?= 1
CATEGORIES= net-p2p
MASTER_SITES= http://libtorrent.rakshasa.no/downloads/ \
${MASTER_SITE_LOCAL}
@@ -32,7 +33,7 @@ SUB_FILES= pkg-message
PORTDOCS= README
OPTIONS= XMLRPC "Compile with xmlrpc-c support" on \
- IPV6 "Enable IPv6 support" off
+ IPV6 "Enable IPv6 support" on
.include <bsd.port.pre.mk>
diff --git a/net-p2p/rtorrent/files/patch-src__display__canvas.h b/net-p2p/rtorrent/files/patch-src__display__canvas.h
new file mode 100644
index 000000000000..583ef1828aed
--- /dev/null
+++ b/net-p2p/rtorrent/files/patch-src__display__canvas.h
@@ -0,0 +1,11 @@
+--- src/display/canvas.h.orig 2010-06-26 14:05:07.000000000 +0200
++++ src/display/canvas.h 2011-04-09 11:21:30.000000000 +0200
+@@ -48,7 +48,7 @@
+ public:
+ typedef std::vector<Attributes> attributes_list;
+
+- Canvas(int x = 0, int y = 0, int width = 0, int height = 0) :
++ Canvas(int x = 0, int y = 0, int width = 1, int height = 1) :
+ m_window(newwin(height, width, y, x)) {}
+ ~Canvas() { delwin(m_window); }
+
diff --git a/net-p2p/rtorrent/files/pkg-message.in b/net-p2p/rtorrent/files/pkg-message.in
index 6e41cd4ed2a9..39068b4e21f6 100644
--- a/net-p2p/rtorrent/files/pkg-message.in
+++ b/net-p2p/rtorrent/files/pkg-message.in
@@ -3,8 +3,6 @@ An example configuration file for rtorrent has been installed in
%%EXAMPLESDIR%%. Read it for more information on
how to tweak rtorrent configuration.
-Note that there are hash performance issues on *BSD.
-Please refer to these links for further information :
-- http://libtorrent.rakshasa.no/ticket/14
+Note that there are hash performance issues on *BSD:
- http://libtorrent.rakshasa.no/wiki/RTorrentPerformanceTuning
------------------------------------------------------------------