diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-04-10 09:07:02 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-04-10 09:07:02 +0000 |
commit | 8f252f9da594bae32a8d3f5d2cec94623d318843 (patch) | |
tree | 8b216f3abb567e333a62b6c20ee5003bf2c6a92b /x11-misc | |
parent | Version bump, removed old version. (diff) | |
download | gentoo-2-8f252f9da594bae32a8d3f5d2cec94623d318843.tar.gz gentoo-2-8f252f9da594bae32a8d3f5d2cec94623d318843.tar.bz2 gentoo-2-8f252f9da594bae32a8d3f5d2cec94623d318843.zip |
Version bump, see bug #172891.
(Portage version: 2.1.2.3)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/numlockx/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/numlockx/files/digest-numlockx-1.1 | 3 | ||||
-rw-r--r-- | x11-misc/numlockx/numlockx-1.1.ebuild | 44 |
3 files changed, 53 insertions, 1 deletions
diff --git a/x11-misc/numlockx/ChangeLog b/x11-misc/numlockx/ChangeLog index 47dc52f85f51..3f8db6f89f2f 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.18 2007/02/06 01:31:02 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/ChangeLog,v 1.19 2007/04/10 09:07:02 nelchael Exp $ + +*numlockx-1.1 (10 Apr 2007) + + 10 Apr 2007; Krzysiek Pawlik <nelchael@gentoo.org> +numlockx-1.1.ebuild: + Version bump, see bug #172891. 06 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/x11-misc/numlockx/files/digest-numlockx-1.1 b/x11-misc/numlockx/files/digest-numlockx-1.1 new file mode 100644 index 000000000000..5e177d8e06ee --- /dev/null +++ b/x11-misc/numlockx/files/digest-numlockx-1.1 @@ -0,0 +1,3 @@ +MD5 127d9dfbbbe6dbec62cc78db340f913c numlockx-1.1.tar.gz 75777 +RMD160 1a905c8f3213d32f563e7d2135d5c20d528e99e4 numlockx-1.1.tar.gz 75777 +SHA256 e00ce02ffe425e3095665ac44e496a0b6ca82dfe4dc816d3bee95489337c5877 numlockx-1.1.tar.gz 75777 diff --git a/x11-misc/numlockx/numlockx-1.1.ebuild b/x11-misc/numlockx/numlockx-1.1.ebuild new file mode 100644 index 000000000000..8880d4a6e9e4 --- /dev/null +++ b/x11-misc/numlockx/numlockx-1.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/numlockx/numlockx-1.1.ebuild,v 1.1 2007/04/10 09:07:02 nelchael 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 LICENSE README +} + +pkg_postinst(){ + einfo + einfo "add 'numlockx' to your X startup programs to have numlock turn on when X starts" + einfo +} |