diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-12-02 21:27:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-12-02 21:27:31 +0000 |
commit | 83cbd6bef1824bc8f261c1dcfe93bd2a08f0f3e5 (patch) | |
tree | 1fcd96d5c64758e7664dfffdd8345605526153c4 /sys-apps/kbd | |
parent | Update licenses, bug #445642 (diff) | |
download | gentoo-2-83cbd6bef1824bc8f261c1dcfe93bd2a08f0f3e5.tar.gz gentoo-2-83cbd6bef1824bc8f261c1dcfe93bd2a08f0f3e5.tar.bz2 gentoo-2-83cbd6bef1824bc8f261c1dcfe93bd2a08f0f3e5.zip |
Version bump.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'sys-apps/kbd')
-rw-r--r-- | sys-apps/kbd/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/kbd/kbd-1.15.4.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/sys-apps/kbd/ChangeLog b/sys-apps/kbd/ChangeLog index bb3bff37b2b7..06a8daa0a9cd 100644 --- a/sys-apps/kbd/ChangeLog +++ b/sys-apps/kbd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/kbd -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.105 2011/10/11 16:44:58 jer Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.106 2012/12/02 21:27:31 vapier Exp $ + +*kbd-1.15.4 (02 Dec 2012) + + 02 Dec 2012; Mike Frysinger <vapier@gentoo.org> +kbd-1.15.4.ebuild: + Version bump. 11 Oct 2011; Jeroen Roovers <jer@gentoo.org> kbd-1.15.3.ebuild: Stable for HPPA (bug #329693). diff --git a/sys-apps/kbd/kbd-1.15.4.ebuild b/sys-apps/kbd/kbd-1.15.4.ebuild new file mode 100644 index 000000000000..7df2a3730dee --- /dev/null +++ b/sys-apps/kbd/kbd-1.15.4.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.15.4.ebuild,v 1.1 2012/12/02 21:27:31 vapier Exp $ + +EAPI="4" + +DESCRIPTION="Keyboard and console utilities" +HOMEPAGE="http://freshmeat.net/projects/kbd/" +SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.xz + mirror://gentoo/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="nls pam" + +RDEPEND="pam? ( virtual/pam )" +DEPEND="${RDEPEND}" + +src_unpack() { + default + cd "${S}" + + # broken file ... upstream git punted it + rm po/es.po + + # Rename conflicting keymaps to have unique names, bug #293228 + cd "${S}"/data/keymaps/i386 + mv dvorak/no.map dvorak/no-dvorak.map + mv fgGIod/trf.map fgGIod/trf-fgGIod.map + mv olpc/es.map olpc/es-olpc.map + mv olpc/pt.map olpc/pt-olpc.map + mv qwerty/cz.map qwerty/cz-qwerty.map +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_enable pam vlock) +} + +src_install() { + default + dohtml doc/*.html +} |