summaryrefslogtreecommitdiff
path: root/app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild
diff options
context:
space:
mode:
authorAlfred Wingate <parona@protonmail.com>2025-05-03 16:36:18 +0300
committerSam James <sam@gentoo.org>2025-06-09 04:09:34 +0100
commitf3209289259a472c1ab1d70b98e900a2fda041c3 (patch)
tree932df6eeba14210bc00a71a64131f51ec2f9e4aa /app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild
parent4da78f21cfe50ba28303c3c200dd80bf527d8567 (diff)
downloadgentoo-f3209289259a472c1ab1d70b98e900a2fda041c3.tar.gz
gentoo-f3209289259a472c1ab1d70b98e900a2fda041c3.tar.bz2
gentoo-f3209289259a472c1ab1d70b98e900a2fda041c3.zip
app-text/libxmlpatch: add dev-libs/libxml2 subslot op for incoming ABI break
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41919 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild')
-rw-r--r--app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild44
1 files changed, 44 insertions, 0 deletions
diff --git a/app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild b/app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild
new file mode 100644
index 000000000000..696269830aa8
--- /dev/null
+++ b/app-text/libxmlpatch/libxmlpatch-0.3.3-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A set of tools to create and apply patch to XML files using XPath"
+HOMEPAGE="http://xmlpatch.sourceforge.net/"
+SRC_URI="https://downloads.sourceforge.net/${PN/lib}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-libs/glib:2
+ dev-libs/libxml2:="
+DEPEND="${RDEPEND}
+ test? ( dev-libs/check )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_prepare() {
+ default
+ mv configure.{in,ac} || die
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --disable-static \
+ $(use_with test check)
+}
+
+src_install() {
+ default
+
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
+}