Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/sakura/
Date: Sat, 30 Nov 2019 12:24:00
Message-Id: 1575116631.ac170f68b8430b7047884ed45d1db911e4288640.jer@gentoo
1 commit: ac170f68b8430b7047884ed45d1db911e4288640
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 30 12:23:16 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 30 12:23:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac170f68
7
8 x11-terms/sakura: Old
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-terms/sakura/sakura-3.6.0.ebuild | 66 ------------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/x11-terms/sakura/sakura-3.6.0.ebuild b/x11-terms/sakura/sakura-3.6.0.ebuild
17 deleted file mode 100644
18 index db76e0ca9c4..00000000000
19 --- a/x11-terms/sakura/sakura-3.6.0.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit cmake-utils eutils flag-o-matic gnome2-utils xdg-utils
27 -
28 -DESCRIPTION="sakura is a terminal emulator based on GTK and VTE"
29 -HOMEPAGE="http://www.pleyades.net/david/projects/sakura/"
30 -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86 ~x86-linux"
35 -
36 -RDEPEND="
37 - >=dev-libs/glib-2.20:2
38 - x11-libs/gtk+:3[X]
39 - x11-libs/libX11
40 - >x11-libs/vte-0.50:2.91
41 -"
42 -DEPEND="
43 - ${RDEPEND}
44 - >=dev-lang/perl-5.10.1
45 - virtual/pkgconfig
46 -"
47 -
48 -PATCHES=(
49 - "${FILESDIR}"/${PN}-3.1.3-flags.patch
50 -)
51 -
52 -DOCS=(
53 - AUTHORS
54 -)
55 -
56 -src_prepare() {
57 - sed -i "/FILES INSTALL/d" CMakeLists.txt || die
58 -
59 - strip-linguas -i po/
60 - local lingua
61 - for lingua in po/*.po; do
62 - lingua="${lingua/po\/}"
63 - lingua="${lingua/.po}"
64 - if ! has ${lingua} ${LINGUAS}; then
65 - rm po/${lingua}.po || die
66 - fi
67 - done
68 -
69 - cmake-utils_src_prepare
70 - # sakura.c:1740:3: warning: implicit declaration of function ‘readlink’
71 - # [-Wimplicit-function-declaration]
72 - append-cppflags -D_DEFAULT_SOURCE
73 -
74 - # sakura.c:1348:9: error: ‘for’ loop initial declarations are only allowed
75 - # in C99 or C11 mode
76 - append-cflags -std=c99
77 -}
78 -
79 -pkg_postinst() {
80 - gnome2_icon_cache_update
81 - xdg_desktop_database_update
82 -}
83 -
84 -pkg_postrm() {
85 - gnome2_icon_cache_update
86 - xdg_desktop_database_update
87 -}