diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-06-06 14:29:23 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-06-06 14:29:23 +0000 |
commit | 71218d721e081b4e82168cbc427c14f4e98c1578 (patch) | |
tree | c7de368880a27d0dda8ac4e09ff569a7e12776e9 /x11-libs/vte | |
parent | Re-add old version, correctly fix bug #551132 (diff) | |
download | gentoo-2-71218d721e081b4e82168cbc427c14f4e98c1578.tar.gz gentoo-2-71218d721e081b4e82168cbc427c14f4e98c1578.tar.bz2 gentoo-2-71218d721e081b4e82168cbc427c14f4e98c1578.zip |
Drop obsolete glade support (#551294)
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs/vte')
-rw-r--r-- | x11-libs/vte/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/vte/vte-0.28.2-r207.ebuild | 122 | ||||
-rw-r--r-- | x11-libs/vte/vte-0.36.4.ebuild | 5 |
3 files changed, 132 insertions, 3 deletions
diff --git a/x11-libs/vte/ChangeLog b/x11-libs/vte/ChangeLog index 9cbe8318a42d..da1d2400c453 100644 --- a/x11-libs/vte/ChangeLog +++ b/x11-libs/vte/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/vte # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.409 2015/05/17 09:20:04 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.410 2015/06/06 14:29:23 pacho Exp $ + +*vte-0.28.2-r207 (06 Jun 2015) + + 06 Jun 2015; Pacho Ramos <pacho@gentoo.org> +vte-0.28.2-r207.ebuild, + vte-0.36.4.ebuild: + Drop obsolete glade support (#551294) *vte-0.36.4 (17 May 2015) diff --git a/x11-libs/vte/vte-0.28.2-r207.ebuild b/x11-libs/vte/vte-0.28.2-r207.ebuild new file mode 100644 index 000000000000..beff7b3b9e01 --- /dev/null +++ b/x11-libs/vte/vte-0.28.2-r207.ebuild @@ -0,0 +1,122 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.28.2-r207.ebuild,v 1.1 2015/06/06 14:29:23 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +PYTHON_COMPAT=( python2_7 ) + +inherit eutils gnome2 python-r1 + +DESCRIPTION="GNOME terminal widget" +HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris" +IUSE="debug +introspection python" + +RDEPEND=" + >=dev-libs/glib-2.26:2 + >=x11-libs/gtk+-2.20:2[introspection?] + >=x11-libs/pango-1.22.0 + + sys-libs/ncurses + x11-libs/libX11 + x11-libs/libXft + + introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) + python? ( + ${PYTHON_DEPS} + dev-python/pygtk:2[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + >=dev-util/intltool-0.35 + virtual/pkgconfig + sys-devel/gettext +" +PDEPEND="x11-libs/gnome-pty-helper" + +src_prepare() { + DOCS="AUTHORS ChangeLog HACKING NEWS README" + + # https://bugzilla.gnome.org/show_bug.cgi?id=663779 + epatch "${FILESDIR}/${PN}-0.30.1-alt-meta.patch" + + # https://bugzilla.gnome.org/show_bug.cgi?id=652290 + epatch "${FILESDIR}"/${PN}-0.28.2-interix.patch + + # Fix CVE-2012-2738, upstream bug #676090 + epatch "${FILESDIR}"/${PN}-0.28.2-limit-arguments.patch + + prepare_python() { + mkdir -p "${BUILD_DIR}" || die + } + if use python; then + python_foreach_impl prepare_python + fi + + gnome2_src_prepare +} + +src_configure() { + configure_python() { + ECONF_SOURCE="${S}" gnome2_src_configure --enable-python + } + + if use python; then + python_foreach_impl run_in_build_dir configure_python + fi + + local myconf="" + + if [[ ${CHOST} == *-interix* ]]; then + myconf="${myconf} --disable-Bsymbolic" + + # interix stropts.h is empty... + export ac_cv_header_stropts_h=no + fi + + # Do not disable gnome-pty-helper, bug #401389 + gnome2_src_configure --disable-python \ + --disable-deprecation \ + --disable-glade-catalogue \ + --disable-static \ + $(use_enable debug) \ + $(use_enable introspection) \ + --with-gtk=2.0 \ + ${myconf} +} + +src_compile() { + gnome2_src_compile + + compile_python() { + cd "${BUILD_DIR}"/python || die + ln -s "${S}"/src/libvte.la "${BUILD_DIR}"/src/ || die + mkdir -p "${BUILD_DIR}"/src/.libs || die + ln -s "${S}"/src/.libs/libvte.so "${BUILD_DIR}"/src/.libs/ || die + emake CPPFLAGS="${CPPFLAGS} -I${S}/src" + } + + if use python; then + python_foreach_impl run_in_build_dir compile_python + fi +} + +src_install() { + gnome2_src_install + + install_python() { + cd "${BUILD_DIR}"/python || die + emake install DESTDIR="${D}" \ + CPPFLAGS="${CPPFLAGS} -I${S}/src" + } + if use python; then + python_foreach_impl run_in_build_dir install_python + fi + + rm -v "${ED}usr/libexec/gnome-pty-helper" || die +} diff --git a/x11-libs/vte/vte-0.36.4.ebuild b/x11-libs/vte/vte-0.36.4.ebuild index f6644a92d30f..95ec5fa60073 100644 --- a/x11-libs/vte/vte-0.36.4.ebuild +++ b/x11-libs/vte/vte-0.36.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.36.4.ebuild,v 1.1 2015/05/17 09:20:04 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.36.4.ebuild,v 1.2 2015/06/06 14:29:23 pacho Exp $ EAPI="5" GCONF_DEBUG="no" @@ -59,7 +59,8 @@ src_configure() { --disable-static \ $(use_enable debug) \ $(use_enable glade glade-catalogue) \ - $(use_enable introspection) + $(use_enable introspection) \ + ${myconf} } src_install() { |