diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2008-12-02 15:26:05 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2008-12-02 15:26:05 +0000 |
commit | f1eeaa09a33cfd901415d98e7edd16a97915cab0 (patch) | |
tree | c3581b5889d7e917f5f847eb092b403b3f71fd0a /media-radio | |
parent | fix where documentation is installed, bug 247951. Add Thomas Beierlein to met... (diff) | |
download | gentoo-2-f1eeaa09a33cfd901415d98e7edd16a97915cab0.tar.gz gentoo-2-f1eeaa09a33cfd901415d98e7edd16a97915cab0.tar.bz2 gentoo-2-f1eeaa09a33cfd901415d98e7edd16a97915cab0.zip |
fix building with latest gtk+, bug 247951. Add Thomas Beierlein to metadata, he will be maintaining this through me
(Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc6-wl-dirty x86_64)
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/xdx/ChangeLog | 7 | ||||
-rw-r--r-- | media-radio/xdx/files/xdx-2.4-gtk.patch | 11 | ||||
-rw-r--r-- | media-radio/xdx/metadata.xml | 9 | ||||
-rw-r--r-- | media-radio/xdx/xdx-2.4.ebuild | 11 |
4 files changed, 34 insertions, 4 deletions
diff --git a/media-radio/xdx/ChangeLog b/media-radio/xdx/ChangeLog index e394b59f361c..476c41025fc6 100644 --- a/media-radio/xdx/ChangeLog +++ b/media-radio/xdx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/xdx # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/ChangeLog,v 1.14 2008/11/08 15:33:49 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/ChangeLog,v 1.15 2008/12/02 15:26:05 darkside Exp $ + + 02 Dec 2008; Jeremy Olexa <darkside@gentoo.org> +files/xdx-2.4-gtk.patch, + metadata.xml, xdx-2.4.ebuild: + fix building with latest gtk+, bug 247951. Add Thomas Beierlein to metadata, + he will be maintaining this through me 08 Nov 2008; Markus Meier <maekke@gentoo.org> xdx-2.4.ebuild: amd64/x86 stable, bug #245578 diff --git a/media-radio/xdx/files/xdx-2.4-gtk.patch b/media-radio/xdx/files/xdx-2.4-gtk.patch new file mode 100644 index 000000000000..8928f2e72e83 --- /dev/null +++ b/media-radio/xdx/files/xdx-2.4-gtk.patch @@ -0,0 +1,11 @@ +--- src/gui_manualdialog.c.orig 2008-11-21 16:19:15.000000000 +0100 ++++ src/gui_manualdialog.c 2008-11-21 16:19:45.000000000 +0100 +@@ -59,7 +59,7 @@ + helpfile = g_strdup_printf ("%s%s%s", PACKAGE_DATA_DIR, G_DIR_SEPARATOR_S, _("MANUAL")); + + g_signal_connect(G_OBJECT(manualdialog), "response", +- GTK_SIGNAL_FUNC(gtk_widget_destroy), NULL); ++ G_CALLBACK (gtk_widget_destroy), NULL); + + + in = fopen (helpfile, "r"); diff --git a/media-radio/xdx/metadata.xml b/media-radio/xdx/metadata.xml index fae7d74a9aee..6877160ab12c 100644 --- a/media-radio/xdx/metadata.xml +++ b/media-radio/xdx/metadata.xml @@ -3,7 +3,12 @@ <pkgmetadata> <herd>no-herd</herd> <maintainer> - <email>maintainer-needed@gentoo.org</email> - <name>Default assignee for orphaned packages</name> + <email>tb@forth-ev.de</email> + <name>Thomas Beierlein</name> + <description>Proxy maintainer, please assign bugs</description> + </maintainer> + <maintainer> + <email>darkside@gentoo.org</email> + <description>Proxy committer, CC on bugs</description> </maintainer> </pkgmetadata> diff --git a/media-radio/xdx/xdx-2.4.ebuild b/media-radio/xdx/xdx-2.4.ebuild index f5db50c4cc4e..26e43d2ab42d 100644 --- a/media-radio/xdx/xdx-2.4.ebuild +++ b/media-radio/xdx/xdx-2.4.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/xdx-2.4.ebuild,v 1.3 2008/11/08 15:33:49 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/xdx-2.4.ebuild,v 1.4 2008/12/02 15:26:05 darkside Exp $ + +inherit eutils DESCRIPTION="a GTK+ TCP/IP DX-cluster and ON4KST chat client." HOMEPAGE="http://www.qsl.net/pg4i/linux/xdx.html" @@ -16,6 +18,13 @@ DEPEND="${RDEPEND} dev-util/pkgconfig nls? ( sys-devel/gettext )" +src_unpack(){ + unpack ${A} + cd "${S}" + # fix for deprecated macro in GTK+-2.14 and later + epatch "${FILESDIR}"/xdx-2.4-gtk.patch +} + src_compile() { econf $(use_enable nls) emake || die "emake failed." |