commit:     2c1b7cd1d8ab4f09746d6fbb0dc7f837f35aac0c
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 17 20:32:08 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 18 16:29:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c1b7cd1

media-gfx/zbar: Drop IUSE static-libs, qt5 w/o replacement

Closes: https://bugs.gentoo.org/947629
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-gfx/zbar/zbar-0.23.93-r2.ebuild | 211 ++++++++++++++++++++++++++++++++++
 1 file changed, 211 insertions(+)

diff --git a/media-gfx/zbar/zbar-0.23.93-r2.ebuild 
b/media-gfx/zbar/zbar-0.23.93-r2.ebuild
new file mode 100644
index 000000000000..7b918b290748
--- /dev/null
+++ b/media-gfx/zbar/zbar-0.23.93-r2.ebuild
@@ -0,0 +1,211 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+inherit autotools flag-o-matic java-pkg-opt-2 multilib-minimal 
python-single-r1 virtualx
+
+DESCRIPTION="Library and tools for reading barcodes from images or video"
+HOMEPAGE="https://github.com/mchehab/zbar";
+SRC_URI="https://github.com/mchehab/zbar/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~arm64 x86"
+IUSE="dbus graphicsmagick gtk +imagemagick introspection java jpeg nls python 
test +threads v4l X xv"
+
+REQUIRED_USE="
+       introspection? ( gtk )
+       python? ( ${PYTHON_REQUIRED_USE} )
+       test? (
+               ${PYTHON_REQUIRED_USE}
+               X? ( imagemagick )
+       )
+       xv? ( X )"
+
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+       dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
+       gtk? (
+               dev-libs/glib:2[${MULTILIB_USEDEP}]
+               x11-libs/gdk-pixbuf:2[introspection?]
+               x11-libs/gtk+:3[${MULTILIB_USEDEP},introspection?]
+               introspection? ( dev-libs/gobject-introspection )
+       )
+       imagemagick? (
+               !graphicsmagick? ( media-gfx/imagemagick:=[png,jpeg?] )
+               graphicsmagick? ( media-gfx/graphicsmagick:=[png,jpeg?] )
+       )
+       jpeg? ( media-libs/libjpeg-turbo:0=[${MULTILIB_USEDEP}] )
+       python? ( ${PYTHON_DEPS} )
+       v4l? ( media-libs/libv4l:0=[${MULTILIB_USEDEP}] )
+       X? (
+               x11-libs/libX11[${MULTILIB_USEDEP}]
+               x11-libs/libXext[${MULTILIB_USEDEP}]
+               xv? ( x11-libs/libXv[${MULTILIB_USEDEP}] )
+       )"
+
+RDEPEND="${COMMON_DEPEND}
+       java? ( >=virtual/jre-1.8 )"
+
+DEPEND="${COMMON_DEPEND}
+       java? (
+               >=virtual/jdk-1.8
+               test? (
+                       dev-java/hamcrest-core:1.3
+                       dev-java/junit:4
+               )
+       )
+       test? (
+               ${PYTHON_DEPS}
+               $(python_gen_cond_dep '
+                       dev-python/pillow[${PYTHON_USEDEP}]
+               ')
+               elibc_musl? ( sys-libs/argp-standalone )
+       )"
+
+BDEPEND="
+       app-text/xmlto
+       sys-devel/gettext
+       virtual/pkgconfig
+       gtk? ( dev-util/glib-utils )
+       nls? (
+               sys-devel/gettext
+               virtual/libiconv
+       )"
+
+DOCS=( README.md NEWS.md TODO.md HACKING.md TODO.md ChangeLog )
+
+PATCHES=(
+       # TODO: upstream?
+       "${FILESDIR}/${PN}-0.23_fix_python_detect.patch"
+       "${FILESDIR}/${PN}-0.23.90-fix-unittest.patch"
+       
"${FILESDIR}/${PN}-0.23.93-configure-ac-do-not-use-hardcoded-pkg-config-command.patch"
+       "${FILESDIR}/${PN}-0.23.93-configure-ac-use-old-way-to-detect-qt5.patch"
+)
+
+pkg_setup() {
+       if use python || use test; then
+               python-single-r1_pkg_setup
+       fi
+       use java && java-pkg-opt-2_pkg_setup
+}
+
+src_prepare() {
+       default
+
+       if use python || use test; then
+               if use test; then
+                       # make tests happy
+                       # because one of the test requires loadable py module 
from the current ${BUILD_DIR}
+                       sed -e 
"s|PYTHONPATH=@abs_top_srcdir@|PYTHONPATH=@builddir@|g" \
+                               -i test/Makefile.am.inc || die
+               fi
+
+               python_fix_shebang \
+                       examples/*.py \
+                       test/{test_python,barcodetest}.py # test_pygtk.py - py2 
only
+       fi
+
+       if use java; then
+               java-pkg-opt-2_src_prepare
+               sed -e "s|javadir = \$(pkgdatadir)|javadir = 
/usr/$(get_libdir)/zbar|" \
+                       -i java/Makefile.am || die
+       fi
+
+       # do not install {LICENSE,INSTALL,etc} doc files with 'make install' 
(use DOCS=() instead)
+       sed -e "s|^dist_doc_DATA =\(.*\)|dist_doc_DATA =|" -i Makefile.am || die
+
+       eautoreconf
+}
+
+multilib_src_configure() {
+       append-cppflags -DNDEBUG
+
+       local myeconfargs=(
+               --without-qt # bug 947629
+               $(use_with dbus)
+               $(use_with gtk gtk gtk3) # avoid 'auto'
+               $(use_with jpeg)
+               $(multilib_native_use_with introspection gir)
+               $(multilib_native_use_with java)
+               $(multilib_native_use_with python python auto)
+               $(use_enable nls)
+               $(use_enable threads pthread)
+               $(use_enable v4l video)
+               $(use_with X x)
+               $(use_with X xshm)
+               $(use_with xv xv)
+       )
+
+       if multilib_is_native_abi; then
+               # both must be enabled to use GraphicsMagick
+               if use imagemagick && use graphicsmagick; then
+                       myeconfargs+=(
+                               --with-graphicsmagick
+                               --without-imagemagick
+                       )
+               elif ! use graphicsmagick && use imagemagick; then
+                       myeconfargs+=(
+                               --with-imagemagick
+                               --without-graphicsmagick
+                       )
+               else
+                       myeconfargs+=(
+                               --without-imagemagick
+                               --without-graphicsmagick
+                       )
+               fi
+
+               if use java; then
+                       export JAVACFLAGS="$(java-pkg_javac-args)"
+                       append-cflags "$(java-pkg_get-jni-cflags)"
+                       if use test; then # bug 629078
+                               myeconfargs+=( --with-java-unit )
+                               CLASSPATH+=":$(java-pkg_getjar --build-only 
junit-4 junit.jar)"
+                               CLASSPATH+=":$(java-pkg_getjar --build-only 
hamcrest-core-1.3 hamcrest-core.jar)"
+                       fi
+               fi
+
+               if use test && use elibc_musl; then
+                       append-ldflags -largp
+               fi
+
+       else
+               myeconfargs+=(
+                       --without-graphicsmagick
+                       --without-imagemagick
+               )
+
+               # zbarimg tests with native abi only
+               # (this option from the patch above, stay up to date)
+               use test && myeconfargs+=( --without-zbarimg-tests )
+       fi
+
+       # use bash (bug 721370)
+       CONFIG_SHELL='/bin/bash' \
+       ECONF_SOURCE="${S}" \
+       econf "${myeconfargs[@]}"
+
+       # work around out-of-source build issues for multilib systems (bug 
672184)
+       mkdir qt zbarcam || die
+}
+
+src_test() {
+       virtx multilib-minimal_src_test
+}
+
+src_install() {
+       multilib-minimal_src_install
+}
+
+multilib_src_install_all() {
+       einstalldocs
+       find "${D}" -name '*.la' -delete || die
+}
+
+pkg_preinst() {
+       use java && java-pkg-opt-2_pkg_preinst
+}

Reply via email to