media-gfx/pqiv: defang X11 automagic

Relevant imports appear to be remains of long-fixed bug[1][2], package
works on xwayland perfectly even with this patch and USE=-X,
or with GDK_BACKEND=wayland set

[1]4355bc2827
[2]afcdb6fb00

Remove passing environmental variables to Make - configure picks up
CFLAGS automatically and passes them to build system, and Makefile respects
CPPFLAGS

Bug: https://bugs.gentoo.org/957685
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Part-of: https://github.com/gentoo/gentoo/pull/44739
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
NHOrus 2025-11-23 13:54:40 +03:00 committed by Sam James
parent 47a73a9de1
commit ccefbde8ba
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 18 additions and 15 deletions

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors # Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
inherit edo linux-info toolchain-funcs xdg inherit edo flag-o-matic linux-info toolchain-funcs xdg
DESCRIPTION="A powerful GTK 3 based command-line image viewer with a minimal UI" DESCRIPTION="A powerful GTK 3 based command-line image viewer with a minimal UI"
HOMEPAGE="https://github.com/phillipberndt/pqiv https://www.pberndt.com/Programme/Linux/pqiv/" HOMEPAGE="https://github.com/phillipberndt/pqiv https://www.pberndt.com/Programme/Linux/pqiv/"
@ -12,14 +12,15 @@ SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+" LICENSE="GPL-3+"
SLOT="0" SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~riscv x86" KEYWORDS="amd64 ~arm arm64 ~riscv x86"
IUSE="archive ffmpeg imagemagick pdf postscript webp" IUSE="archive ffmpeg imagemagick pdf postscript webp X"
RDEPEND=" RDEPEND="
>=dev-libs/glib-2.32:2 >=dev-libs/glib-2.32:2
>=x11-libs/cairo-1.6 >=x11-libs/cairo-1.6
>=x11-libs/gdk-pixbuf-2.2:2 >=x11-libs/gdk-pixbuf-2.2:2
x11-libs/gtk+:3 x11-libs/gtk+:3[X?]
>=x11-libs/pango-1.10 >=x11-libs/pango-1.10
X? ( x11-libs/libX11 )
archive? ( app-arch/libarchive:0= ) archive? ( app-arch/libarchive:0= )
ffmpeg? ( media-video/ffmpeg:0= ) ffmpeg? ( media-video/ffmpeg:0= )
imagemagick? ( media-gfx/imagemagick:0= ) imagemagick? ( media-gfx/imagemagick:0= )
@ -38,15 +39,16 @@ pkg_setup() {
} }
src_configure() { src_configure() {
use X || append-cppflags -DGENTOO_GTK_HIDE_X11
local backends=( local backends=(
"gdkpixbuf" "gdkpixbuf"
$(usex archive "archive" "") $(usev archive "archive")
$(usex archive "archive_cbx" "") $(usev archive "archive_cbx")
$(usex ffmpeg "libav" "") $(usev ffmpeg "libav")
$(usex imagemagick "wand" "") $(usev imagemagick "wand")
$(usex pdf "poppler" "") $(usev pdf "poppler")
$(usex postscript "spectre" "") $(usev postscript "spectre")
$(usex webp "webp" "") $(usev webp "webp")
) )
local myconf=( local myconf=(
--backends-build=shared --backends-build=shared
@ -59,5 +61,5 @@ src_configure() {
src_compile() { src_compile() {
tc-export CC tc-export CC
emake VERBOSE=1 CFLAGS="${CFLAGS}" emake VERBOSE=1
} }

View File

@ -12,13 +12,13 @@ SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+" LICENSE="GPL-3+"
SLOT="0" SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
IUSE="archive ffmpeg imagemagick pdf postscript webp" IUSE="archive ffmpeg imagemagick pdf postscript webp X"
RDEPEND=" RDEPEND="
>=dev-libs/glib-2.32:2 >=dev-libs/glib-2.32:2
>=x11-libs/cairo-1.6 >=x11-libs/cairo-1.6
>=x11-libs/gdk-pixbuf-2.2:2 >=x11-libs/gdk-pixbuf-2.2:2
x11-libs/gtk+:3 x11-libs/gtk+:3[X?]
>=x11-libs/pango-1.10 >=x11-libs/pango-1.10
X? ( x11-libs/libX11 ) X? ( x11-libs/libX11 )
archive? ( app-arch/libarchive:0= ) archive? ( app-arch/libarchive:0= )
@ -41,6 +41,7 @@ pkg_setup() {
} }
src_configure() { src_configure() {
use X || append-cppflags -DGENTOO_GTK_HIDE_X11
local backends=( local backends=(
"gdkpixbuf" "gdkpixbuf"
$(usev archive "archive") $(usev archive "archive")
@ -62,5 +63,5 @@ src_configure() {
src_compile() { src_compile() {
tc-export CC tc-export CC
emake VERBOSE=1 CFLAGS="${CFLAGS}" emake VERBOSE=1
} }