summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2011-08-01 13:12:38 +0000
committerwiz <wiz@pkgsrc.org>2011-08-01 13:12:38 +0000
commit9019f9ea161c27e5d3d4bbca801c95d15fe01e44 (patch)
treec35a1946870a8f691954b281129fde90f5d09869 /net
parent6ca42d43fe092bf0109db4a68c6c0d0446425aa6 (diff)
downloadpkgsrc-9019f9ea161c27e5d3d4bbca801c95d15fe01e44.tar.gz
Restore previous window sizes fix (both height and width non-zero).
Bump PKGREVISION. Fix a pkglint warning while here.
Diffstat (limited to 'net')
-rw-r--r--net/rtorrent/Makefile5
-rw-r--r--net/rtorrent/distinfo4
-rw-r--r--net/rtorrent/patches/patch-af4
3 files changed, 7 insertions, 6 deletions
diff --git a/net/rtorrent/Makefile b/net/rtorrent/Makefile
index afef179bb61..7a563492a3a 100644
--- a/net/rtorrent/Makefile
+++ b/net/rtorrent/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.40 2011/07/30 17:06:33 tron Exp $
+# $NetBSD: Makefile,v 1.41 2011/08/01 13:12:38 wiz Exp $
DISTNAME= rtorrent-0.8.9
+PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ${HOMEPAGE:=downloads/}
@@ -13,7 +14,7 @@ PKG_DESTDIR_SUPPORT= user-destdir
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
-USE_NCURSES= chgat
+USE_NCURSES= yes # chgat
USE_TOOLS+= gmake pkg-config
GNU_CONFIGURE= yes
GCC_REQD+= 3.3
diff --git a/net/rtorrent/distinfo b/net/rtorrent/distinfo
index 5442e504983..ec047bdfbcb 100644
--- a/net/rtorrent/distinfo
+++ b/net/rtorrent/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2011/07/30 17:06:33 tron Exp $
+$NetBSD: distinfo,v 1.28 2011/08/01 13:12:38 wiz Exp $
SHA1 (rtorrent-0.8.9.tar.gz) = 0ac51c185e98b5a386e5f1a07bca9a9963e2d6ce
RMD160 (rtorrent-0.8.9.tar.gz) = d79eacf6d63d13514c07c1c35a662fea5f35aef1
@@ -8,5 +8,5 @@ SHA1 (patch-ab) = 87873bb32166d00398ab0ef6421a6fe85a55c914
SHA1 (patch-ac) = b62de9ce834aa0422ec173e694d07e88aa1e2f47
SHA1 (patch-ad) = 04fafec083c7cb27eb2f5ef7fbc5f6ab2e4e4a55
SHA1 (patch-ae) = 49cb5e84f3759febfc93df874a10c90cafc249d8
-SHA1 (patch-af) = 21459320ef99e0d28fffec69bd0aa3407bf7401f
+SHA1 (patch-af) = 842a01cbc75e61092b4d33fe9155a728e7c502e6
SHA1 (patch-ag) = 381b100d2ae711114b24c4de2a4bf612efe31766
diff --git a/net/rtorrent/patches/patch-af b/net/rtorrent/patches/patch-af
index f7ed794ec6b..9c5b439bbab 100644
--- a/net/rtorrent/patches/patch-af
+++ b/net/rtorrent/patches/patch-af
@@ -1,4 +1,4 @@
-$NetBSD: patch-af,v 1.3 2011/07/30 17:06:33 tron Exp $
+$NetBSD: patch-af,v 1.4 2011/08/01 13:12:38 wiz Exp $
Make this work with "ncurses" 5.8. Patch taken from here.
@@ -19,7 +19,7 @@ http://www.mail-archive.com/arch-general@archlinux.org/msg18728.html
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 = 0, int height = 1);
++ Canvas(int x = 0, int y = 0, int width = 1, int height = 1);
~Canvas() { delwin(m_window); }
void refresh() { wnoutrefresh(m_window); }