diff options
Diffstat (limited to 'x11-libs/libxcb')
-rw-r--r-- | x11-libs/libxcb/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libxcb/libxcb-1.5.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/x11-libs/libxcb/ChangeLog b/x11-libs/libxcb/ChangeLog index 5e7f044b1ca5..cf7854341813 100644 --- a/x11-libs/libxcb/ChangeLog +++ b/x11-libs/libxcb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libxcb # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.45 2009/10/26 20:55:06 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.46 2009/12/04 10:32:29 remi Exp $ + +*libxcb-1.5 (04 Dec 2009) + + 04 Dec 2009; Rémi Cardona <remi@gentoo.org> +libxcb-1.5.ebuild: + bump to 1.5 26 Oct 2009; Jeroen Roovers <jer@gentoo.org> libxcb-1.4-r1.ebuild: Stable for HPPA (bug #282290). diff --git a/x11-libs/libxcb/libxcb-1.5.ebuild b/x11-libs/libxcb/libxcb-1.5.ebuild new file mode 100644 index 000000000000..bd7d1cdc9d82 --- /dev/null +++ b/x11-libs/libxcb/libxcb-1.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.5.ebuild,v 1.1 2009/12/04 10:32:29 remi Exp $ + +EAPI="2" + +inherit x-modular + +DESCRIPTION="X C-language Bindings library" +HOMEPAGE="http://xcb.freedesktop.org/" +EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/libxcb" +[[ ${PV} != 9999* ]] && \ + SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc selinux" + +RDEPEND="x11-libs/libXau + x11-libs/libXdmcp + dev-libs/libpthread-stubs" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + dev-libs/libxslt + >=x11-proto/xcb-proto-1.5 + >=dev-lang/python-2.5[xml]" + +pkg_setup() { + CONFIGURE_OPTIONS="$(use_enable doc build-docs) + $(use_enable selinux) + --enable-xinput" +} |