diff options
author | Jeroen Roovers <jer@gentoo.org> | 2019-11-30 13:23:16 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2019-11-30 13:23:51 +0100 |
commit | ac170f68b8430b7047884ed45d1db911e4288640 (patch) | |
tree | f70fe73a4eaafa8c8da7cfb38d44719d67be495f /x11-terms | |
parent | x11-terms/sakura: Version 3.7.0 (diff) | |
download | gentoo-ac170f68b8430b7047884ed45d1db911e4288640.tar.gz gentoo-ac170f68b8430b7047884ed45d1db911e4288640.tar.bz2 gentoo-ac170f68b8430b7047884ed45d1db911e4288640.zip |
x11-terms/sakura: Old
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/sakura/sakura-3.6.0.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/x11-terms/sakura/sakura-3.6.0.ebuild b/x11-terms/sakura/sakura-3.6.0.ebuild deleted file mode 100644 index db76e0ca9c4c..000000000000 --- a/x11-terms/sakura/sakura-3.6.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit cmake-utils eutils flag-o-matic gnome2-utils xdg-utils - -DESCRIPTION="sakura is a terminal emulator based on GTK and VTE" -HOMEPAGE="http://www.pleyades.net/david/projects/sakura/" -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~x86-linux" - -RDEPEND=" - >=dev-libs/glib-2.20:2 - x11-libs/gtk+:3[X] - x11-libs/libX11 - >x11-libs/vte-0.50:2.91 -" -DEPEND=" - ${RDEPEND} - >=dev-lang/perl-5.10.1 - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-3.1.3-flags.patch -) - -DOCS=( - AUTHORS -) - -src_prepare() { - sed -i "/FILES INSTALL/d" CMakeLists.txt || die - - strip-linguas -i po/ - local lingua - for lingua in po/*.po; do - lingua="${lingua/po\/}" - lingua="${lingua/.po}" - if ! has ${lingua} ${LINGUAS}; then - rm po/${lingua}.po || die - fi - done - - cmake-utils_src_prepare - # sakura.c:1740:3: warning: implicit declaration of function ‘readlink’ - # [-Wimplicit-function-declaration] - append-cppflags -D_DEFAULT_SOURCE - - # sakura.c:1348:9: error: ‘for’ loop initial declarations are only allowed - # in C99 or C11 mode - append-cflags -std=c99 -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update -} |