mirror of
https://github.com/flatcar/scripts.git
synced 2026-05-11 15:16:21 +02:00
app-text/docbook-xsl-stylesheets: Sync with Gentoo
It's from Gentoo commit 4634bb6be55b8023fb127910f2919d47533668bb.
This commit is contained in:
parent
fa890edbcc
commit
05d4177304
@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ruby"
|
||||
# Makefile is broken since 1.76.0
|
||||
RESTRICT="test"
|
||||
|
||||
@ -0,0 +1,97 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
USE_RUBY="ruby27 ruby30 ruby31"
|
||||
inherit ruby-single
|
||||
|
||||
DOCBOOKDIR="/usr/share/sgml/${PN/-//}"
|
||||
MY_PN="${PN%-stylesheets}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="XSL Stylesheets for Docbook"
|
||||
HOMEPAGE="https://github.com/docbook/wiki/wiki"
|
||||
SRC_URI="mirror://sourceforge/docbook/${MY_P}.tar.bz2"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="ruby"
|
||||
# Makefile is broken since 1.76.0
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
>=app-text/build-docbook-catalog-1.1
|
||||
ruby? ( ${RUBY_DEPS} dev-ruby/rexml )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/nonrecursive-string-subst.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Delete the unnecessary Java-related stuff and other tools as they
|
||||
# bloat the stage3 tarballs massively. See bug #575818.
|
||||
rm -rv extensions/ tools/ || die
|
||||
find \( -name build.xml -o -name build.properties \) \
|
||||
-printf "removed %p\n" -delete || die
|
||||
|
||||
if ! use ruby; then
|
||||
rm -rv epub/ || die
|
||||
fi
|
||||
}
|
||||
|
||||
# The makefile runs tests, not builds.
|
||||
src_compile() { :; }
|
||||
|
||||
src_test() {
|
||||
emake check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# The changelog is now zipped, and copied as the RELEASE-NOTES, so we
|
||||
# don't need to install it
|
||||
dodoc AUTHORS BUGS NEWS README RELEASE-NOTES.txt TODO
|
||||
|
||||
insinto ${DOCBOOKDIR}
|
||||
doins VERSION VERSION.xsl
|
||||
|
||||
local i
|
||||
for i in */; do
|
||||
i=${i%/}
|
||||
|
||||
for doc in ChangeLog README; do
|
||||
if [[ -e ${i}/${doc} ]]; then
|
||||
newdoc ${i}/${doc} ${doc}.${i}
|
||||
rm ${i}/${doc} || die
|
||||
fi
|
||||
done
|
||||
|
||||
doins -r ${i}
|
||||
done
|
||||
|
||||
if use ruby; then
|
||||
local cmd="dbtoepub${MY_PN#docbook-xsl}"
|
||||
|
||||
# we can't use a symlink or it'll look for the library in the wrong path
|
||||
newbin - ${cmd} <<-EOF
|
||||
#!/usr/bin/env ruby
|
||||
|
||||
load "${EPREFIX}${DOCBOOKDIR}/epub/bin/dbtoepub"
|
||||
EOF
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
# See bug #816303 for rationale behind die
|
||||
build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?"
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
# See bug #816303 for rationale behind die
|
||||
build-docbook-catalog || die "Failed to regenerate docbook catalog. Is /run mounted?"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user