diff options
author | Rémi Cardona <remi@gentoo.org> | 2009-10-06 09:45:27 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2009-10-06 09:45:27 +0000 |
commit | 51fe293847b7c8dbf9df63bbc6d97ae3b02bf4f3 (patch) | |
tree | d31991d159e47a541fca141a232567b168c04808 /x11-misc/xkeyboard-config | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-51fe293847b7c8dbf9df63bbc6d97ae3b02bf4f3.tar.gz gentoo-2-51fe293847b7c8dbf9df63bbc6d97ae3b02bf4f3.tar.bz2 gentoo-2-51fe293847b7c8dbf9df63bbc6d97ae3b02bf4f3.zip |
x11-misc/xkeyboard-config: drop old ebuilds
(Portage version: 2.2_rc43/cvs/Linux i686)
Diffstat (limited to 'x11-misc/xkeyboard-config')
-rw-r--r-- | x11-misc/xkeyboard-config/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/x11-misc/xkeyboard-config/ChangeLog b/x11-misc/xkeyboard-config/ChangeLog index f25250efbd68..e35916aefe6e 100644 --- a/x11-misc/xkeyboard-config/ChangeLog +++ b/x11-misc/xkeyboard-config/ChangeLog @@ -1,6 +1,9 @@ # 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.71 2009/10/05 15:26:57 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.72 2009/10/06 09:45:27 remi Exp $ + + 06 Oct 2009; Rémi Cardona <remi@gentoo.org> -xkeyboard-config-1.1.ebuild: + drop old ebuilds 05 Oct 2009; Christian Faulhammer <fauli@gentoo.org> xkeyboard-config-1.6.ebuild: diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild deleted file mode 100644 index 833cd98dd507..000000000000 --- a/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# 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.1.ebuild,v 1.10 2009/06/23 21:23:43 remi Exp $ - -inherit eutils multilib - -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="MIT" -SLOT="0" -IUSE="" - -RDEPEND="x11-apps/xkbcomp - !x11-misc/xkbdata" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/intltool-0.30 - dev-perl/XML-Parser" - -pkg_setup() { - # (#130590) The old XKB directory can screw stuff up - local DIR="${ROOT}usr/$(get_libdir)/X11/xkb" - if [[ -d ${DIR} ]] ; then - eerror "Directory ${DIR} should be" - eerror "manually deleted/renamed/relocated before installing!" - die "Manually remove ${DIR}" - fi - - # The old xkbdata 'pc' directory can screw stuff up, because portage won't - # let us overwrite a directory with a file - local PC="${ROOT}usr/share/X11/xkb/symbols/pc" - if [[ -d ${PC} ]] ; then - eerror "Directory ${PC} should be" - eerror "manually deleted/renamed/relocated before installing!" - die "Manually remove ${PC}" - fi -} - -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" -} |