summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-02-17 02:14:38 +0000
committerSven Wegener <swegener@gentoo.org>2005-02-17 02:14:38 +0000
commit0236c206984e74e470c790946ac09b4ec730017a (patch)
treed14e5fcc5602e87847348040138e93d8db5e3674 /net-nntp/klibido
parentversion bump to 1.4.0_beta6; although fixed bug #81671 for 1.4x line (diff)
downloadgentoo-2-0236c206984e74e470c790946ac09b4ec730017a.tar.gz
gentoo-2-0236c206984e74e470c790946ac09b4ec730017a.tar.bz2
gentoo-2-0236c206984e74e470c790946ac09b4ec730017a.zip
Revision bump to include two upsream patches. Thanks to Richard Fujimoto <rfujimoto@imap.cc> in bug #79915.
(Portage version: 2.0.51.16)
Diffstat (limited to 'net-nntp/klibido')
-rw-r--r--net-nntp/klibido/ChangeLog10
-rw-r--r--net-nntp/klibido/Manifest14
-rw-r--r--net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff19
-rw-r--r--net-nntp/klibido/files/0.2.0-qmgr.cpp.diff11
-rw-r--r--net-nntp/klibido/files/digest-klibido-0.2.0-r11
-rw-r--r--net-nntp/klibido/klibido-0.2.0-r1.ebuild30
6 files changed, 74 insertions, 11 deletions
diff --git a/net-nntp/klibido/ChangeLog b/net-nntp/klibido/ChangeLog
index 46c8b10af167..27a7dd746382 100644
--- a/net-nntp/klibido/ChangeLog
+++ b/net-nntp/klibido/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for net-nntp/klibido
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/klibido/ChangeLog,v 1.2 2005/01/17 21:39:08 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-nntp/klibido/ChangeLog,v 1.3 2005/02/17 02:14:38 swegener Exp $
+
+*klibido-0.2.0-r1 (17 Feb 2005)
+
+ 17 Feb 2005; Sven Wegener <swegener@gentoo.org>
+ +files/0.2.0-nntpthreadsocket.cpp.diff, +files/0.2.0-qmgr.cpp.diff,
+ +klibido-0.2.0-r1.ebuild:
+ Revision bump to include two upsream patches. Thanks to Richard Fujimoto
+ <rfujimoto@imap.cc> in bug #79915.
*klibido-0.2.0 (17 Jan 2005)
diff --git a/net-nntp/klibido/Manifest b/net-nntp/klibido/Manifest
index 7559e5186c6b..5a64d55f4b46 100644
--- a/net-nntp/klibido/Manifest
+++ b/net-nntp/klibido/Manifest
@@ -1,14 +1,8 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 9380c2a3c6d9b12af5d90913727ce07b klibido-0.2.0.ebuild 600
+MD5 f7a299d7248e5d52e13007987fbc342e klibido-0.2.0-r1.ebuild 733
MD5 0b51c36d3d1f0d45cfff53eaef3b7c10 ChangeLog 512
MD5 d4764f5c17f5e0b416f7ddf271c77d71 metadata.xml 161
+MD5 4302953459dabf1a09f7bd842e29ace2 files/0.2.0-nntpthreadsocket.cpp.diff 496
+MD5 266652e9c7738532ff1efc6c4dd81b83 files/digest-klibido-0.2.0-r1 65
+MD5 69a53fff5a29a2832c545963dad92568 files/0.2.0-qmgr.cpp.diff 422
MD5 266652e9c7738532ff1efc6c4dd81b83 files/digest-klibido-0.2.0 65
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.9.10 (GNU/Linux)
-
-iD8DBQFB7DCCI1lqEGTUzyQRArINAJwPzb194bjMQ5h/KBNk2qt05HGrLgCfcLZm
-kjGKDiCd7wE7nFMZGDQZWec=
-=kWBw
------END PGP SIGNATURE-----
diff --git a/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff b/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff
new file mode 100644
index 000000000000..d824c25e5abe
--- /dev/null
+++ b/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff
@@ -0,0 +1,19 @@
+--- src/nntpthreadsocket.cpp 2004-11-17 00:04:18.000000000 +0100
++++ src/nntpthreadsocket.cpp.fixed 2005-01-04 14:59:07.460083575 +0100
+@@ -1983,14 +1983,14 @@
+ if (!m_sendCmd(cmd, NntpThreadSocket::list))
+ return false;
+
+- while (!(cancel) && line[0] != '.') {
++ while (!(line[0] == '.') && !(line[1] == '\0') ) {
+ if (!waitLine())
+ return false;
+
+
+
+ while (m_readLine()) {
+- if (line[0] == '.')
++ if ( (line[0] == '.') && (line[1] == '\0') )
+ break;
+ else {
+
diff --git a/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff b/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff
new file mode 100644
index 000000000000..c0736f4a2e1b
--- /dev/null
+++ b/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff
@@ -0,0 +1,11 @@
+--- src/qmgr.cpp 2004-11-17 00:04:19.000000000 +0100
++++ src/qmgr.cpp.fixed 2004-12-28 01:36:08.634618228 +0100
+@@ -2177,7 +2177,7 @@
+ memset(&key, 0, sizeof(key));
+ key.set_flags(DB_DBT_MALLOC);
+ memset(&data, 0, sizeof(data));
+- key.set_flags(DB_DBT_MALLOC);
++ data.set_flags(DB_DBT_MALLOC);
+ // qDebug("Id: %d", id);
+ // qDebug("Newsgroup: %s", qsi->group.latin1());
+ // qDebug("index: %s", qsi->index.latin1());
diff --git a/net-nntp/klibido/files/digest-klibido-0.2.0-r1 b/net-nntp/klibido/files/digest-klibido-0.2.0-r1
new file mode 100644
index 000000000000..9015f3480eea
--- /dev/null
+++ b/net-nntp/klibido/files/digest-klibido-0.2.0-r1
@@ -0,0 +1 @@
+MD5 d4851385b333ddf8970ac24955ea4c48 klibido-0.2.0.tar.gz 756394
diff --git a/net-nntp/klibido/klibido-0.2.0-r1.ebuild b/net-nntp/klibido/klibido-0.2.0-r1.ebuild
new file mode 100644
index 000000000000..7cf2f5e6aa29
--- /dev/null
+++ b/net-nntp/klibido/klibido-0.2.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-nntp/klibido/klibido-0.2.0-r1.ebuild,v 1.1 2005/02/17 02:14:38 swegener Exp $
+
+inherit kde eutils
+
+DESCRIPTION="KDE Linux Binaries Downloader"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+HOMEPAGE="http://klibido.sourceforge.net/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="dev-libs/uulib
+ =sys-libs/db-4.1*"
+
+need-kde 3
+
+src_unpack() {
+ kde_src_unpack
+ epatch ${FILESDIR}/0.2.0-nntpthreadsocket.cpp.diff
+ epatch ${FILESDIR}/0.2.0-qmgr.cpp.diff
+}
+
+src_compile() {
+ myconf="${myconf} --datadir=${D}/usr/share --with-extra-includes=/usr/include/db4.1/"
+ kde_src_compile
+}