diff options
Diffstat (limited to 'x11-libs/libxcb')
-rw-r--r-- | x11-libs/libxcb/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/libxcb/libxcb-1.4.ebuild | 62 |
2 files changed, 4 insertions, 63 deletions
diff --git a/x11-libs/libxcb/ChangeLog b/x11-libs/libxcb/ChangeLog index cb12941e4525..208580d03f59 100644 --- a/x11-libs/libxcb/ChangeLog +++ b/x11-libs/libxcb/ChangeLog @@ -1,6 +1,9 @@ # 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.37 2009/09/14 16:10:44 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.38 2009/09/17 06:11:01 remi Exp $ + + 17 Sep 2009; Rémi Cardona <remi@gentoo.org> -libxcb-1.4.ebuild: + drop old ebuilds *libxcb-1.4-r1 (14 Sep 2009) diff --git a/x11-libs/libxcb/libxcb-1.4.ebuild b/x11-libs/libxcb/libxcb-1.4.ebuild deleted file mode 100644 index 3e89d2aa9a01..000000000000 --- a/x11-libs/libxcb/libxcb-1.4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# 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.ebuild,v 1.3 2009/09/11 18:01:53 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 /usr/$(get_libdir)/libxcb-xlib.so.0.0.0 -} - -pkg_postinst() { - x-modular_pkg_postinst - preserve_old_lib_notify /usr/$(get_libdir)/libxcb-xlib.so.0.0.0 - - if [[ -e /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 -} |