diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-09-24 15:49:12 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-09-24 15:53:31 -0400 |
commit | aa97295fd488d8ae5c7d4a74cd7b3c181eb2b9e9 (patch) | |
tree | 9cff298fb777f5e93568e323218bd341cbfee60b /app-dicts/verbiste/verbiste-0.1.41.ebuild | |
parent | dev-ml/ounit: drop old EAPI=5 (diff) | |
download | gentoo-aa97295fd488d8ae5c7d4a74cd7b3c181eb2b9e9.tar.gz gentoo-aa97295fd488d8ae5c7d4a74cd7b3c181eb2b9e9.tar.bz2 gentoo-aa97295fd488d8ae5c7d4a74cd7b3c181eb2b9e9.zip |
app-dicts/verbiste: drop old EAPI=5
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-dicts/verbiste/verbiste-0.1.41.ebuild')
-rw-r--r-- | app-dicts/verbiste/verbiste-0.1.41.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/app-dicts/verbiste/verbiste-0.1.41.ebuild b/app-dicts/verbiste/verbiste-0.1.41.ebuild deleted file mode 100644 index 4648b20ec985..000000000000 --- a/app-dicts/verbiste/verbiste-0.1.41.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit eutils gnome2-utils ltprune xdg-utils - -DESCRIPTION="French conjugation system" -HOMEPAGE="http://sarrazip.com/dev/verbiste.html" -SRC_URI="http://sarrazip.com/dev/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" - -IUSE="gtk" - -RDEPEND=" - >=dev-libs/libxml2-2.4.0:2 - gtk? ( >=x11-libs/gtk+-2.6:2 ) -" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig -" - -src_configure() { - econf \ - --with-console-app \ - --without-gnome-app \ - --without-gnome-applet \ - $(use_with gtk gtk-app) -} - -src_install() { - default - prune_libtool_files - dodoc HACKING LISEZMOI - # file is only installed with USE=gnome - if use gtk; then - sed -e 's/Exec=.*/Exec=verbiste-gtk/' \ - -i src/gnome/verbiste.desktop || die - insinto usr/share/applications - doins src/gnome/verbiste.desktop - fi -} - -pkg_preinst() { - if use gtk; then - gnome2_icon_savelist - fi -} - -pkg_postinst() { - if use gtk; then - xdg_desktop_database_update - gnome2_icon_cache_update - fi -} - -pkg_postrm() { - if use gtk; then - xdg_desktop_database_update - gnome2_icon_cache_update - fi -} |