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/libxcb: libxcb-1.8-r1.ebuild ChangeLog
Date: Sat, 03 Mar 2012 12:19:36
Message-Id: 20120303121925.A7AEC2004B@flycatcher.gentoo.org
1 chithanh 12/03/03 12:19:25
2
3 Modified: ChangeLog
4 Added: libxcb-1.8-r1.ebuild
5 Log:
6 Add patch to fix hang on BSD and OS X, bug #405951.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.86 x11-libs/libxcb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/ChangeLog?rev=1.86&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/ChangeLog?rev=1.86&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/ChangeLog?r1=1.85&r2=1.86
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v
20 retrieving revision 1.85
21 retrieving revision 1.86
22 diff -u -r1.85 -r1.86
23 --- ChangeLog 8 Feb 2012 23:49:11 -0000 1.85
24 +++ ChangeLog 3 Mar 2012 12:19:25 -0000 1.86
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libxcb
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.85 2012/02/08 23:49:11 chithanh Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.86 2012/03/03 12:19:25 chithanh Exp $
30 +
31 +*libxcb-1.8-r1 (03 Mar 2012)
32 +
33 + 03 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +libxcb-1.8-r1.ebuild, +files/libxcb-1.8-waitall-hang.patch:
35 + Add patch to fix hang on BSD and OS X, bug #405951.
36
37 08 Feb 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
38 libxcb-1.7.ebuild, libxcb-1.8.ebuild:
39
40
41
42 1.1 x11-libs/libxcb/libxcb-1.8-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/libxcb-1.8-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxcb/libxcb-1.8-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libxcb-1.8-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.8-r1.ebuild,v 1.1 2012/03/03 12:19:25 chithanh Exp $
52
53 EAPI=3
54
55 inherit python xorg-2
56
57 DESCRIPTION="X C-language Bindings library"
58 HOMEPAGE="http://xcb.freedesktop.org/"
59 EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/libxcb"
60 [[ ${PV} != 9999* ]] && \
61 SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2"
62
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
64 IUSE="doc selinux"
65
66 RDEPEND="x11-libs/libXau
67 x11-libs/libXdmcp
68 dev-libs/libpthread-stubs"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )
71 dev-libs/libxslt
72 =dev-lang/python-2*[xml]
73 >=x11-proto/xcb-proto-1.7"
74
75 PATCHES=(
76 "${FILESDIR}"/${PN}-1.8-waitall-hang.patch
77 )
78
79 pkg_setup() {
80 python_set_active_version 2
81 xorg-2_pkg_setup
82 XORG_CONFIGURE_OPTIONS=(
83 $(use_enable doc build-docs)
84 $(use_enable selinux)
85 --enable-xinput
86 )
87 }