diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-11 14:03:20 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-11 14:03:20 +0300 |
commit | 6e8898dbfbb6247cf375c5e0d6a0cfef4a6e6e1a (patch) | |
tree | b24ded4ed7d81b64d1e6724f66dbb9e393209ee1 /media-gfx | |
parent | sys-process/cronutils: drop 1.9, EAPI6-- (diff) | |
download | gentoo-6e8898dbfbb6247cf375c5e0d6a0cfef4a6e6e1a.tar.gz gentoo-6e8898dbfbb6247cf375c5e0d6a0cfef4a6e6e1a.tar.bz2 gentoo-6e8898dbfbb6247cf375c5e0d6a0cfef4a6e6e1a.zip |
media-gfx/pqiv: drop 2.11, EAPI6--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/pqiv/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/pqiv/pqiv-2.11.ebuild | 76 |
2 files changed, 0 insertions, 77 deletions
diff --git a/media-gfx/pqiv/Manifest b/media-gfx/pqiv/Manifest index f33f0d89e3ec..014fe35dcaad 100644 --- a/media-gfx/pqiv/Manifest +++ b/media-gfx/pqiv/Manifest @@ -1,2 +1 @@ -DIST pqiv-2.11.tar.gz 139825 BLAKE2B 981d472ccd3284b2e9ad3da8e84233c95555a927af797f8421ac820225d3d39cab2275f01269a986bab54994e0fce2095b7c33b1201e7a6117e1c8399617341b SHA512 6017a9d7ed332915a9f6fa788bb02c3b9d4d83c2ae2f9a8ab7d7738caa14ba3e9d253906f2e73fdfd368bb5e7bc51380ee9906fd9921e5f7f113811fd3da66f7 DIST pqiv-2.12.tar.gz 141927 BLAKE2B b33f14c78422dc53f9d97eb6277da0ad51ae5d9ecd60497a879ab6057206c7cd695d6242e76f33856467c7821beac3e6d13ea3dda7aa4d4142e7682384ee8d63 SHA512 f921d7949c9d229536188e9652cc687dcc55127875f329d0a64e6e2a55ea1a6827c0df6925685ae923ba1a000fbf2d2dc1dd825e67a12815a49b2cb703ea2e2f diff --git a/media-gfx/pqiv/pqiv-2.11.ebuild b/media-gfx/pqiv/pqiv-2.11.ebuild deleted file mode 100644 index 01218b6f6df9..000000000000 --- a/media-gfx/pqiv/pqiv-2.11.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit linux-info toolchain-funcs xdg-utils - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/phillipberndt/pqiv.git" - inherit git-r3 -else - SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 ~riscv x86" -fi - -DESCRIPTION="powerful GTK 3 based command-line image viewer with a minimal UI" -HOMEPAGE="https://github.com/phillipberndt/pqiv http://www.pberndt.com/Programme/Linux/pqiv/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="archive ffmpeg imagemagick pdf postscript webp" - -RDEPEND=" - >=dev-libs/glib-2.32:2 - >=x11-libs/cairo-1.6 - x11-libs/gtk+:3 - archive? ( app-arch/libarchive:0= ) - ffmpeg? ( media-video/ffmpeg:0= ) - imagemagick? ( media-gfx/imagemagick:0= ) - pdf? ( app-text/poppler:0= ) - postscript? ( app-text/libspectre:0= ) - webp? ( media-libs/libwebp:0= ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -doecho() { - echo "$@" - "$@" || die -} - -pkg_setup() { - if use kernel_linux; then - CONFIG_CHECK="~INOTIFY_USER" - linux-info_pkg_setup - fi -} - -src_configure() { - local backends="gdkpixbuf" - use archive && backends+=",archive,archive_cbx" - use ffmpeg && backends+=",libav" - use imagemagick && backends+=",wand" - use pdf && backends+=",poppler" - use postscript && backends+=",spectre" - use webp && backends+=",webp" - - doecho ./configure \ - --backends-build=shared \ - --backends=${backends} \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --destdir="${ED}" -} - -src_compile() { - tc-export CC - emake VERBOSE=1 CFLAGS="${CFLAGS}" -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -} |