diff options
author | Joonas Niilola <juippis@gentoo.org> | 2021-07-19 14:11:35 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-07-19 14:15:36 +0300 |
commit | eb052ba3954b1030b36348009141ee8d29eed7a6 (patch) | |
tree | 2ba58c051ca44488f07302df356db18df82c1bb2 /media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild | |
parent | dev-libs/dqlite: drop 1.7.0 (diff) | |
download | gentoo-eb052ba3954b1030b36348009141ee8d29eed7a6.tar.gz gentoo-eb052ba3954b1030b36348009141ee8d29eed7a6.tar.bz2 gentoo-eb052ba3954b1030b36348009141ee8d29eed7a6.zip |
media-gfx/ahoviewer: drop 1.6.5-r3
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild')
-rw-r--r-- | media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild b/media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild deleted file mode 100644 index bff03cef4b0c..000000000000 --- a/media-gfx/ahoviewer/ahoviewer-1.6.5-r3.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools gnome2-utils xdg-utils - -DESCRIPTION="A GTK2 image viewer, manga reader, and booru browser" -HOMEPAGE="https://github.com/ahodesuka/ahoviewer" -SRC_URI="https://github.com/ahodesuka/ahoviewer/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="gnutls gnome-keyring +gstreamer +rar +ssl +zip" - -DEPEND=" - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - dev-libs/libconfig:=[cxx] - dev-libs/libxml2:2 - dev-libs/libsigc++:2 - net-misc/curl - gnome-keyring? ( app-crypt/libsecret ) - gstreamer? ( - media-libs/gst-plugins-bad:1.0 - media-libs/gstreamer:1.0 - ) - rar? ( app-arch/unrar:= ) - ssl? ( - gnutls? ( - net-libs/gnutls:= - net-misc/curl[curl_ssl_gnutls] - ) - !gnutls? ( - >=dev-libs/openssl-1.0.0:0= - net-misc/curl[curl_ssl_openssl] - ) - ) - zip? ( dev-libs/libzip ) -" -RDEPEND=" - ${DEPEND} - gstreamer? ( - media-libs/gst-plugins-base:1.0[X] - media-libs/gst-plugins-good:1.0 - || ( - media-plugins/gst-plugins-vpx - media-plugins/gst-plugins-libav - ) - ) -" - -src_prepare() { - default - xdg_environment_reset - - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable gnome-keyring libsecret) - $(use_enable gstreamer gst) - $(use_enable rar) - $(use_enable zip) - ) - - if use ssl && use gnutls ; then - myconf+=( --disable-ssl --enable-gnutls ) - elif use ssl && ! use gnutls ; then - myconf+=( --enable-ssl --disable-gnutls ) - else - myconf+=( --disable-ssl --disable-gnutls ) - fi - - econf "${myconf[@]}" -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} |