diff options
author | Marty E. Plummer <hanetzer@startmail.com> | 2018-04-03 18:26:02 -0500 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-04-05 16:12:08 +0200 |
commit | bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e (patch) | |
tree | 9b95e377a89774c4d17d8f4a4125b6df59defd74 /app-editors | |
parent | dev-perl/Crypt-DES: amd64 stable (diff) | |
download | gentoo-bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e.tar.gz gentoo-bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e.tar.bz2 gentoo-bf0386b8aa5ff1d328b9c85fb0484dd7f4759d1e.zip |
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
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/efte/efte-1.1-r1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
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 } |