media-gfx/feh: drop 3.11.1

Signed-off-by: Yixun Lan <dlan@gentoo.org>
This commit is contained in:
Yixun Lan 2025-11-09 08:26:51 +00:00
parent 6bb52a879b
commit 9395f0b9de
No known key found for this signature in database
GPG Key ID: 31AAEA47594DBBED
2 changed files with 0 additions and 72 deletions

View File

@ -1,3 +1,2 @@
DIST feh-3.10.3.tar.bz2 2113623 BLAKE2B 052848b222babbcb6a0d9b6c109c7a382052072c03482f47c7784e4b923fba470039d2f75db663b2d70515eb73234141c2871858825489044febea4bf1693b20 SHA512 60f29d463486eca9308037648a1b91b093051878aa2a8671166fd685ac05c217cd46ad2c7df2fde09b5f1d6cd8b3ee2b8f32fbbf6d3b2e4abc4c50b36f237977
DIST feh-3.11.1.tar.bz2 2109474 BLAKE2B ced910ad6297e1ad227e6122c95ac03d45ee93d390cf761e3ae885ba34acde087b4df2bff05fee53f5a56f05f526dd00bba9b025d1baa5c04a750af27c01877a SHA512 a8c92e27b9386152d8fa7a50f5fc22499ee2102a5546e78930b80d9a13d239df7a9dfc890ec12ae92bc9349b56559d7eb4c7d8b70710bdad2e65406815b6b3c1
DIST feh-3.11.2.tar.bz2 2110185 BLAKE2B 12fc2d5034b39dbdaf54c09f42815ac48843359f3b114f66bbdf115fc85b97a494c6c3f38d26bd047651c959b0694fc966426e80aed6c6eacdd8c7cd5a66ff91 SHA512 f24fd4fb940a6a8901eece38665b298c985e691ff3f3798bab6667ed64ea2437e505e8a4a8c0a675884ec59c6fe24ab6f9ed51f2cb6cd316aaaa30e7194dda7f

View File

@ -1,71 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs xdg-utils
DESCRIPTION="A fast, lightweight imageviewer using imlib2"
HOMEPAGE="https://feh.finalrewind.org/"
SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2"
LICENSE="feh"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
IUSE="debug curl exif test xinerama inotify"
RESTRICT="test" # Tests are broken.
COMMON_DEPEND="
media-libs/imlib2[X,text(+)]
>=media-libs/libpng-1.2:0=
x11-libs/libX11
curl? ( net-misc/curl )
exif? ( media-libs/libexif )
xinerama? ( x11-libs/libXinerama )"
RDEPEND="${COMMON_DEPEND}
media-libs/libjpeg-turbo:0"
DEPEND="${COMMON_DEPEND}
x11-base/xorg-proto
x11-libs/libXt
test? (
>=dev-lang/perl-5.10
dev-perl/Test-Command
media-libs/imlib2[gif,jpeg,png]
)"
PATCHES=( "${FILESDIR}"/${PN}-3.2-debug-cflags.patch )
pkg_setup() {
use_feh() { usex $1 1 0; }
fehopts=(
PREFIX="${EPREFIX}"/usr
doc_dir='${main_dir}'/share/doc/${PF}
example_dir='${main_dir}'/share/doc/${PF}/examples
curl=$(use_feh curl)
debug=$(use_feh debug)
xinerama=$(use_feh xinerama)
exif=$(use_feh exif)
inotify=$(use_feh inotify)
)
}
src_compile() {
tc-export CC
emake "${fehopts[@]}"
}
src_install() {
emake "${fehopts[@]}" DESTDIR="${D}" install
}
pkg_postinst() {
xdg_icon_cache_update
xdg_mimeinfo_database_update
xdg_desktop_database_update
}
pkg_postrm() {
xdg_icon_cache_update
xdg_mimeinfo_database_update
xdg_desktop_database_update
}