x11-themes/tangerine-icon-theme: Port to EAPI 7
authorDavid Seifert <soap@gentoo.org>
Tue, 24 Dec 2019 11:53:25 +0000 (12:53 +0100)
committerDavid Seifert <soap@gentoo.org>
Tue, 24 Dec 2019 11:53:25 +0000 (12:53 +0100)
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
x11-themes/tangerine-icon-theme/files/tangerine-icon-theme-0.27-libexec.patch [new file with mode: 0644]
x11-themes/tangerine-icon-theme/tangerine-icon-theme-0.27.ebuild

diff --git a/x11-themes/tangerine-icon-theme/files/tangerine-icon-theme-0.27-libexec.patch b/x11-themes/tangerine-icon-theme/files/tangerine-icon-theme-0.27-libexec.patch
new file mode 100644 (file)
index 0000000..4ca0b88
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/Makefile
++++ b/Makefile
+@@ -19,7 +19,7 @@
+       # run icon-naming-utils
+       for d in $$DESTDIR/usr/share/icons/Tangerine/*; do \
+-          (cd $$d; for c in *; do /usr/lib/icon-naming-utils/icon-name-mapping -c $$c; done); \
++          (cd $$d; for c in *; do /usr/libexec/icon-name-mapping -c $$c; done); \
+       done
+       # install mo files
index 457528857ffc3ee112d53bbaa85f583986aea2cc..365c0df59781d6abfce28ba03d89967ec1ea947d 100644 (file)
@@ -1,37 +1,43 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit gnome2-utils
+EAPI=7
+
+inherit xdg
 
 DESCRIPTION="a derivative of the standard Tango theme, using a more orange approach"
 HOMEPAGE="http://packages.ubuntu.com/gutsy/x11/tangerine-icon-theme"
-SRC_URI="mirror://ubuntu/pool/universe/t/${PN}/${PN}_${PV}.tar.gz
+SRC_URI="
+       mirror://ubuntu/pool/universe/t/${PN}/${PN}_${PV}.tar.gz
        https://www.gentoo.org/images/gentoo-logo.svg"
 
 LICENSE="CC-BY-SA-2.5 LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="minimal"
-
 RESTRICT="binchecks strip"
 
-RDEPEND="!minimal? ( || ( x11-themes/adwaita-icon-theme kde-frameworks/oxygen-icons ) )"
-DEPEND="dev-util/intltool
-       >=gnome-base/librsvg-2.34
+RDEPEND="
+       !minimal? (
+               || (
+                       x11-themes/adwaita-icon-theme
+                       kde-frameworks/oxygen-icons
+               )
+       )"
+BDEPEND="
+       dev-util/intltool
+       gnome-base/librsvg
        sys-devel/gettext
-       >=x11-misc/icon-naming-utils-0.8.90"
+       x11-misc/icon-naming-utils"
 
-DOCS="AUTHORS README"
+PATCHES=( "${FILESDIR}"/${PN}-0.27-libexec.patch )
 
 src_unpack() {
        unpack ${PN}_${PV}.tar.gz
 }
 
 src_prepare() {
-       sed -i \
-               -e 's:lib/icon-naming-utils/icon:libexec/icon:' \
-               Makefile || die
+       xdg_src_prepare
 
        cp "${DISTDIR}"/gentoo-logo.svg scalable/places/start-here.svg || die
 
@@ -45,7 +51,3 @@ src_prepare() {
 src_compile() {
        emake index.theme
 }
-
-pkg_preinst() { gnome2_icon_savelist; }
-pkg_postinst() { gnome2_icon_cache_update; }
-pkg_postrm() { gnome2_icon_cache_update; }