diff options
author | 2013-02-25 23:08:40 +0000 | |
---|---|---|
committer | 2013-02-25 23:08:40 +0000 | |
commit | 2e78a2b32b51cf16199e7cc6382a84111d60e489 (patch) | |
tree | ac3e3f95da3666532298a37e0e09b6fa6da5e71d /x11-proto/xcb-proto | |
parent | Clean up old revisions. (diff) | |
download | gentoo-2-2e78a2b32b51cf16199e7cc6382a84111d60e489.tar.gz gentoo-2-2e78a2b32b51cf16199e7cc6382a84111d60e489.tar.bz2 gentoo-2-2e78a2b32b51cf16199e7cc6382a84111d60e489.zip |
Enable multilib.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
Diffstat (limited to 'x11-proto/xcb-proto')
-rw-r--r-- | x11-proto/xcb-proto/ChangeLog | 7 | ||||
-rw-r--r-- | x11-proto/xcb-proto/xcb-proto-1.8-r1.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/x11-proto/xcb-proto/ChangeLog b/x11-proto/xcb-proto/ChangeLog index 7e18e696f4ef..7df99881656f 100644 --- a/x11-proto/xcb-proto/ChangeLog +++ b/x11-proto/xcb-proto/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-proto/xcb-proto # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.94 2013/02/21 18:22:28 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.95 2013/02/25 23:08:40 mgorny Exp $ + +*xcb-proto-1.8-r1 (25 Feb 2013) + + 25 Feb 2013; Michał Górny <mgorny@gentoo.org> +xcb-proto-1.8-r1.ebuild: + Enable multilib. 21 Feb 2013; Zac Medico <zmedico@gentoo.org> xcb-proto-1.8.ebuild: Add ~arm-linux keyword. diff --git a/x11-proto/xcb-proto/xcb-proto-1.8-r1.ebuild b/x11-proto/xcb-proto/xcb-proto-1.8-r1.ebuild new file mode 100644 index 000000000000..d7fe60009fe3 --- /dev/null +++ b/x11-proto/xcb-proto/xcb-proto-1.8-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.8-r1.ebuild,v 1.1 2013/02/25 23:08:40 mgorny Exp $ + +EAPI=5 + +PYTHON_DEPEND="*" +XORG_MULTILIB=yes +inherit python xorg-2 + +DESCRIPTION="X C-language Bindings protocol headers" +HOMEPAGE="http://xcb.freedesktop.org/" +EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/proto" +[[ ${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 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-libs/libxml2" + +src_prepare() { + python_clean_py-compile_files + xorg-2_src_prepare +} + +pkg_postinst() { + python_mod_optimize xcbgen + ewarn "Please rebuild both libxcb and xcb-util if you are upgrading from version 1.6" +} + +pkg_postrm() { + python_mod_cleanup xcbgen +} |