summaryrefslogtreecommitdiff
path: root/app-text/xmlto
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-14 22:48:30 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-14 22:48:30 +0100
commitea7f3f690b55cdfa8b2d350b03c1dfc0c8357a51 (patch)
tree4b5a746c80bd7aacbe83448c66643e9dc4dcc105 /app-text/xmlto
parentcdb999af22d9aa464bfd480fc9f5ebda71fc89e2 (diff)
gentoo auto-resync : 14:09:2023 - 22:48:30
Diffstat (limited to 'app-text/xmlto')
-rw-r--r--app-text/xmlto/Manifest2
-rw-r--r--app-text/xmlto/xmlto-0.0.28-r11.ebuild (renamed from app-text/xmlto/xmlto-0.0.28-r10.ebuild)10
2 files changed, 8 insertions, 4 deletions
diff --git a/app-text/xmlto/Manifest b/app-text/xmlto/Manifest
index 62a74d5989a2..6db36882d01a 100644
--- a/app-text/xmlto/Manifest
+++ b/app-text/xmlto/Manifest
@@ -3,5 +3,5 @@ AUX xmlto-0.0.28-allow-links.patch 535 BLAKE2B 71412bff616c9499ed6cf045a5d7ea1e6
AUX xmlto-0.0.28-dont-hardcode-paths.patch 845 BLAKE2B 37618989b609bc7dd2d94d22fad0562d6e0580541d8f6ec2a222316da89a6744a16cac9b4cd446ef80f58cf415f4a784aefedf53349ea85e98cf33000b7799b6 SHA512 9947787a1c3ebbd0a73e271ebab3dfcd01b7aad3bcaa627e7a236947bc7edbc23696c38f96aae62785013e2ac8c5171ce6f386f655676a4cde8d820f49d5df7d
AUX xmlto-0.0.28-fix-warnings.patch 3085 BLAKE2B 2c9e6323dda3fed36bdd999e10d76b8cfcc3c2bef3893ec044588c22519609889101d65f656f8ebb7b70a2819d009fb81d1f34ad2659b1398d7d3c7b9d565ffc SHA512 b16699d6e592c74ca7400f1a4a0ff6b158eb44cb6e77b73bebab03e10535f44890241bfd53d16382266da4102a42c4db7905481115324a76e667d1b91ec61fe1
DIST xmlto-0.0.28.tar.bz2 127921 BLAKE2B 12ef3e2e1436c330e7b003d08f4a4d4032d70255777956949eb8b47b6f5466e7c158b0f85dc87069c1e379603cac0b01c88589f98ca1ef9e862f0aef31169f6d SHA512 6e0c4968d4f1b7a3b132904182aa72a73f6167553eabdeb65cfafa6295ef7b960541685769d04144207963cca77b0c44db4f9fbb2796348ffcb37b3b399f18f1
-EBUILD xmlto-0.0.28-r10.ebuild 1562 BLAKE2B a6b2a8be5d707f3ab806f9023a77ece7e16fc6128179cea98b84422c207f2508059985ebcfc9edb7ae2eb14f1c942f24dfaf873c77219206fd7771edc3d4d437 SHA512 9ff9ddabcd9edd1f20ad9425149a79f95c0e6a74a8f4f1b80048c0352b9ad1736bbbb994618ccab4a2f289c0e7bf9c9ea979f5684d7f7557a1aaf030261f9608
+EBUILD xmlto-0.0.28-r11.ebuild 1614 BLAKE2B b5aebd235a9782e9e4bbc4e4664baec731c7c3dba85407ea7ccc4baaffe530bb159a61916ac7c584e6d7042dfd041709d8f545af2dd52251fab1589a81bd9a5e SHA512 4fab64029e1a8bc084e1ddb92b9ecdfda45431f333a82da8351de91c10b9ac0e7100112885b005d0dbfdce17c8931803a2630755b1cc27322ea850da3c2703cd
MISC metadata.xml 324 BLAKE2B 3cabb2600d6843ebecec023a16fef87a40432202ff195a6130e57f97802d4c0ed2e82ffee506c65afe554291f05c64c7ae2fe524c708db7a9c6bf4a71c4c8710 SHA512 19ed2fabc04f96b1b61495e2fdba674ca4b4a9a1cee11b3cb13baec6d9e7fe0d82b653a0cbb523de3fcd4ed1ef18d8111686f8b618db9924674ee274ae5a21ed
diff --git a/app-text/xmlto/xmlto-0.0.28-r10.ebuild b/app-text/xmlto/xmlto-0.0.28-r11.ebuild
index 547cd6787bf8..bf44cdb5d846 100644
--- a/app-text/xmlto/xmlto-0.0.28-r10.ebuild
+++ b/app-text/xmlto/xmlto-0.0.28-r11.ebuild
@@ -15,6 +15,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv
IUSE="latex text"
RDEPEND="
+ app-shells/bash:0
app-text/docbook-xsl-stylesheets
app-text/docbook-xml-dtd:4.2
dev-libs/libxslt
@@ -48,9 +49,12 @@ src_prepare() {
}
src_configure() {
- # We don't want the script to detect /bin/sh if it is bash.
- export ac_cv_path_BASH="${BASH}"
has_version sys-apps/util-linux || export GETOPT=getopt-long
- econf
+ local args=(
+ # Ensure we always get a #!/bin/bash shebang in xmlto, bug 912286
+ BASH="${EPREFIX}/bin/bash"
+ )
+
+ econf "${args[@]}"
}