blob: d268ffb121399de60e7862e72c8f31498d2f3dae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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.10-r3.ebuild,v 1.1 2002/06/03 12:08:02 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
}
|