diff options
author | 2009-09-14 16:10:44 +0000 | |
---|---|---|
committer | 2009-09-14 16:10:44 +0000 | |
commit | 17fe01f826680d8837722cbb729bc1672c58dd55 (patch) | |
tree | 556a746da3c62000e16109eaa14ab20c4e0eb3ab /x11-libs/libxcb/libxcb-1.4-r1.ebuild | |
parent | old (diff) | |
download | historical-17fe01f826680d8837722cbb729bc1672c58dd55.tar.gz historical-17fe01f826680d8837722cbb729bc1672c58dd55.tar.bz2 historical-17fe01f826680d8837722cbb729bc1672c58dd55.zip |
x11-libs/libxcb: respect ${ROOT}, fixes bug #284950
Package-Manager: portage-2.2_rc40/cvs/Linux i686
Diffstat (limited to 'x11-libs/libxcb/libxcb-1.4-r1.ebuild')
-rw-r--r-- | x11-libs/libxcb/libxcb-1.4-r1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/x11-libs/libxcb/libxcb-1.4-r1.ebuild b/x11-libs/libxcb/libxcb-1.4-r1.ebuild new file mode 100644 index 000000000000..9f52889845f8 --- /dev/null +++ b/x11-libs/libxcb/libxcb-1.4-r1.ebuild @@ -0,0 +1,62 @@ +# 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.4-r1.ebuild,v 1.1 2009/09/14 16:10:44 remi Exp $ + +EAPI="2" + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular + +DESCRIPTION="X C-language Bindings library" +HOMEPAGE="http://xcb.freedesktop.org/" +SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2" +LICENSE="X11" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~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" +} + +src_install() { + x-modular_src_install + dobin "${FILESDIR}"/xcb-rebuilder.sh || die +} + +pkg_preinst() { + x-modular_pkg_preinst + preserve_old_lib "${ROOT}"/usr/$(get_libdir)/libxcb-xlib.so.0.0.0 +} + +pkg_postinst() { + x-modular_pkg_postinst + preserve_old_lib_notify "${ROOT}"/usr/$(get_libdir)/libxcb-xlib.so.0.0.0 + + if [[ -e "${ROOT}"/usr/$(get_libdir)/libxcb-xlib.so.0.0.0 ]]; then + ewarn "libxcb-xlib.so is no longer shipped by ${PN} but was kept on your system" + ewarn + ewarn "While your system will still work, emerging new packages or updates" + ewarn "will likely fail. You can fix broken libtool .la files by running :" + ewarn + ewarn " ${FILESDIR}/xcb-rebuilder.sh" + ewarn + ewarn "To completely get rid of libxcb-xlib.so references, please read :" + ewarn "http://www.gentoo.org/proj/en/desktop/x/x11/libxcb-1.4-upgrade-guide.xml" + ebeep 5 + epause 5 + fi +} |