diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-03-29 16:21:06 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-03-29 16:21:06 +0000 |
commit | 0ac67d6c5b5b4274c4071d237d8224f4a70c6b82 (patch) | |
tree | ec384b9ec6467ddd7f71d9e14ed943d93b7acbef /xfce-extra/xfce4-sensors-plugin | |
parent | Version bump for dev channel release. (diff) | |
download | gentoo-2-0ac67d6c5b5b4274c4071d237d8224f4a70c6b82.tar.gz gentoo-2-0ac67d6c5b5b4274c4071d237d8224f4a70c6b82.tar.bz2 gentoo-2-0ac67d6c5b5b4274c4071d237d8224f4a70c6b82.zip |
Fix missing -I flag for libxfce4panel headers.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra/xfce4-sensors-plugin')
3 files changed, 24 insertions, 2 deletions
diff --git a/xfce-extra/xfce4-sensors-plugin/ChangeLog b/xfce-extra/xfce4-sensors-plugin/ChangeLog index 094d28dc7a07..3b96672cca58 100644 --- a/xfce-extra/xfce4-sensors-plugin/ChangeLog +++ b/xfce-extra/xfce4-sensors-plugin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-extra/xfce4-sensors-plugin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.5 2010/03/29 15:20:09 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.6 2010/03/29 16:21:06 ssuominen Exp $ + + 29 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> + xfce4-sensors-plugin-1.0.0.ebuild, + +files/xfce4-sensors-plugin-1.0.0-missing_includedir.patch: + Fix missing -I flag for libxfce4panel headers. 29 Mar 2010; Jeremy Olexa <darkside@gentoo.org> xfce4-sensors-plugin-1.0.0.ebuild: diff --git a/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.0.0-missing_includedir.patch b/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.0.0-missing_includedir.patch new file mode 100644 index 000000000000..0048608d3a9e --- /dev/null +++ b/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.0.0-missing_includedir.patch @@ -0,0 +1,14 @@ +Missing -I flag for libxfce4panel/xfce-panel-plugin.h: No such file or directory + +--- src/Makefile.am ++++ src/Makefile.am +@@ -27,7 +27,8 @@ + -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ + @LIBSENSORS_CFLAGS@ \ + @LIBXFCE4UTIL_CFLAGS@ \ +- @LIBXFCEGUI4_CFLAGS@ ++ @LIBXFCEGUI4_CFLAGS@ \ ++ @LIBXFCE4PANEL_CFLAGS@ + + # @GTK_CFLAGS@ \ + # @GLIB_CFLAGS@ \ diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild index 3255297d666f..d04e0ee74d02 100644 --- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild +++ b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild,v 1.3 2010/03/29 15:20:09 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.0.0.ebuild,v 1.4 2010/03/29 16:21:06 ssuominen Exp $ EAUTORECONF=yes EAPI=2 @@ -28,6 +28,7 @@ DEPEND="${RDEPEND} pkg_setup() { XFCONF="--disable-dependency-tracking + --disable-static $(use_enable hddtemp) $(use_enable hddtemp netcat) $(use_enable lm_sensors libsensors) @@ -41,6 +42,8 @@ pkg_setup() { fi DOCS="AUTHORS ChangeLog NEWS NOTES README TODO" + + PATCHES=( "${FILESDIR}/${P}-missing_includedir.patch" ) } src_prepare() { |