Files
Martin Jansa 565d6eaac1 gpicview: enable gtk3 PACKAGECONFIG only when gtk+3 is available and depend on libx11
* add dependency on libx11 and require x11
* x11 doesn't seem to be optional:
  https://github.com/lxde/gpicview/blob/master/configure.ac#L57

| checking pkg-config is at least version 0.9.0... yes
| checking for gtk+-3.0 >= 3.0.0... yes
| checking for x11... no
| configure: error: Package requirements (x11) were not met:
|
| No package 'x11' found

* use gtk+ when gtk+3 isn't available to fix:
  https://lists.openembedded.org/g/openembedded-devel/message/118307

| checking pkg-config is at least version 0.9.0... yes
| checking for gtk+-2.0 >= 2.12.0... no
| configure: error: Package requirements (gtk+-2.0 >= 2.12.0) were not met:
|
| No package 'gtk+-2.0' found

  with combination of required x11 at least one gtk version should be
  available (in builds with x11 in DISTRO_FEATURES)

Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-07-09 09:16:08 -07:00

25 lines
900 B
BlitzBasic

SUMMARY = "Lightweight image viewer for X"
DESCRIPTION = "GPicView is a simple, lightweight and fast GTK+ based image \
viewer with minimal lib dependency and desktop independent."
HOMEPAGE = "https://github.com/lxde/gpicview"
BUGTRACKER = "https://github.com/lxde/gpicview/issues"
SECTION = "x11"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
DEPENDS = "glib-2.0-native intltool-native jpeg libx11"
SRC_URI = "git://github.com/lxde/gpicview.git;protocol=https;branch=master;tag=${PV}"
SRCREV = "ca13623c6176585db4759ce4371fbf89c56fa630"
inherit autotools mime-xdg pkgconfig features_check
REQUIRED_DISTRO_FEATURES = "x11"
PACKAGECONFIG ?= "${@bb.utils.contains_any('DISTRO_FEATURES', '${GTK3DISTROFEATURES}', 'gtk3', 'gtk2', d)}"
PACKAGECONFIG[gtk2] = ",,gtk+"
PACKAGECONFIG[gtk3] = "--enable-gtk3,,gtk+3"
FILES:${PN} += "${datadir}/icons"