commit:     5016ac44d7fb63c224eda3784f01e6dea4066bc3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 24 20:23:59 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Mar 26 16:32:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5016ac44

net-libs/libproxy: Drop unused IUSE kde and dependency

RDEPEND on kde-frameworks/kconfig:5 was only needed in <0.5, now this
seems to be done without KDE Frameworks facilities, for better or worse.

With the dependency gone I see no reason to expose this option to the
user any longer.

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

 net-libs/libproxy/libproxy-0.5.4-r1.ebuild | 68 ++++++++++++++++++++++++++++++
 1 file changed, 68 insertions(+)

diff --git a/net-libs/libproxy/libproxy-0.5.4-r1.ebuild 
b/net-libs/libproxy/libproxy-0.5.4-r1.ebuild
new file mode 100644
index 000000000000..b0c3841f68a2
--- /dev/null
+++ b/net-libs/libproxy/libproxy-0.5.4-r1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson-multilib vala
+
+DESCRIPTION="Library for automatic proxy configuration management"
+HOMEPAGE="https://github.com/libproxy/libproxy";
+SRC_URI="https://github.com/libproxy/libproxy/archive/refs/tags/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="duktape gnome gtk-doc +introspection test vala"
+REQUIRED_USE="
+       gtk-doc? ( introspection )
+       vala? ( introspection )
+"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+       >=dev-libs/glib-2.71.3:2[${MULTILIB_USEDEP}]
+       gnome? ( gnome-base/gsettings-desktop-schemas )
+       duktape? (
+               dev-lang/duktape:=
+               net-misc/curl
+       )
+       introspection? ( dev-libs/gobject-introspection )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+       virtual/pkgconfig
+       gtk-doc? ( dev-util/gi-docgen )
+       vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+       use vala && vala_setup
+       default
+}
+
+multilib_src_configure() {
+       local emesonargs=(
+               $(meson_native_use_bool gtk-doc docs)
+               $(meson_use test tests)
+               -Dconfig-env=true
+               $(meson_use gnome config-gnome)
+               -Dconfig-windows=false
+               -Dconfig-sysconfig=true
+               -Dconfig-osx=false
+               -Dconfig-kde=true
+               $(meson_native_use_bool duktape pacrunner-duktape)
+               $(meson_native_use_bool vala vapi)
+               $(meson_use duktape curl)
+               $(meson_native_use_bool introspection)
+       )
+       meson_src_configure
+}
+
+multilib_src_install_all() {
+       einstalldocs
+
+       if use gtk-doc; then
+               mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
+               mv "${ED}"/usr/share/doc/${PN}-1.0 
"${ED}"/usr/share/gtk-doc/html/ || die
+       fi
+}

Reply via email to