Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: x11-libs/vte/
Date: Thu, 13 Sep 2018 07:38:17
Message-Id: 1536824212.47cbd0e42a7cce43403dcf24d95ce7ff5656652e.leio@gentoo
1 commit: 47cbd0e42a7cce43403dcf24d95ce7ff5656652e
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 13 07:36:52 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 13 07:36:52 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=47cbd0e4
7
8 x11-libs/vte-0.50.4: remove, 0.54 available in ::gentoo
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 x11-libs/vte/vte-0.50.4.ebuild | 90 ------------------------------------------
13 1 file changed, 90 deletions(-)
14
15 diff --git a/x11-libs/vte/vte-0.50.4.ebuild b/x11-libs/vte/vte-0.50.4.ebuild
16 deleted file mode 100644
17 index efbf0280..00000000
18 --- a/x11-libs/vte/vte-0.50.4.ebuild
19 +++ /dev/null
20 @@ -1,90 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="6"
25 -VALA_USE_DEPEND="vapigen"
26 -VALA_MIN_API_VERSION="0.32"
27 -
28 -inherit gnome2 vala
29 -
30 -DESCRIPTION="Library providing a virtual terminal emulator widget"
31 -HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE"
32 -
33 -LICENSE="LGPL-2+"
34 -SLOT="2.91"
35 -IUSE="+crypt debug glade +introspection vala vanilla"
36 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
37 -REQUIRED_USE="vala? ( introspection )"
38 -
39 -SRC_URI="${SRC_URI} !vanilla? ( https://dev.gentoo.org/~tranquility/distfiles/${PN}/${PN}-0.50.2-command-notify-scroll-speed.patch.xz )"
40 -
41 -RDEPEND="
42 - >=dev-libs/glib-2.40:2
43 - >=dev-libs/libpcre2-10.21
44 - >=x11-libs/gtk+-3.16:3[introspection?]
45 - >=x11-libs/pango-1.22.0
46 -
47 - sys-libs/ncurses:0=
48 - sys-libs/zlib
49 -
50 - crypt? ( >=net-libs/gnutls-3.2.7:0= )
51 - glade? ( >=dev-util/glade-3.9:3.10 )
52 - introspection? ( >=dev-libs/gobject-introspection-0.9.0:= )
53 -"
54 -DEPEND="${RDEPEND}
55 - dev-util/gperf
56 - dev-libs/libxml2
57 - >=dev-util/gtk-doc-am-1.13
58 - >=dev-util/intltool-0.35
59 - sys-devel/gettext
60 - virtual/pkgconfig
61 -
62 - vala? ( $(vala_depend) )
63 -"
64 -RDEPEND="${RDEPEND}
65 - !x11-libs/vte:2.90[glade]
66 -"
67 -
68 -src_prepare() {
69 - if ! use vanilla; then
70 - # First half of http://pkgs.fedoraproject.org/cgit/rpms/vte291.git/tree/vte291-command-notify-scroll-speed.patch
71 - # Adds OSC 777 support for desktop notifications in gnome-terminal or elsewhere
72 - eapply "${WORKDIR}"/${PN}-0.50.2-command-notify-scroll-speed.patch
73 - fi
74 -
75 - use vala && vala_src_prepare
76 -
77 - # build fails because of -Werror with gcc-5.x
78 - sed -e 's#-Werror=format=2#-Wformat=2#' -i configure || die "sed failed"
79 -
80 - gnome2_src_prepare
81 -}
82 -
83 -src_configure() {
84 - local myconf=""
85 -
86 - if [[ ${CHOST} == *-interix* ]]; then
87 - myconf="${myconf} --disable-Bsymbolic"
88 -
89 - # interix stropts.h is empty...
90 - export ac_cv_header_stropts_h=no
91 - fi
92 -
93 - # Python bindings are via gobject-introspection
94 - # Ex: from gi.repository import Vte
95 - gnome2_src_configure \
96 - --disable-test-application \
97 - --disable-static \
98 - --with-gtk=3.0 \
99 - $(use_enable debug) \
100 - $(use_enable glade glade-catalogue) \
101 - $(use_with crypt gnutls) \
102 - $(use_enable introspection) \
103 - $(use_enable vala) \
104 - ${myconf}
105 -}
106 -
107 -src_install() {
108 - gnome2_src_install
109 - mv "${ED}"/etc/profile.d/vte{,-${SLOT}}.sh || die
110 -}