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
commit0854d08bf5201e869576dcde0fcc06b79961f3cd (patch)
tree5a9cc44611871efeac5990069560f44c7b6ce370 /net-nntp/klibido
parentversion bump to 1.4.0_beta6; although fixed bug #81671 for 1.4x line (diff)
downloadhistorical-0854d08bf5201e869576dcde0fcc06b79961f3cd.tar.gz
historical-0854d08bf5201e869576dcde0fcc06b79961f3cd.tar.bz2
historical-0854d08bf5201e869576dcde0fcc06b79961f3cd.zip
Revision bump to include two upsream patches. Thanks to Richard Fujimoto <rfujimoto@imap.cc> in bug #79915.
Package-Manager: portage-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, 79 insertions, 6 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..320ee8655d33 100644
--- a/net-nntp/klibido/Manifest
+++ b/net-nntp/klibido/Manifest
@@ -2,13 +2,17 @@
Hash: SHA1
MD5 9380c2a3c6d9b12af5d90913727ce07b klibido-0.2.0.ebuild 600
-MD5 0b51c36d3d1f0d45cfff53eaef3b7c10 ChangeLog 512
+MD5 26a218d4270057c6dfa2d8e8ab380d5a klibido-0.2.0-r1.ebuild 736
+MD5 bc9650adbcee6b720d8ba6b99e89bdd5 ChangeLog 806
MD5 d4764f5c17f5e0b416f7ddf271c77d71 metadata.xml 161
+MD5 a1279b9654cf71671843eb84edb39b7c files/0.2.0-nntpthreadsocket.cpp.diff 504
+MD5 266652e9c7738532ff1efc6c4dd81b83 files/digest-klibido-0.2.0-r1 65
+MD5 1c3a78d0eb80e4a38c6d687d973e65a4 files/0.2.0-qmgr.cpp.diff 430
MD5 266652e9c7738532ff1efc6c4dd81b83 files/digest-klibido-0.2.0 65
-----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.9.10 (GNU/Linux)
+Version: GnuPG v1.4.0 (GNU/Linux)
-iD8DBQFB7DCCI1lqEGTUzyQRArINAJwPzb194bjMQ5h/KBNk2qt05HGrLgCfcLZm
-kjGKDiCd7wE7nFMZGDQZWec=
-=kWBw
+iD8DBQFCE/4UI1lqEGTUzyQRAuf3AJ9qOyMLqxrFSFTHqeKKq16LVNyW0wCfbhNt
++72JhmbuZwp9kEHjDj2EhEk=
+=BT5k
-----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
+}