summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-05-28 20:58:41 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2010-05-28 20:58:41 +0000
commit3900caf0657e0c630c261ab64f76c3d750ecf914 (patch)
tree90827e319128db4c28d650ccdd98de5f913d0de4 /x11-misc/numlockx
parentRevbump which fixes recent changes on python eclass. Fixes bug #317021 (diff)
downloadgentoo-2-3900caf0657e0c630c261ab64f76c3d750ecf914.tar.gz
gentoo-2-3900caf0657e0c630c261ab64f76c3d750ecf914.tar.bz2
gentoo-2-3900caf0657e0c630c261ab64f76c3d750ecf914.zip
Version bump. Fixes bug #312585
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/numlockx')
-rw-r--r--x11-misc/numlockx/ChangeLog9
-rw-r--r--x11-misc/numlockx/numlockx-1.2.ebuild40
2 files changed, 47 insertions, 2 deletions
diff --git a/x11-misc/numlockx/ChangeLog b/x11-misc/numlockx/ChangeLog
index aeb399c07203..07c32341e7cb 100644
--- a/x11-misc/numlockx/ChangeLog
+++ b/x11-misc/numlockx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/numlockx
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v 1.26 2007/06/07 21:57:23 armin76 Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v 1.27 2010/05/28 20:58:41 hwoarang Exp $
+
+*numlockx-1.2 (28 May 2010)
+
+ 28 May 2010; Markos Chandras <hwoarang@gentoo.org> +numlockx-1.2.ebuild:
+ Version bump. Fixes bug #312585
07 Jun 2007; Raúl Porcel <armin76@gentoo.org> numlockx-1.1.ebuild:
alpha stable wrt #180462, thanks to Tobias Klausmann for testing
diff --git a/x11-misc/numlockx/numlockx-1.2.ebuild b/x11-misc/numlockx/numlockx-1.2.ebuild
new file mode 100644
index 000000000000..efb6ed63f186
--- /dev/null
+++ b/x11-misc/numlockx/numlockx-1.2.ebuild
@@ -0,0 +1,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.1 2010/05/28 20:58:41 hwoarang 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
+}