diff options
author | 2008-12-01 22:34:42 +0000 | |
---|---|---|
committer | 2008-12-01 22:34:42 +0000 | |
commit | c0e8852d5f0601724b13e53a9afcf21149ab7b3c (patch) | |
tree | 590ed1623794f0b1d44309b94d89db6290029329 /sys-apps/kbd | |
parent | Update reference on the patch in 0.8, close bug #176035. remove old revision. (diff) | |
download | gentoo-2-c0e8852d5f0601724b13e53a9afcf21149ab7b3c.tar.gz gentoo-2-c0e8852d5f0601724b13e53a9afcf21149ab7b3c.tar.bz2 gentoo-2-c0e8852d5f0601724b13e53a9afcf21149ab7b3c.zip |
Version bump.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27.4 x86_64)
Diffstat (limited to 'sys-apps/kbd')
-rw-r--r-- | sys-apps/kbd/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/kbd/kbd-1.15.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/sys-apps/kbd/ChangeLog b/sys-apps/kbd/ChangeLog index ca21736e1455..ce5c39e0cdcb 100644 --- a/sys-apps/kbd/ChangeLog +++ b/sys-apps/kbd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/kbd # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.77 2008/11/17 22:48:07 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.78 2008/12/01 22:34:42 vapier Exp $ + +*kbd-1.15 (01 Dec 2008) + + 01 Dec 2008; Mike Frysinger <vapier@gentoo.org> +kbd-1.15.ebuild: + Version bump. 17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> files/kbd-1.12-debian.patch: diff --git a/sys-apps/kbd/kbd-1.15.ebuild b/sys-apps/kbd/kbd-1.15.ebuild new file mode 100644 index 000000000000..127436950964 --- /dev/null +++ b/sys-apps/kbd/kbd-1.15.ebuild @@ -0,0 +1,27 @@ +# 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.15.ebuild,v 1.1 2008/12/01 22:34:42 vapier Exp $ + +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_compile() { + econf $(use_enable nls) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog INSTALL NEWS README + dohtml doc/*.html +} |