diff options
author | Rémi Cardona <remi@gentoo.org> | 2009-10-18 20:09:18 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2009-10-18 20:09:18 +0000 |
commit | 7a85dbc2227e538cf4aaf6771d9ed20666fa5aaa (patch) | |
tree | 86b8fe15f3ef0b047a074fc38db9e02e0d826703 /x11-libs/libX11 | |
parent | add more deps (bug #289550) (diff) | |
download | gentoo-2-7a85dbc2227e538cf4aaf6771d9ed20666fa5aaa.tar.gz gentoo-2-7a85dbc2227e538cf4aaf6771d9ed20666fa5aaa.tar.bz2 gentoo-2-7a85dbc2227e538cf4aaf6771d9ed20666fa5aaa.zip |
x11-libs/libX11: bump to 1.3.1, sync with overlay
(Portage version: 2.2_rc46/cvs/Linux i686)
Diffstat (limited to 'x11-libs/libX11')
-rw-r--r-- | x11-libs/libX11/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libX11/libX11-1.3.1.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/x11-libs/libX11/ChangeLog b/x11-libs/libX11/ChangeLog index 59748679b9ed..f6d2d25bdd54 100644 --- a/x11-libs/libX11/ChangeLog +++ b/x11-libs/libX11/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libX11 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.121 2009/10/18 20:06:51 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.122 2009/10/18 20:09:18 remi Exp $ + +*libX11-1.3.1 (18 Oct 2009) + + 18 Oct 2009; Rémi Cardona <remi@gentoo.org> +libX11-1.3.1.ebuild: + bump to 1.3.1, sync with overlay 18 Oct 2009; Rémi Cardona <remi@gentoo.org> -libX11-1.1.2-r1.ebuild, -files/libX11-1.1.2-XGetMotionEvents-order-fix.patch, diff --git a/x11-libs/libX11/libX11-1.3.1.ebuild b/x11-libs/libX11/libX11-1.3.1.ebuild new file mode 100644 index 000000000000..ada151735c13 --- /dev/null +++ b/x11-libs/libX11/libX11-1.3.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/libX11-1.3.1.ebuild,v 1.1 2009/10/18 20:09:18 remi Exp $ + +EAPI="1" + +inherit x-modular toolchain-funcs flag-o-matic + +DESCRIPTION="X.Org X11 library" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ipv6 +xcb" + +RDEPEND=">=x11-libs/xtrans-1.2.3 + x11-proto/kbproto + >=x11-proto/xproto-7.0.15 + xcb? ( >=x11-libs/libxcb-1.2 ) + !xcb? ( + x11-libs/libXau + x11-libs/libXdmcp + )" +DEPEND="${RDEPEND} + x11-proto/xf86bigfontproto + xcb? ( + x11-proto/bigreqsproto + x11-proto/xcmiscproto + ) + x11-proto/inputproto + x11-proto/xextproto" + +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable ipv6) + $(use_with xcb)" + # xorg really doesn't like xlocale disabled. + # $(use_enable nls xlocale) +} + +src_compile() { + x-modular_src_configure + # [Cross-Compile Love] Disable {C,LD}FLAGS and redefine CC= for 'makekeys' + ( filter-flags -m* ; cd src/util && make CC=$(tc-getBUILD_CC) CFLAGS="${CFLAGS}" LDFLAGS="" clean all) + x-modular_src_make +} |