diff options
author | 2004-02-06 02:01:34 +0000 | |
---|---|---|
committer | 2004-02-06 02:01:34 +0000 | |
commit | e690edc64a167b928d38f0046b76548d0f0f928e (patch) | |
tree | 3b0812e927d4671e5970643e98f5b643bc5f0fa2 /net-libs/loudmouth | |
parent | Escaping acpid on ppc makes DEPEND/RDEPEND clean there. Removing old acpi pa... (diff) | |
download | historical-e690edc64a167b928d38f0046b76548d0f0f928e.tar.gz historical-e690edc64a167b928d38f0046b76548d0f0f928e.tar.bz2 historical-e690edc64a167b928d38f0046b76548d0f0f928e.zip |
add workaround for gnutls-1.0 incompatibility
Diffstat (limited to 'net-libs/loudmouth')
-rw-r--r-- | net-libs/loudmouth/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/loudmouth/Manifest | 7 | ||||
-rw-r--r-- | net-libs/loudmouth/files/loudmouth-0.15-gnutls_1.0.patch | 10 | ||||
-rw-r--r-- | net-libs/loudmouth/loudmouth-0.15.ebuild | 7 |
4 files changed, 25 insertions, 5 deletions
diff --git a/net-libs/loudmouth/ChangeLog b/net-libs/loudmouth/ChangeLog index 5d729f5de1f6..a5c9b3db8fc2 100644 --- a/net-libs/loudmouth/ChangeLog +++ b/net-libs/loudmouth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/loudmouth # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v 1.12 2004/01/22 18:23:15 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/ChangeLog,v 1.13 2004/02/06 02:01:34 liquidx Exp $ + + 06 Feb 2004; Alastair Tse <liquidx@gentoo.org> loudmouth-0.15.ebuild, + files/loudmouth-0.15-gnutls_1.0.patch: + add workaround for gnutls-1.0 incompatibility *loudmouth-0.15 (22 Jan 2004) diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest index 85d971bbe59a..8402600898cd 100644 --- a/net-libs/loudmouth/Manifest +++ b/net-libs/loudmouth/Manifest @@ -1,6 +1,7 @@ -MD5 a011e0eef0cceacb1e8e7e8cf324ad9a ChangeLog 1447 -MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 +MD5 2efa81886953d328772647d01290244a ChangeLog 1610 MD5 e4630d70675682463a46d8a20d34d9cf loudmouth-0.14.1.ebuild 674 -MD5 ea3113a22ace78ec64667e298af64648 loudmouth-0.15.ebuild 660 +MD5 fdd21446c665cc42736e764e5ad4dead loudmouth-0.15.ebuild 743 +MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 f5b80f908d06d5918627e63ecc6e87f3 files/digest-loudmouth-0.14.1 69 MD5 5a6309e180cac3972b4cfe242cc7a56b files/digest-loudmouth-0.15 67 +MD5 d6d6fbb478b0bd9fd904cfad286029de files/loudmouth-0.15-gnutls_1.0.patch 412 diff --git a/net-libs/loudmouth/files/loudmouth-0.15-gnutls_1.0.patch b/net-libs/loudmouth/files/loudmouth-0.15-gnutls_1.0.patch new file mode 100644 index 000000000000..3d8c121afa26 --- /dev/null +++ b/net-libs/loudmouth/files/loudmouth-0.15-gnutls_1.0.patch @@ -0,0 +1,10 @@ +--- loudmouth/lm-ssl.c.old 2004-02-06 01:50:08.231324136 +0000 ++++ loudmouth/lm-ssl.c 2004-02-06 01:50:17.034985776 +0000 +@@ -72,7 +72,6 @@ + + if (status & GNUTLS_CERT_INVALID + || status & GNUTLS_CERT_NOT_TRUSTED +- || status & GNUTLS_CERT_CORRUPTED + || status & GNUTLS_CERT_REVOKED) { + if (ssl->func (ssl, LM_SSL_STATUS_UNTRUSTED_CERT, + ssl->func_data) != LM_SSL_RESPONSE_CONTINUE) { diff --git a/net-libs/loudmouth/loudmouth-0.15.ebuild b/net-libs/loudmouth/loudmouth-0.15.ebuild index 6fcb6fa66cf7..122ee397d5dc 100644 --- a/net-libs/loudmouth/loudmouth-0.15.ebuild +++ b/net-libs/loudmouth/loudmouth-0.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/loudmouth-0.15.ebuild,v 1.1 2004/01/22 18:23:15 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/loudmouth/loudmouth-0.15.ebuild,v 1.2 2004/02/06 02:01:34 liquidx Exp $ inherit gnome2 @@ -25,3 +25,8 @@ DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README" use ssl \ && G2CONF="${G2CONF} --with-ssl" \ || G2CONF="${G2CONF} --without-ssl" + +src_unpack() { + unpack ${A} + cd ${S}; epatch ${FILESDIR}/${P}-gnutls_1.0.patch +} |