diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-09-08 12:54:09 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-09-08 12:54:09 +0000 |
commit | 71a52b2011d04f391a2507e6675e5251cfeb199a (patch) | |
tree | 850e81c50f6475bc4669c0582f061162285438f0 /x11-plugins/gkrellm-bgchanger | |
parent | Stable for amd64, wrt bug #434302 (diff) | |
download | gentoo-2-71a52b2011d04f391a2507e6675e5251cfeb199a.tar.gz gentoo-2-71a52b2011d04f391a2507e6675e5251cfeb199a.tar.bz2 gentoo-2-71a52b2011d04f391a2507e6675e5251cfeb199a.zip |
Respect CC and correct include dir
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/gkrellm-bgchanger')
-rw-r--r-- | x11-plugins/gkrellm-bgchanger/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r1.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/x11-plugins/gkrellm-bgchanger/ChangeLog b/x11-plugins/gkrellm-bgchanger/ChangeLog index df614c431522..c9b32a443d76 100644 --- a/x11-plugins/gkrellm-bgchanger/ChangeLog +++ b/x11-plugins/gkrellm-bgchanger/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/gkrellm-bgchanger # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-bgchanger/ChangeLog,v 1.24 2012/08/30 00:21:20 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-bgchanger/ChangeLog,v 1.25 2012/09/08 12:54:09 ago Exp $ + +*gkrellm-bgchanger-0.1.11-r1 (08 Sep 2012) + + 08 Sep 2012; Agostino Sarubbo <ago@gentoo.org> + +gkrellm-bgchanger-0.1.11-r1.ebuild: + Respect CC and correct include dir *gkrellm-bgchanger-0.1.11 (30 Aug 2012) diff --git a/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r1.ebuild b/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r1.ebuild new file mode 100644 index 000000000000..22a21b1b75de --- /dev/null +++ b/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-bgchanger/gkrellm-bgchanger-0.1.11-r1.ebuild,v 1.1 2012/09/08 12:54:09 ago Exp $ + +EAPI=4 + +inherit gkrellm-plugin toolchain-funcs + +IUSE="" + +MY_PN=gkrellmbgchg2 +MY_P=${MY_PN}-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Plugin for GKrellM2 to change your desktop background" +HOMEPAGE="http://www.bender-suhl.de/stefan/english/comp/gkrellmbgchg.html" +SRC_URI="http://www.bender-suhl.de/stefan/comp/sources/${MY_P}.tar.gz" + +SLOT="2" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" + +PLUGIN_SO=gkrellmbgchg.so +PLUGIN_DOCS="bgchg_info.sh kdewallpaper.sh" + +src_prepare() { + sed -i "s:local/::" Makefile || die + tc-export CC +} |