diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2004-08-13 22:32:00 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2004-08-13 22:32:00 +0000 |
commit | bc718bfd28dd8b622250622bf69b32b0daab3a92 (patch) | |
tree | 1d24a4d6f2a3f7c6900c25e5f24761bb288f5c29 /net-libs/openh323 | |
parent | New ebuild kindly submitted by Stefan Briesenick <sbriesen@gmx.de>. Closes bu... (diff) | |
download | gentoo-2-bc718bfd28dd8b622250622bf69b32b0daab3a92.tar.gz gentoo-2-bc718bfd28dd8b622250622bf69b32b0daab3a92.tar.bz2 gentoo-2-bc718bfd28dd8b622250622bf69b32b0daab3a92.zip |
BUG #56951 fixed, amd64 and ~amd64
Diffstat (limited to 'net-libs/openh323')
-rw-r--r-- | net-libs/openh323/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/openh323/files/openh323-1.13.2-gcc34.diff | 11 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.13.2-r1.ebuild | 5 | ||||
-rw-r--r-- | net-libs/openh323/openh323-1.13.5.ebuild | 7 |
4 files changed, 26 insertions, 4 deletions
diff --git a/net-libs/openh323/ChangeLog b/net-libs/openh323/ChangeLog index a755f249e737..f071ccfc76f9 100644 --- a/net-libs/openh323/ChangeLog +++ b/net-libs/openh323/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/openh323 # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.45 2004/06/24 23:16:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/ChangeLog,v 1.46 2004/08/13 22:32:00 kugelfang Exp $ + + 14 Aug 2004; Danny van Dyk <kugelfang@gentoo.org> + +files/openh323-1.13.2-gcc34.diff, openh323-1.13.2-r1.ebuild, + openh323-1.13.5.ebuild: + Fixed BUG #56951. Marked 1.13.2-r1 amd64 and 1.13.5 ~amd64. 10 Jun 2004; Aron Griffis <agriffis@gentoo.org> openh323-1.11.7.ebuild, openh323-1.12.0-r1.ebuild, openh323-1.12.2-r1.ebuild, diff --git a/net-libs/openh323/files/openh323-1.13.2-gcc34.diff b/net-libs/openh323/files/openh323-1.13.2-gcc34.diff new file mode 100644 index 000000000000..1a28190fd20d --- /dev/null +++ b/net-libs/openh323/files/openh323-1.13.2-gcc34.diff @@ -0,0 +1,11 @@ +--- include/gkserver.h.old 2004-08-13 16:22:58.136150976 +0200 ++++ include/gkserver.h 2004-08-13 16:23:04.049252048 +0200 +@@ -427,7 +427,7 @@ + H225_RegistrationConfirm & rcf; + H225_RegistrationReject & rrj; + +- protected: ++// protected: + virtual Response OnHandlePDU(); + }; + diff --git a/net-libs/openh323/openh323-1.13.2-r1.ebuild b/net-libs/openh323/openh323-1.13.2-r1.ebuild index 652c3348c4ab..18510153c693 100644 --- a/net-libs/openh323/openh323-1.13.2-r1.ebuild +++ b/net-libs/openh323/openh323-1.13.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.13.2-r1.ebuild,v 1.11 2004/08/11 21:21:53 jhuebel Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.13.2-r1.ebuild,v 1.12 2004/08/13 22:32:00 kugelfang Exp $ inherit eutils flag-o-matic @@ -54,6 +54,9 @@ src_unpack() { # fix include order (bug #32522) epatch ${FILESDIR}/openh323-${PV}-include-order.diff + + # fix to compile on gcc-3.4 (bug #56951) + epatch ${FILESDIR}/${P}-gcc34.diff } src_compile() { diff --git a/net-libs/openh323/openh323-1.13.5.ebuild b/net-libs/openh323/openh323-1.13.5.ebuild index 86a6c792109d..cd58997ad1fb 100644 --- a/net-libs/openh323/openh323-1.13.5.ebuild +++ b/net-libs/openh323/openh323-1.13.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.13.5.ebuild,v 1.5 2004/06/24 23:16:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.13.5.ebuild,v 1.6 2004/08/13 22:32:00 kugelfang Exp $ IUSE="ssl" @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/openh323/${MY_P}-src.tar.gz" SLOT="0" LICENSE="MPL-1.1" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~x86 ~ppc ~amd64" DEPEND=">=sys-apps/sed-4 >=dev-libs/pwlib-1.6.6 @@ -59,6 +59,9 @@ src_unpack() { # fix include order (bug #32522) epatch ${FILESDIR}/openh323-${PV}-include-order.diff + + # fix to compile on gcc-3.4 (bug #56951) + epatch ${FILESDIR}/${PN}-1.13.2-gcc34.diff } src_compile() { |