diff options
author | 2006-06-30 04:42:41 +0000 | |
---|---|---|
committer | 2006-06-30 04:42:41 +0000 | |
commit | f7bab75fdf7f4316693d07f9a1739c3da7f4c978 (patch) | |
tree | 914ea0ea07a3c9637099f66f140b3dea79cce55f /x11-libs/libX11 | |
parent | Bump for security fix. (diff) | |
download | gentoo-2-f7bab75fdf7f4316693d07f9a1739c3da7f4c978.tar.gz gentoo-2-f7bab75fdf7f4316693d07f9a1739c3da7f4c978.tar.bz2 gentoo-2-f7bab75fdf7f4316693d07f9a1739c3da7f4c978.zip |
Bump. 1.0.2 missed one of the setuid fixes, and this also fixes the Compose cache.
(Portage version: 2.1.1_pre1-r5)
Diffstat (limited to 'x11-libs/libX11')
-rw-r--r-- | x11-libs/libX11/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/libX11/files/digest-libX11-1.0.3 | 3 | ||||
-rw-r--r-- | x11-libs/libX11/libX11-1.0.3.ebuild | 37 |
3 files changed, 48 insertions, 1 deletions
diff --git a/x11-libs/libX11/ChangeLog b/x11-libs/libX11/ChangeLog index f154d2851082..cf1fc314d79f 100644 --- a/x11-libs/libX11/ChangeLog +++ b/x11-libs/libX11/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/libX11 # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.36 2006/06/23 13:47:48 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.37 2006/06/30 04:42:41 spyderous Exp $ + +*libX11-1.0.3 (30 Jun 2006) + + 30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; -libX11-1.0.2.ebuild, + +libX11-1.0.3.ebuild: + Bump. 1.0.2 missed one of the setuid fixes, and this also fixes the Compose + cache. 23 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; libX11-1.0.1-r1.ebuild, libX11-1.0.2.ebuild: diff --git a/x11-libs/libX11/files/digest-libX11-1.0.3 b/x11-libs/libX11/files/digest-libX11-1.0.3 new file mode 100644 index 000000000000..12c8959efbd3 --- /dev/null +++ b/x11-libs/libX11/files/digest-libX11-1.0.3 @@ -0,0 +1,3 @@ +MD5 60b787a812c92d33f71860e4e19cb59d libX11-1.0.3.tar.bz2 1449835 +RMD160 285a878a8ec9ecbd86e67897ca15ce96c994f38a libX11-1.0.3.tar.bz2 1449835 +SHA256 fb42f2400c3709a0c2c17f27cc4a902c191ebd6228c70698891bf3a13ea5b3ac libX11-1.0.3.tar.bz2 1449835 diff --git a/x11-libs/libX11/libX11-1.0.3.ebuild b/x11-libs/libX11/libX11-1.0.3.ebuild new file mode 100644 index 000000000000..d527bc801deb --- /dev/null +++ b/x11-libs/libX11/libX11-1.0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/libX11-1.0.3.ebuild,v 1.1 2006/06/30 04:42:41 spyderous Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular + +DESCRIPTION="X.Org X11 library" +RESTRICT="mirror" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ipv6" +RDEPEND=">=x11-libs/xtrans-1.0.1 + x11-libs/libXau + x11-libs/libXdmcp + x11-proto/kbproto + x11-proto/inputproto + >=x11-proto/xproto-7.0.6" +DEPEND="${RDEPEND} + x11-proto/xf86bigfontproto + x11-proto/bigreqsproto + x11-proto/xextproto + x11-proto/xcmiscproto + >=x11-misc/util-macros-0.99.0_p20051007" + +CONFIGURE_OPTIONS="$(use_enable ipv6)" +# xorg really doesn't like xlocale disabled. +# $(use_enable nls xlocale) + +src_install() { + x-modular_src_install + + local ENVD="10libx11" + echo "LDPATH=\"/usr/lib\"" > ${T}/${ENVD} + doenvd ${T}/${ENVD} +} |