diff options
author | Jim Ramsay <lack@gentoo.org> | 2007-03-12 16:29:49 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2007-03-12 16:29:49 +0000 |
commit | 734487c5b7c920278e7d51814b955d8a57ea008d (patch) | |
tree | fb382417bb02ff2d0cfe83652176ea5a9bccd78d /x11-plugins/gkrellstock | |
parent | stable for x86; whack old version (diff) | |
download | gentoo-2-734487c5b7c920278e7d51814b955d8a57ea008d.tar.gz gentoo-2-734487c5b7c920278e7d51814b955d8a57ea008d.tar.bz2 gentoo-2-734487c5b7c920278e7d51814b955d8a57ea008d.zip |
Updated to use new gkrellm-plugin eclass
(Portage version: 2.1.2-r10)
Diffstat (limited to 'x11-plugins/gkrellstock')
-rw-r--r-- | x11-plugins/gkrellstock/ChangeLog | 5 | ||||
-rw-r--r-- | x11-plugins/gkrellstock/gkrellstock-0.5.ebuild | 18 |
2 files changed, 10 insertions, 13 deletions
diff --git a/x11-plugins/gkrellstock/ChangeLog b/x11-plugins/gkrellstock/ChangeLog index f8a5f1c6176b..1bf72b53a544 100644 --- a/x11-plugins/gkrellstock/ChangeLog +++ b/x11-plugins/gkrellstock/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/gkrellstock # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellstock/ChangeLog,v 1.11 2007/02/21 21:40:26 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellstock/ChangeLog,v 1.12 2007/03/12 16:29:49 lack Exp $ + + 12 Mar 2007; Jim Ramsay <lack@gentoo.org> gkrellstock-0.5.ebuild: + Updated to use new gkrellm-plugin eclass 21 Feb 2007; Jim Ramsay <lack@gentoo.org> +metadata.xml, -gkrellstock-0.4.ebuild: diff --git a/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild b/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild index 13bf1a0e95dd..a83d020f94a2 100644 --- a/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild +++ b/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild,v 1.13 2005/05/06 00:23:55 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellstock/gkrellstock-0.5.ebuild,v 1.14 2007/03/12 16:29:49 lack Exp $ -inherit multilib +inherit gkrellm-plugin IUSE="" S=${WORKDIR}/${P/s/S} @@ -10,22 +10,16 @@ DESCRIPTION="Get Stock quotes plugin for Gkrellm2" SRC_URI="mirror://sourceforge/gkrellstock/${P}.tar.gz" HOMEPAGE="http://gkrellstock.sourceforge.net/" -DEPEND=">=app-admin/gkrellm-2 - dev-perl/libwww-perl +RDEPEND="dev-perl/libwww-perl dev-perl/Finance-Quote" SLOT="2" LICENSE="GPL-2" KEYWORDS="x86 sparc ppc amd64" -src_compile() { - emake || die -} - src_install () { - insinto /usr/$(get_libdir)/gkrellm2/plugins - doins gkrellstock.so + gkrellm-plugin_src_install + exeinto /usr/bin doexe GetQuote2 - dodoc README ChangeLog COPYING } |