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.6.0.ebuild ChangeLog libX11-1.5.99.902.ebuild
Date: Tue, 04 Jun 2013 12:50:57
Message-Id: 20130604125051.9F9452171D@flycatcher.gentoo.org
1 chithanh 13/06/04 12:50:51
2
3 Modified: ChangeLog
4 Added: libX11-1.6.0.ebuild
5 Removed: libX11-1.5.99.902.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.1.11.62/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.205 x11-libs/libX11/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.205&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.205&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?r1=1.204&r2=1.205
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v
21 retrieving revision 1.204
22 retrieving revision 1.205
23 diff -u -r1.204 -r1.205
24 --- ChangeLog 25 May 2013 20:31:07 -0000 1.204
25 +++ ChangeLog 4 Jun 2013 12:50:51 -0000 1.205
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/libX11
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.204 2013/05/25 20:31:07 chithanh Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.205 2013/06/04 12:50:51 chithanh Exp $
31 +
32 +*libX11-1.6.0 (04 Jun 2013)
33 +
34 + 04 Jun 2013; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 + +libX11-1.6.0.ebuild, -libX11-1.5.99.902.ebuild:
36 + Version bump.
37
38 *libX11-1.5.99.902 (25 May 2013)
39
40
41
42
43 1.1 x11-libs/libX11/libX11-1.6.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.6.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.6.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libX11-1.6.0.ebuild
49 ===================================================================
50 # Copyright 1999-2013 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.6.0.ebuild,v 1.1 2013/06/04 12:50:51 chithanh Exp $
53
54 EAPI=5
55
56 XORG_DOC=doc
57 # needs automake-1.13 without eautoreconf
58 XORG_EAUTORECONF=yes
59 XORG_MULTILIB=yes
60 inherit xorg-2 toolchain-funcs flag-o-matic
61
62 DESCRIPTION="X.Org X11 library"
63
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
65 IUSE="ipv6 test"
66
67 RDEPEND=">=x11-libs/libxcb-1.8.1[${MULTILIB_USEDEP}]
68 x11-libs/xtrans
69 >=x11-proto/xproto-7.0.17[${MULTILIB_USEDEP}]
70 x11-proto/xf86bigfontproto[${MULTILIB_USEDEP}]
71 x11-proto/inputproto[${MULTILIB_USEDEP}]
72 x11-proto/kbproto[${MULTILIB_USEDEP}]
73 x11-proto/xextproto[${MULTILIB_USEDEP}]"
74 DEPEND="${RDEPEND}
75 test? ( dev-lang/perl )"
76
77 PATCHES=(
78 "${FILESDIR}"/${PN}-1.1.4-aix-pthread.patch
79 "${FILESDIR}"/${PN}-1.1.5-winnt-private.patch
80 "${FILESDIR}"/${PN}-1.1.5-solaris.patch
81 )
82
83 src_configure() {
84 XORG_CONFIGURE_OPTIONS=(
85 $(use_with doc xmlto)
86 $(use_enable doc specs)
87 $(use_enable ipv6)
88 --without-fop
89 )
90
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 }