Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/numlockx: ChangeLog numlockx-1.2.ebuild
Date: Fri, 28 May 2010 20:58:45
Message-Id: 20100528205842.596252CF37@corvid.gentoo.org
1 hwoarang 10/05/28 20:58:41
2
3 Modified: ChangeLog
4 Added: numlockx-1.2.ebuild
5 Log:
6 Version bump. Fixes bug #312585
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 x11-misc/numlockx/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/numlockx/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/numlockx/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/numlockx/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 7 Jun 2007 21:57:23 -0000 1.26
23 +++ ChangeLog 28 May 2010 20:58:41 -0000 1.27
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/numlockx
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v 1.26 2007/06/07 21:57:23 armin76 Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v 1.27 2010/05/28 20:58:41 hwoarang Exp $
30 +
31 +*numlockx-1.2 (28 May 2010)
32 +
33 + 28 May 2010; Markos Chandras <hwoarang@g.o> +numlockx-1.2.ebuild:
34 + Version bump. Fixes bug #312585
35
36 07 Jun 2007; Raúl Porcel <armin76@g.o> numlockx-1.1.ebuild:
37 alpha stable wrt #180462, thanks to Tobias Klausmann for testing
38
39
40
41 1.1 x11-misc/numlockx/numlockx-1.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/numlockx/numlockx-1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/numlockx/numlockx-1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: numlockx-1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/numlockx-1.2.ebuild,v 1.1 2010/05/28 20:58:41 hwoarang Exp $
51
52 inherit autotools
53
54 DESCRIPTION="Turns on numlock in X"
55 HOMEPAGE="http://ktown.kde.org/~seli/numlockx"
56 SRC_URI="http://ktown.kde.org/~seli/numlockx/${P}.tar.gz"
57
58 SLOT="0"
59 LICENSE="EDB"
60 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 RDEPEND="x11-libs/libX11
64 x11-libs/libXext
65 x11-libs/libXtst"
66 DEPEND="${RDEPEND}
67 x11-proto/xproto
68 x11-proto/xextproto"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 sed -i -e '/^K_.*$/d' configure.in || die
74 sed -i -e 's,@X_[_A-Z]\+@,,g' Makefile.am || die
75 eautoreconf
76 }
77
78 src_install(){
79 dobin numlockx
80 dodoc AUTHORS README
81 }
82
83 pkg_postinst(){
84 elog
85 elog "add 'numlockx' to your X startup programs to have numlock turn on when X starts"
86 elog
87 }