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.5.99.902.ebuild ChangeLog
Date: Sat, 25 May 2013 20:31:12
Message-Id: 20130525203107.4108B2171D@flycatcher.gentoo.org
1 chithanh 13/05/25 20:31:07
2
3 Modified: ChangeLog
4 Added: libX11-1.5.99.902.ebuild
5 Log:
6 Version bump, security bug #471098.
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.204 x11-libs/libX11/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.204&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?rev=1.204&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/ChangeLog?r1=1.203&r2=1.204
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v
20 retrieving revision 1.203
21 retrieving revision 1.204
22 diff -u -r1.203 -r1.204
23 --- ChangeLog 25 Feb 2013 23:17:14 -0000 1.203
24 +++ ChangeLog 25 May 2013 20:31:07 -0000 1.204
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libX11
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.203 2013/02/25 23:17:14 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/ChangeLog,v 1.204 2013/05/25 20:31:07 chithanh Exp $
30 +
31 +*libX11-1.5.99.902 (25 May 2013)
32 +
33 + 25 May 2013; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +libX11-1.5.99.902.ebuild:
35 + Version bump, security bug #471098.
36
37 *libX11-1.5.0-r1 (25 Feb 2013)
38
39
40
41
42 1.1 x11-libs/libX11/libX11-1.5.99.902.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.5.99.902.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libX11/libX11-1.5.99.902.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libX11-1.5.99.902.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libX11/libX11-1.5.99.902.ebuild,v 1.1 2013/05/25 20:31:07 chithanh Exp $
52
53 EAPI=5
54
55 XORG_DOC=doc
56 # needs automake-1.13 without eautoreconf
57 XORG_EAUTORECONF=yes
58 XORG_MULTILIB=yes
59 inherit xorg-2 toolchain-funcs flag-o-matic
60
61 DESCRIPTION="X.Org X11 library"
62
63 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"
64 IUSE="ipv6 test"
65
66 RDEPEND=">=x11-libs/libxcb-1.8.1[${MULTILIB_USEDEP}]
67 x11-libs/xtrans
68 >=x11-proto/xproto-7.0.17[${MULTILIB_USEDEP}]
69 x11-proto/xf86bigfontproto[${MULTILIB_USEDEP}]
70 x11-proto/inputproto[${MULTILIB_USEDEP}]
71 x11-proto/kbproto[${MULTILIB_USEDEP}]
72 x11-proto/xextproto[${MULTILIB_USEDEP}]"
73 DEPEND="${RDEPEND}
74 test? ( dev-lang/perl )"
75
76 PATCHES=(
77 "${FILESDIR}"/${PN}-1.1.4-aix-pthread.patch
78 "${FILESDIR}"/${PN}-1.1.5-winnt-private.patch
79 "${FILESDIR}"/${PN}-1.1.5-solaris.patch
80 )
81
82 src_configure() {
83 XORG_CONFIGURE_OPTIONS=(
84 $(use_with doc xmlto)
85 $(use_enable doc specs)
86 $(use_enable ipv6)
87 --without-fop
88 )
89
90 [[ ${CHOST} == *-interix* ]] && export ac_cv_func_poll=no
91 xorg-2_src_configure
92 }
93
94 src_compile() {
95 # [Cross-Compile Love] Disable {C,LD}FLAGS and redefine CC= for 'makekeys'
96 if tc-is-cross-compiler; then
97 (
98 filter-flags -m*
99 emake -C "${AUTOTOOLS_BUILD_DIR}"/src/util CC=$(tc-getBUILD_CC) CFLAGS="${CFLAGS}" LDFLAGS="" clean all || die
100 )
101 fi
102 xorg-2_src_compile
103 }