diff options
author | Jim Ramsay <lack@gentoo.org> | 2007-03-12 17:52:07 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2007-03-12 17:52:07 +0000 |
commit | 203d475b57c35d9aebad579a8f3624cc64acab0c (patch) | |
tree | fc8531b21e3abe5d6b65f33ce5890438536994da /x11-plugins | |
parent | Stable on ppc64; bug #165460 (diff) | |
download | gentoo-2-203d475b57c35d9aebad579a8f3624cc64acab0c.tar.gz gentoo-2-203d475b57c35d9aebad579a8f3624cc64acab0c.tar.bz2 gentoo-2-203d475b57c35d9aebad579a8f3624cc64acab0c.zip |
Updated to use new gkrellm-plugin eclass
(Portage version: 2.1.2-r10)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/gkrellsun/ChangeLog | 5 | ||||
-rw-r--r-- | x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild | 13 |
2 files changed, 9 insertions, 9 deletions
diff --git a/x11-plugins/gkrellsun/ChangeLog b/x11-plugins/gkrellsun/ChangeLog index 753f8e26c395..8a188e670978 100644 --- a/x11-plugins/gkrellsun/ChangeLog +++ b/x11-plugins/gkrellsun/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/gkrellsun # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/ChangeLog,v 1.26 2007/03/12 17:46:16 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/ChangeLog,v 1.27 2007/03/12 17:52:07 lack Exp $ + + 12 Mar 2007; Jim Ramsay <lack@gentoo.org> gkrellsun-1.0.0-r1.ebuild: + Updated to use new gkrellm-plugin eclass 12 Mar 2007; Jim Ramsay <lack@gentoo.org> -gkrellsun-0.12.1.ebuild, -gkrellsun-0.12.2.ebuild: diff --git a/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild b/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild index bbd6a61b179a..5ebf8883a131 100644 --- a/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild +++ b/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild,v 1.2 2007/03/12 17:23:17 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-1.0.0-r1.ebuild,v 1.3 2007/03/12 17:52:07 lack Exp $ -inherit multilib +inherit gkrellm-plugin IUSE="nls" DESCRIPTION="A GKrellM plugin that shows sunrise and sunset times." @@ -13,15 +13,12 @@ SLOT="1" LICENSE="GPL-2" KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86" -DEPEND="=app-admin/gkrellm-2* - nls? ( sys-devel/gettext )" +DEPEND="nls? ( sys-devel/gettext )" + +PLUGIN_SO=src20/gkrellsun.so src_compile() { use nls && myconf="$myconf enable_nls=1" emake ${myconf} } -src_install () { - make DESTDIR="${D}" PREFIX="/usr" PLUGINDIR="${D}/usr/$(get_libdir)/gkrellm2/plugins" ${myconf} install - dodoc README AUTHORS COPYING -} |