From: Marty E. Plummer Date: Tue, 3 Apr 2018 23:26:02 +0000 (-0500) Subject: app-editors/efte: fdo-mime xdg-utils migration X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e;p=gentoo.git app-editors/efte: fdo-mime xdg-utils migration Also bumped EAPI, removed eutils, and removed banned use of cmake-utils_use_build in EAPI=6. Package-Manager: Portage-2.3.27, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/7795 --- diff --git a/app-editors/efte/efte-1.1-r1.ebuild b/app-editors/efte/efte-1.1-r1.ebuild index 9e1f72bdfdec..b62580bce0a6 100644 --- a/app-editors/efte/efte-1.1-r1.ebuild +++ b/app-editors/efte/efte-1.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit eutils cmake-utils fdo-mime +inherit cmake-utils xdg-utils DESCRIPTION="A fast text editor supporting folding, syntax highlighting, etc." HOMEPAGE="https://github.com/lanurmi/efte" @@ -32,8 +32,8 @@ PATCHES=( src_configure() { local mycmakeargs=( - $(cmake-utils_use_build gpm) - $(cmake-utils_use_build X) + -DUSE_GPM=$(usex gpm) + -DBUILD_X=$(usex X ) ) cmake-utils_src_configure } @@ -45,9 +45,9 @@ src_install() { } pkg_postinst() { - fdo-mime_desktop_database_update + xdg_desktop_database_update } pkg_postrm() { - fdo-mime_desktop_database_update + xdg_desktop_database_update }