Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/vte/
Date: Sun, 27 Sep 2020 17:52:13
Message-Id: 1601229099.ad283183155808ee58ca8d2a09863b2a75ebebe2.asturm@gentoo
1 commit: ad283183155808ee58ca8d2a09863b2a75ebebe2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 07:27:25 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 17:51:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad283183
7
8 x11-libs/vte: Drop 0.28.2-r208
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-libs/vte/vte-0.28.2-r208.ebuild | 127 ------------------------------------
14 1 file changed, 127 deletions(-)
15
16 diff --git a/x11-libs/vte/vte-0.28.2-r208.ebuild b/x11-libs/vte/vte-0.28.2-r208.ebuild
17 deleted file mode 100644
18 index c579c5a9a8a..00000000000
19 --- a/x11-libs/vte/vte-0.28.2-r208.ebuild
20 +++ /dev/null
21 @@ -1,127 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -PYTHON_COMPAT=( python2_7 )
27 -
28 -inherit gnome2 python-r1
29 -
30 -DESCRIPTION="GNOME terminal widget"
31 -HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE"
32 -
33 -LICENSE="LGPL-2+"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
36 -IUSE="debug +introspection python"
37 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
38 -
39 -RDEPEND="
40 - >=dev-libs/glib-2.26:2
41 - >=x11-libs/gtk+-2.20:2[introspection?]
42 - >=x11-libs/pango-1.22.0
43 -
44 - sys-libs/ncurses:0=
45 - x11-libs/libX11
46 - x11-libs/libXft
47 -
48 - introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )
49 - python? (
50 - ${PYTHON_DEPS}
51 - dev-python/pygtk:2[${PYTHON_USEDEP}]
52 - )
53 -"
54 -DEPEND="${RDEPEND}
55 - dev-util/gtk-doc-am
56 - >=dev-util/intltool-0.35
57 - virtual/pkgconfig
58 - sys-devel/gettext
59 -"
60 -PDEPEND="x11-libs/gnome-pty-helper"
61 -
62 -PATCHES=(
63 - # https://bugzilla.gnome.org/show_bug.cgi?id=663779
64 - "${FILESDIR}"/${PN}-0.30.1-alt-meta.patch
65 -
66 - # https://bugzilla.gnome.org/show_bug.cgi?id=652290
67 - "${FILESDIR}"/${PN}-0.28.2-interix.patch
68 -
69 - # Fix CVE-2012-2738, upstream bug #676090
70 - "${FILESDIR}"/${PN}-0.28.2-limit-arguments.patch
71 -
72 - # Fix https://bugzilla.gnome.org/show_bug.cgi?id=542087
73 - # Patch from https://github.com/pld-linux/vte0/commit/1e8dce16b239e5d378b02e4d04a60e823df36257
74 - "${FILESDIR}"/${PN}-0.28.2-repaint-after-change-scroll-region.patch
75 -)
76 -
77 -DOCS="AUTHORS ChangeLog HACKING NEWS README"
78 -
79 -src_prepare() {
80 - prepare_python() {
81 - mkdir -p "${BUILD_DIR}" || die
82 - }
83 - if use python; then
84 - python_foreach_impl prepare_python
85 - fi
86 -
87 - gnome2_src_prepare
88 -}
89 -
90 -src_configure() {
91 - configure_python() {
92 - ECONF_SOURCE="${S}" gnome2_src_configure --enable-python
93 - }
94 -
95 - if use python; then
96 - python_foreach_impl run_in_build_dir configure_python
97 - fi
98 -
99 - local myconf=""
100 -
101 - if [[ ${CHOST} == *-interix* ]]; then
102 - myconf="${myconf} --disable-Bsymbolic"
103 -
104 - # interix stropts.h is empty...
105 - export ac_cv_header_stropts_h=no
106 - fi
107 -
108 - # Do not disable gnome-pty-helper, bug #401389
109 - gnome2_src_configure --disable-python \
110 - --disable-deprecation \
111 - --disable-glade-catalogue \
112 - --disable-static \
113 - $(use_enable debug) \
114 - $(use_enable introspection) \
115 - --with-gtk=2.0 \
116 - ${myconf}
117 -}
118 -
119 -src_compile() {
120 - gnome2_src_compile
121 -
122 - compile_python() {
123 - cd "${BUILD_DIR}"/python || die
124 - ln -s "${S}"/src/libvte.la "${BUILD_DIR}"/src/ || die
125 - mkdir -p "${BUILD_DIR}"/src/.libs || die
126 - ln -s "${S}"/src/.libs/libvte.so "${BUILD_DIR}"/src/.libs/ || die
127 - emake CPPFLAGS="${CPPFLAGS} -I${S}/src"
128 - }
129 -
130 - if use python; then
131 - python_foreach_impl run_in_build_dir compile_python
132 - fi
133 -}
134 -
135 -src_install() {
136 - gnome2_src_install
137 -
138 - install_python() {
139 - cd "${BUILD_DIR}"/python || die
140 - emake install DESTDIR="${D}" \
141 - CPPFLAGS="${CPPFLAGS} -I${S}/src"
142 - }
143 - if use python; then
144 - python_foreach_impl run_in_build_dir install_python
145 - fi
146 -
147 - rm -v "${ED}usr/libexec/gnome-pty-helper" || die
148 -}