summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2005-09-26 07:49:06 +0000
committerjoerg <joerg@pkgsrc.org>2005-09-26 07:49:06 +0000
commit305d60696dbd312fdc6e667a618d930e483ff4dc (patch)
tree9ffd8abc0bc79a63716142e543597128a8e49226 /net
parent6d63e57922c61decdbac037303937b97b04c3888 (diff)
downloadpkgsrc-305d60696dbd312fdc6e667a618d930e483ff4dc.tar.gz
Fix a bug in the tab-completion. When the prefix is not unique, rtorrent
would have hit an internal assertion later. The patch is a merge from the unstable tree as suggested by the author. Bump revision to 1.
Diffstat (limited to 'net')
-rw-r--r--net/rtorrent/Makefile3
-rw-r--r--net/rtorrent/distinfo3
-rw-r--r--net/rtorrent/patches/patch-aa14
3 files changed, 18 insertions, 2 deletions
diff --git a/net/rtorrent/Makefile b/net/rtorrent/Makefile
index 96da488095d..30e8a169eb3 100644
--- a/net/rtorrent/Makefile
+++ b/net/rtorrent/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/07/22 22:28:08 adam Exp $
+# $NetBSD: Makefile,v 1.2 2005/09/26 07:49:06 joerg Exp $
DISTNAME= rtorrent-0.3.0
+PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= http://libtorrent.rakshasa.no/downloads/
diff --git a/net/rtorrent/distinfo b/net/rtorrent/distinfo
index fdbf271f6c4..a4c87666fb5 100644
--- a/net/rtorrent/distinfo
+++ b/net/rtorrent/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/07/22 22:28:08 adam Exp $
+$NetBSD: distinfo,v 1.2 2005/09/26 07:49:06 joerg Exp $
SHA1 (rtorrent-0.3.0.tar.gz) = f9872d0112918f16d386e97149fb09e509a08af0
RMD160 (rtorrent-0.3.0.tar.gz) = a26936d013b795ec8606c407fe02c8cf02e997ce
Size (rtorrent-0.3.0.tar.gz) = 194518 bytes
+SHA1 (patch-aa) = 4938f4f38c52f72b64d348c52c02f29f3217846b
diff --git a/net/rtorrent/patches/patch-aa b/net/rtorrent/patches/patch-aa
new file mode 100644
index 00000000000..d48788bcf8e
--- /dev/null
+++ b/net/rtorrent/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2005/09/26 07:49:06 joerg Exp $
+
+--- src/ui/element_string_list.cc.orig 2005-09-25 19:07:46.000000000 +0200
++++ src/ui/element_string_list.cc
+@@ -43,7 +43,8 @@
+
+ namespace ui {
+
+-ElementStringList::ElementStringList() {
++ElementStringList::ElementStringList():
++ m_window(NULL) {
+ m_list.push_back("Test string 1");
+ m_list.push_back("Test string 2");
+ }