blob: bce4dfc20be5df75e045376f02785ae400dabd66 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/lock-keys-applet/lock-keys-applet-1.0.ebuild,v 1.14 2008/11/19 23:49:23 eva Exp $
inherit autotools gnome2 eutils
DESCRIPTION="An applet that shows the status of your Caps, Num and Scroll Lock keys"
HOMEPAGE="http://mfcn.ilo.de/led_applet"
SRC_URI="http://mfcn.ilo.de/led_applet/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
RDEPEND=">=gnome-base/libgnomeui-2
>=gnome-base/gnome-panel-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.21
app-text/scrollkeeper"
DOCS="AUTHORS ChangeLog NEWS README TODO"
src_unpack() {
gnome2_src_unpack
# remove deprecated definitions, bug #206459
# courtesy of ubuntu/debian developers
epatch "${FILESDIR}/${P}-gtk-disable-deprecated.patch"
# Fix intltool tests
echo "GNOME_LockKeysApplet.server.in" >> po/POTFILES.in
intltoolize --force --copy --automake || die "intltoolize failed"
eautomake
}
|