diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2007-01-21 18:10:32 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2007-01-21 18:10:32 +0000 |
commit | 60a70f19b6eac2e6d179effaaf13f61d66889352 (patch) | |
tree | 517e7d947c2229097f54634d7282dcf7c4cfc2c7 /xfce-extra | |
parent | Add ~x86-fbsd keyword (see the various bugs for netbeans 5.5-r2). (diff) | |
download | gentoo-2-60a70f19b6eac2e6d179effaaf13f61d66889352.tar.gz gentoo-2-60a70f19b6eac2e6d179effaaf13f61d66889352.tar.bz2 gentoo-2-60a70f19b6eac2e6d179effaaf13f61d66889352.zip |
Fixed compilation with --as-needed. Fix provided by Samuli Suominen <sasuomin@uusikaupunki.fi> on bug #160643.
(Portage version: 2.1.2-r1)
Diffstat (limited to 'xfce-extra')
4 files changed, 47 insertions, 2 deletions
diff --git a/xfce-extra/xfce4-systemload/ChangeLog b/xfce-extra/xfce4-systemload/ChangeLog index 708a196f801a..66b537408b24 100644 --- a/xfce-extra/xfce4-systemload/ChangeLog +++ b/xfce-extra/xfce4-systemload/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for xfce-extra/xfce4-systemload -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload/ChangeLog,v 1.26 2006/12/12 04:34:14 nichoj Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload/ChangeLog,v 1.27 2007/01/21 18:10:32 nichoj Exp $ + +*xfce4-systemload-0.4-r1 (21 Jan 2007) + + 21 Jan 2007; Joshua Nichols <nichoj@gentoo.org> + +files/xfce4-systemload-0.4-asneeded.patch, + +xfce4-systemload-0.4-r1.ebuild: + Fixed compilation with --as-needed. Fix provided by Samuli Suominen + <sasuomin@uusikaupunki.fi> on bug #160643. 12 Dec 2006; Joshua Nichols <nichoj@gentoo.org> -xfce4-systemload-0.3.4-r1.ebuild: diff --git a/xfce-extra/xfce4-systemload/files/digest-xfce4-systemload-0.4-r1 b/xfce-extra/xfce4-systemload/files/digest-xfce4-systemload-0.4-r1 new file mode 100644 index 000000000000..8dc66736287b --- /dev/null +++ b/xfce-extra/xfce4-systemload/files/digest-xfce4-systemload-0.4-r1 @@ -0,0 +1,3 @@ +MD5 621208e55d96cec2c65611e8f6969896 xfce4-systemload-plugin-0.4.tar.bz2 170665 +RMD160 3ed3f0f2467823540009f992bb0c762955be5b14 xfce4-systemload-plugin-0.4.tar.bz2 170665 +SHA256 449e5f955e14cb071faf797713327984c004ab9f83f6ff5b74666f6aaf689e08 xfce4-systemload-plugin-0.4.tar.bz2 170665 diff --git a/xfce-extra/xfce4-systemload/files/xfce4-systemload-0.4-asneeded.patch b/xfce-extra/xfce4-systemload/files/xfce4-systemload-0.4-asneeded.patch new file mode 100644 index 000000000000..81cb644d92bd --- /dev/null +++ b/xfce-extra/xfce4-systemload/files/xfce4-systemload-0.4-asneeded.patch @@ -0,0 +1,12 @@ +diff -ur xfce4-systemload-plugin-0.4.orig/panel-plugin/Makefile.am xfce4-systemload-plugin-0.4/panel-plugin/Makefile.am +--- xfce4-systemload-plugin-0.4.orig/panel-plugin/Makefile.am 2006-04-27 22:22:04.000000000 +0300 ++++ xfce4-systemload-plugin-0.4/panel-plugin/Makefile.am 2007-01-07 11:36:33.000000000 +0200 +@@ -5,7 +5,7 @@ + -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ + @LIBXFCE4PANEL_CFLAGS@ + +-xfce4_systemload_plugin_LDFLAGS = \ ++xfce4_systemload_plugin_LDADD = \ + @LIBXFCE4PANEL_LIBS@ + + xfce4_systemload_plugin_SOURCES = \ diff --git a/xfce-extra/xfce4-systemload/xfce4-systemload-0.4-r1.ebuild b/xfce-extra/xfce4-systemload/xfce4-systemload-0.4-r1.ebuild new file mode 100644 index 000000000000..8f72e4100658 --- /dev/null +++ b/xfce-extra/xfce4-systemload/xfce4-systemload-0.4-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload/xfce4-systemload-0.4-r1.ebuild,v 1.1 2007/01/21 18:10:32 nichoj Exp $ + +WANT_AUTOCONF=latest +WANT_AUTOMAKE=1.9 + +inherit xfce44 eutils autotools + +xfce44_beta +xfce44_goodies_panel_plugin + +DESCRIPTION="Xfce system load monitor" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +SRC_URI="http://goodies.xfce.org/_media/projects/panel-plugins/${MY_P}${COMPRESS}" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-asneeded.patch + eautomake +} |