diff options
3 files changed, 43 insertions, 6 deletions
diff --git a/xfce-extra/xfce4-radio-plugin/ChangeLog b/xfce-extra/xfce4-radio-plugin/ChangeLog index cf7df69d4465..a2f7c4810df5 100644 --- a/xfce-extra/xfce4-radio-plugin/ChangeLog +++ b/xfce-extra/xfce4-radio-plugin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-extra/xfce4-radio-plugin -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog,v 1.4 2009/08/26 10:10:35 fauli Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/ChangeLog,v 1.5 2010/08/08 15:55:37 ssuominen Exp $ + + 08 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> + xfce4-radio-plugin-0.4.2.ebuild, + +files/xfce4-radio-plugin-0.4.2-link_to_libxfcegui4.patch: + Link to libxfcegui4 wrt #331495 by Diego E. Pettenò. 26 Aug 2009; Christian Faulhammer <fauli@gentoo.org> xfce4-radio-plugin-0.4.2.ebuild: diff --git a/xfce-extra/xfce4-radio-plugin/files/xfce4-radio-plugin-0.4.2-link_to_libxfcegui4.patch b/xfce-extra/xfce4-radio-plugin/files/xfce4-radio-plugin-0.4.2-link_to_libxfcegui4.patch new file mode 100644 index 000000000000..fb23955df677 --- /dev/null +++ b/xfce-extra/xfce4-radio-plugin/files/xfce4-radio-plugin-0.4.2-link_to_libxfcegui4.patch @@ -0,0 +1,29 @@ +http://bugs.gentoo.org/show_bug.cgi?id=331495 +http://bugzilla.xfce.org/show_bug.cgi?id=6621 + +--- configure.in ++++ configure.in +@@ -31,6 +31,7 @@ + + dnl configure the panel plugin + XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.22]) ++XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.3.22]) + + dnl check for i18n support + XDT_I18N([ar ca cs da de en_GB es eu fr gl hu id it ja lv nl pl pt_BR pt ru sq sv tr uk ur zh_TW ]) +--- panel-plugin/Makefile.am ++++ panel-plugin/Makefile.am +@@ -10,10 +10,12 @@ + xfce4_radio_plugin_CFLAGS = \ + -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ + @LIBXFCE4PANEL_CFLAGS@ \ ++ @LIBXFCEGUI4_CFLAGS@ \ + -std=c99 + + xfce4_radio_plugin_LDADD = \ +- @LIBXFCE4PANEL_LIBS@ ++ @LIBXFCE4PANEL_LIBS@ \ ++ @LIBXFCEGUI4_LIBS@ + + # .desktop file + # diff --git a/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild b/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild index aa8143610dfb..8bc84bd998ea 100644 --- a/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild +++ b/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild,v 1.5 2010/03/20 17:43:58 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-radio-plugin/xfce4-radio-plugin-0.4.2.ebuild,v 1.6 2010/08/08 15:55:37 ssuominen Exp $ EAPI=2 +EAUTORECONF=yes inherit xfconf DESCRIPTION="Panel plugin to control V4L radio device" @@ -14,19 +15,21 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="debug" -RDEPEND=">=xfce-base/xfce4-panel-4.3.22" +RDEPEND=">=xfce-base/libxfcegui4-4.3.22 + >=xfce-base/xfce4-panel-4.3.22" DEPEND="${RDEPEND} dev-util/pkgconfig >=dev-util/intltool-0.40" pkg_setup() { + PATCHES=( "${FILESDIR}"/${P}-link_to_libxfcegui4.patch ) XFCONF="--disable-dependency-tracking - $(use_enable debug)" + $(xfconf_use_debug)" DOCS="AUTHORS ChangeLog NEWS README" } src_prepare() { - xfconf_src_prepare echo panel-plugin/radio.desktop.in.in >> po/POTFILES.skip echo panel-plugin/xfce4-radio.c >> po/POTFILES.skip + xfconf_src_prepare } |