diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-20 21:51:00 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-20 21:51:00 +0000 |
commit | f5e10a9568abbea0dda0bd509f670edf359f29c1 (patch) | |
tree | 32364e2ea42ced7e3ea11acf70ce3f49b66607b5 /x11-misc/xkbdata | |
parent | Bump to 1.5.0 (from 1.4.0-r2) (diff) | |
download | gentoo-2-f5e10a9568abbea0dda0bd509f670edf359f29c1.tar.gz gentoo-2-f5e10a9568abbea0dda0bd509f670edf359f29c1.tar.bz2 gentoo-2-f5e10a9568abbea0dda0bd509f670edf359f29c1.zip |
We're installing to /usr/share, not /usr/lib. Change symlink origins, and install an env.d file to CONFIG_PROTECT it.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'x11-misc/xkbdata')
-rw-r--r-- | x11-misc/xkbdata/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xkbdata/files/digest-xkbdata-0.99.1-r1 | 1 | ||||
-rw-r--r-- | x11-misc/xkbdata/xkbdata-0.99.1-r1.ebuild | 21 |
3 files changed, 30 insertions, 1 deletions
diff --git a/x11-misc/xkbdata/ChangeLog b/x11-misc/xkbdata/ChangeLog index e9534c54843d..8aec3deb521b 100644 --- a/x11-misc/xkbdata/ChangeLog +++ b/x11-misc/xkbdata/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/xkbdata # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbdata/ChangeLog,v 1.9 2005/10/20 06:20:54 joshuabaergen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbdata/ChangeLog,v 1.10 2005/10/20 21:51:00 spyderous Exp $ + +*xkbdata-0.99.1-r1 (20 Oct 2005) + + 20 Oct 2005; Donnie Berkholz <spyderous@gentoo.org>; + +xkbdata-0.99.1-r1.ebuild: + We're installing to /usr/share, not /usr/lib. Change symlink origins, and + install an env.d file to CONFIG_PROTECT it. *xkbdata-0.99.1 (20 Oct 2005) diff --git a/x11-misc/xkbdata/files/digest-xkbdata-0.99.1-r1 b/x11-misc/xkbdata/files/digest-xkbdata-0.99.1-r1 new file mode 100644 index 000000000000..dad556b042fe --- /dev/null +++ b/x11-misc/xkbdata/files/digest-xkbdata-0.99.1-r1 @@ -0,0 +1 @@ +MD5 ea8b66b888f15f7f0feea994c867558b xkbdata-0.99.1.tar.bz2 279120 diff --git a/x11-misc/xkbdata/xkbdata-0.99.1-r1.ebuild b/x11-misc/xkbdata/xkbdata-0.99.1-r1.ebuild new file mode 100644 index 000000000000..f3d6dedbd36f --- /dev/null +++ b/x11-misc/xkbdata/xkbdata-0.99.1-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkbdata/xkbdata-0.99.1-r1.ebuild,v 1.1 2005/10/20 21:51:00 spyderous Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular multilib + +DESCRIPTION="X.Org xkbdata data" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~s390 ~sh ~sparc ~x86" +RDEPEND="x11-apps/xkbcomp" +DEPEND="${RDEPEND}" + +src_install() { + x-modular_src_install + keepdir /var/lib/xkb + dosym ../../../../var/lib/xkb /usr/share/X11/xkb/compiled + echo "CONFIG_PROTECT=\"/usr/share/X11/xkb\"" > ${T}/10xkbdata + doenvd ${T}/10xkbdata +} |