diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2012-03-10 00:10:29 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2012-03-10 00:10:29 +0000 |
commit | e04c92475fd281c909a3e7582dc4d798e717ec95 (patch) | |
tree | 1884a6bbee9ca2d0a55afcad86b827c93463c433 /x11-libs/libxcb | |
parent | Add support for colorhug device (diff) | |
download | gentoo-2-e04c92475fd281c909a3e7582dc4d798e717ec95.tar.gz gentoo-2-e04c92475fd281c909a3e7582dc4d798e717ec95.tar.bz2 gentoo-2-e04c92475fd281c909a3e7582dc4d798e717ec95.zip |
Version bump.
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/libxcb')
-rw-r--r-- | x11-libs/libxcb/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libxcb/libxcb-1.8.1.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-libs/libxcb/ChangeLog b/x11-libs/libxcb/ChangeLog index 3dfef0178896..19abdbfc9c52 100644 --- a/x11-libs/libxcb/ChangeLog +++ b/x11-libs/libxcb/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/libxcb # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.86 2012/03/03 12:19:25 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.87 2012/03/10 00:10:29 chithanh Exp $ + +*libxcb-1.8.1 (10 Mar 2012) + + 10 Mar 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +libxcb-1.8.1.ebuild: + Version bump. *libxcb-1.8-r1 (03 Mar 2012) diff --git a/x11-libs/libxcb/libxcb-1.8.1.ebuild b/x11-libs/libxcb/libxcb-1.8.1.ebuild new file mode 100644 index 000000000000..ac8ac1074918 --- /dev/null +++ b/x11-libs/libxcb/libxcb-1.8.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.8.1.ebuild,v 1.1 2012/03/10 00:10:29 chithanh Exp $ + +EAPI=4 + +XORG_DOC=doc +inherit python xorg-2 + +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 ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="selinux" + +RDEPEND="dev-libs/libpthread-stubs + x11-libs/libXau + x11-libs/libXdmcp" +DEPEND="${RDEPEND} + dev-libs/libxslt + >=x11-proto/xcb-proto-1.7-r1" + +pkg_setup() { + xorg-2_pkg_setup + XORG_CONFIGURE_OPTIONS=( + $(use_enable doc build-docs) + $(use_enable selinux) + --enable-xinput + ) +} |