blob: 849b0fd6628f8e1038e5bf8c218296f3902186c8 (
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
40
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/numlockx-1.2.ebuild,v 1.6 2010/12/28 01:27:40 ranger Exp $
inherit autotools
DESCRIPTION="Turns on numlock in X"
HOMEPAGE="http://ktown.kde.org/~seli/numlockx"
SRC_URI="http://ktown.kde.org/~seli/numlockx/${P}.tar.gz"
SLOT="0"
LICENSE="EDB"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXext
x11-libs/libXtst"
DEPEND="${RDEPEND}
x11-proto/xproto
x11-proto/xextproto"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e '/^K_.*$/d' configure.in || die
sed -i -e 's,@X_[_A-Z]\+@,,g' Makefile.am || die
eautoreconf
}
src_install(){
dobin numlockx
dodoc AUTHORS README
}
pkg_postinst(){
elog
elog "add 'numlockx' to your X startup programs to have numlock turn on when X starts"
elog
}
|