forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aaron W. Swenson <[email protected]>
- Loading branch information
1 parent
665cbee
commit 5b27086
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
# Please bump with app-office/gnucash | ||
|
||
CMAKE_MAKEFILE_GENERATOR=emake | ||
inherit cmake optfeature | ||
|
||
DESCRIPTION="Documentation package for GnuCash" | ||
HOMEPAGE="https://www.gnucash.org/" | ||
SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-2 FDL-1.1" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86" | ||
LOCALES=( de it ja pt ) | ||
IUSE="${LOCALES[*]/#/l10n_}" | ||
|
||
BDEPEND=" | ||
app-text/docbook-xml-dtd:4.5 | ||
app-text/docbook-xsl-stylesheets | ||
dev-libs/libxml2 | ||
dev-libs/libxslt | ||
" | ||
|
||
src_prepare() { | ||
eapply "${FILESDIR}/${PN}-5.4-partially-revert-kde-help-dir.patch" | ||
cmake_src_prepare | ||
} | ||
|
||
src_compile() { | ||
cmake_src_compile | ||
} | ||
|
||
src_install() { | ||
local doc_type my_lang | ||
|
||
for doc_type in manual guide; do | ||
for my_lang in C ${L10N}; do | ||
[[ -z ${my_lang} ]] && continue | ||
|
||
case "${my_lang}" in | ||
# Both help and guides translated | ||
C|de|it|pt) ;; | ||
ja|ru) # Only guides translated | ||
if [[ "${doc_type}" == "manual" ]] ; then | ||
elog "Help documentation hasn't been translated for ${my_lang}" | ||
elog "Will do English instead." | ||
continue | ||
fi | ||
;; | ||
*) | ||
die "Invalid locale: ${my_lang}" | ||
;; | ||
esac | ||
|
||
emake \ | ||
-C "${BUILD_DIR}/${my_lang}/${doc_type}" \ | ||
DESTDIR="${D}" \ | ||
install | ||
done | ||
done | ||
|
||
einstalldocs | ||
} | ||
|
||
pkg_postinst() { | ||
optfeature "generating PDF files" dev-java/fop | ||
optfeature "viewing the docs" gnome-extra/yelp | ||
} |