Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libX11: libX11-1.4.99.1.ebuild ChangeLog
Date: Thu, 05 Jan 2012 19:09:40
Message-Id: 20120105190928.DC88C2004B@flycatcher.gentoo.org
1 chithanh 12/01/05 19:09:28
2
3 Modified: ChangeLog
4 Added: libX11-1.4.99.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.189 x11-libs/libX11/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.189&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.189&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?r1=1.188&r2=1.189
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v
20 retrieving revision 1.188
21 retrieving revision 1.189
22 diff -u -r1.188 -r1.189
23 --- ChangeLog 3 Oct 2011 18:05:18 -0000 1.188
24 +++ ChangeLog 5 Jan 2012 19:09:28 -0000 1.189
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libX11
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.188 2011/10/03 18:05:18 josejx Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.189 2012/01/05 19:09:28 chithanh Exp $
31 +
32 +*libX11-1.4.99.1 (05 Jan 2012)
33 +
34 + 05 Jan 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 + +libX11-1.4.99.1.ebuild:
36 + Version bump.
37
38 03 Oct 2011; Joseph Jezak <josejx@g.o> libX11-1.4.4.ebuild:
39 Marked ppc ppc64 stable for bug #380421.
40
41
42
43 1.1 x11-libs/libX11/libX11-1.4.99.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.4.99.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.4.99.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libX11-1.4.99.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/libX11-1.4.99.1.ebuild,v 1.1 2012/01/05 19:09:28 chithanh Exp $
53
54 EAPI=4
55
56 XORG_DOC=doc
57 inherit xorg-2 toolchain-funcs flag-o-matic
58
59 DESCRIPTION="X.Org X11 library"
60
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
62 IUSE="ipv6 test"
63
64 RDEPEND=">=x11-libs/libxcb-1.1.92
65 x11-libs/xtrans
66 >=x11-proto/xproto-7.0.17
67 x11-proto/xf86bigfontproto
68 x11-proto/inputproto
69 x11-proto/kbproto
70 x11-proto/xextproto"
71 DEPEND="${RDEPEND}
72 test? ( dev-lang/perl )"
73
74 PATCHES=(
75 "${FILESDIR}"/${PN}-1.1.4-aix-pthread.patch
76 "${FILESDIR}"/${PN}-1.1.5-winnt-private.patch
77 "${FILESDIR}"/${PN}-1.1.5-solaris.patch
78 )
79
80 pkg_setup() {
81 xorg-2_pkg_setup
82 XORG_CONFIGURE_OPTIONS=(
83 $(use_with doc xmlto)
84 $(use_enable doc specs)
85 $(use_enable ipv6)
86 --without-fop
87 )
88 }
89
90 src_configure() {
91 [[ ${CHOST} == *-interix* ]] && export ac_cv_func_poll=no
92 xorg-2_src_configure
93 }
94
95 src_compile() {
96 # [Cross-Compile Love] Disable {C,LD}FLAGS and redefine CC= for 'makekeys'
97 if tc-is-cross-compiler; then
98 (
99 filter-flags -m*
100 emake -C "${AUTOTOOLS_BUILD_DIR}"/src/util CC=$(tc-getBUILD_CC) CFLAGS="${CFLAGS}" LDFLAGS="" clean all || die
101 )
102 fi
103 xorg-2_src_compile
104 }