diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-12-02 07:44:00 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-12-02 07:44:00 +0000 |
commit | e30cf75784db6c0b696ed56c47cab53f1772c74b (patch) | |
tree | 1b4d966d7cd9ffeb4bb52a5dc4fb1d8572ce0c72 /x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild | |
parent | version bump (diff) | |
download | historical-e30cf75784db6c0b696ed56c47cab53f1772c74b.tar.gz historical-e30cf75784db6c0b696ed56c47cab53f1772c74b.tar.bz2 historical-e30cf75784db6c0b696ed56c47cab53f1772c74b.zip |
version bump
Diffstat (limited to 'x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild')
-rw-r--r-- | x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild b/x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild new file mode 100644 index 000000000000..40893f2aeffe --- /dev/null +++ b/x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-0.9.1.ebuild,v 1.1 2002/12/02 07:44:00 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A GKrellM plugin that shows sunrise and sunset times." +SRC_URI="mirror://sourceforge/gkrellsun/${P}.tar.gz" +HOMEPAGE="http://gkrellsun.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc sparc64" + +DEPEND="app-admin/gkrellm + >=media-libs/imlib-1.9.10-r1" + +src_compile() { + + if [ -f /usr/bin/gkrellm ] + then + cd ${S}/src + emake || die + fi + + if [ -f /usr/bin/gkrellm2 ] + then + cd ${S}/src20 + emake || die + fi + +} + +src_install () { + + dodoc README AUTHORS COPYING + + if [ -f /usr/bin/gkrellm ] + then + cd ${S}/src + insinto /usr/lib/gkrellm/plugins + doins gkrellsun.so + fi + + if [ -f /usr/bin/gkrellm2 ] + then + cd ${S}/src20 + insinto /usr/lib/gkrellm2/plugins + doins gkrellsun.so + fi +} |