diff options
author | Rémi Cardona <remi@gentoo.org> | 2009-06-13 11:23:39 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2009-06-13 11:23:39 +0000 |
commit | 2ba1709c11699bc609f05168c332649afcc4c8cb (patch) | |
tree | eaae1ae2d81667453065ffc9625af70c513198a8 /x11-misc/xkeyboard-config | |
parent | Mask dev-ruby/freeride (diff) | |
download | gentoo-2-2ba1709c11699bc609f05168c332649afcc4c8cb.tar.gz gentoo-2-2ba1709c11699bc609f05168c332649afcc4c8cb.tar.bz2 gentoo-2-2ba1709c11699bc609f05168c332649afcc4c8cb.zip |
x11-misc/xkeyboard-config: bump to 1.6
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'x11-misc/xkeyboard-config')
-rw-r--r-- | x11-misc/xkeyboard-config/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xkeyboard-config/xkeyboard-config-1.6.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/x11-misc/xkeyboard-config/ChangeLog b/x11-misc/xkeyboard-config/ChangeLog index cda99885c123..63ed20c43441 100644 --- a/x11-misc/xkeyboard-config/ChangeLog +++ b/x11-misc/xkeyboard-config/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xkeyboard-config # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.63 2009/05/15 15:15:34 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.64 2009/06/13 11:23:39 remi Exp $ + +*xkeyboard-config-1.6 (13 Jun 2009) + + 13 Jun 2009; Rémi Cardona <remi@gentoo.org> +xkeyboard-config-1.6.ebuild: + bump to 1.6 15 May 2009; Raúl Porcel <armin76@gentoo.org> xkeyboard-config-1.5.ebuild: diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-1.6.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-1.6.ebuild new file mode 100644 index 000000000000..8a04c68b21f5 --- /dev/null +++ b/x11-misc/xkeyboard-config/xkeyboard-config-1.6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.6.ebuild,v 1.1 2009/06/13 11:23:39 remi Exp $ + +inherit eutils + +DESCRIPTION="X keyboard configuration database" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig" +SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2" + +LICENSE="xkeyboard-config" +SLOT="0" + +IUSE="" +RDEPEND="" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.30 + dev-perl/XML-Parser + x11-apps/xkbcomp" + +src_compile() { + econf \ + --with-xkb-base=/usr/share/X11/xkb \ + --enable-compat-rules \ + --disable-xkbcomp-symlink \ + --with-xkb-rules-symlink=xorg \ + || die "configure failed" + + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc ChangeLog NEWS README +} |