diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-06-11 00:38:42 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-06-11 00:38:42 +0000 |
commit | 23d01c952acdd33dd87be3285b7fecf51d885fb0 (patch) | |
tree | 503de09b7260ff630fc291576508fde40950b701 /gnome-extra/battstat/battstat-2.0.11.ebuild | |
parent | fixing an mkennedy dep typo (diff) | |
download | historical-23d01c952acdd33dd87be3285b7fecf51d885fb0.tar.gz historical-23d01c952acdd33dd87be3285b7fecf51d885fb0.tar.bz2 historical-23d01c952acdd33dd87be3285b7fecf51d885fb0.zip |
version bump
Diffstat (limited to 'gnome-extra/battstat/battstat-2.0.11.ebuild')
-rw-r--r-- | gnome-extra/battstat/battstat-2.0.11.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnome-extra/battstat/battstat-2.0.11.ebuild b/gnome-extra/battstat/battstat-2.0.11.ebuild new file mode 100644 index 000000000000..4a2f2de4b227 --- /dev/null +++ b/gnome-extra/battstat/battstat-2.0.11.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/battstat/battstat-2.0.11.ebuild,v 1.1 2002/06/11 00:38:42 seemant Exp $ + +S=${WORKDIR}/battstat_applet-${PV} +DESCRIPTION="Battstat Applet, GNOME battery status applet." +SRC_URI="http://download.sourceforge.net/battstat/battstat_applet-${PV}.tar.gz" +HOMEPAGE="http://battstat.sourceforge.net" + +DEPEND="virtual/glibc + >=gnome-base/gnome-libs-1.4.1.2-r1 + >=gnome-base/gnome-core-1.4.0.4-r1 + >=sys-apps/apmd-3.0.1 + nls? ( sys-devel/gettext )" + +src_compile() { + local myconf + + use nls \ + || myconf="--disable-nls" +# && myconf="--localedir=/usr/share/locale" \ + + econf ${myconf} || die + emake || die +} + +src_install () { + + make \ + DESTDIR=${D} \ + gnomeconfdir=${D}/etc \ + gnomedatadir=${D}/usr/share \ + gnulocaledir=${D}/usr/share/locale \ + install || die + + rm ${D}/topic.dat + + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |