diff options
author | 2008-03-30 17:09:26 +0000 | |
---|---|---|
committer | 2008-03-30 17:09:26 +0000 | |
commit | 2374e5372e2312110a59210d42484915307cde27 (patch) | |
tree | 25126fa8d25a3cad1339593761d13c6c8c1eb364 | |
parent | Added ~ppc64 (diff) | |
download | gentoo-2-2374e5372e2312110a59210d42484915307cde27.tar.gz gentoo-2-2374e5372e2312110a59210d42484915307cde27.tar.bz2 gentoo-2-2374e5372e2312110a59210d42484915307cde27.zip |
Version bump #215280 by timofonic.
(Portage version: 2.2_pre5)
-rw-r--r-- | sys-apps/kbd/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/kbd/kbd-1.14.1.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/sys-apps/kbd/ChangeLog b/sys-apps/kbd/ChangeLog index 8a0737e14b75..2eab34a761f8 100644 --- a/sys-apps/kbd/ChangeLog +++ b/sys-apps/kbd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/kbd -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.70 2007/11/19 07:24:24 kumba Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.71 2008/03/30 17:09:26 vapier Exp $ + +*kbd-1.14.1 (30 Mar 2008) + + 30 Mar 2008; Mike Frysinger <vapier@gentoo.org> +kbd-1.14.1.ebuild: + Version bump #215280 by timofonic. 19 Nov 2007; Joshua Kinard <kumba@gentoo.org> kbd-1.13-r1.ebuild: Stable on mips, per #195687. diff --git a/sys-apps/kbd/kbd-1.14.1.ebuild b/sys-apps/kbd/kbd-1.14.1.ebuild new file mode 100644 index 000000000000..53a1f0264f49 --- /dev/null +++ b/sys-apps/kbd/kbd-1.14.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.14.1.ebuild,v 1.1 2008/03/30 17:09:26 vapier Exp $ + +inherit eutils + +DESCRIPTION="Keyboard and console utilities" +HOMEPAGE="http://freshmeat.net/projects/kbd/" +SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="nls" + +RDEPEND="" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i 's:install -s:install:' src/Makefile.in + + # fix unimap path issue caused by Debian patch + epatch "${FILESDIR}"/${PN}-1.12-unimap.patch + + # Provide a QWERTZ and QWERTY cz map #19010 + cp data/keymaps/i386/{qwertz,qwerty}/cz.map || die "cz qwerty" + epatch "${FILESDIR}"/${PN}-1.12-cz-qwerty-map.patch + + # Fix jp map to recognize Ctrl-[ as Escape #71870 + epatch "${FILESDIR}"/${PN}-1.12-jp-escape.patch +} + +src_compile() { + econf $(use_enable nls) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc CHANGES CREDITS README + dohtml doc/*.html +} |