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.
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Aaron W. Swenson <[email protected]>
- Loading branch information
1 parent
7c9ae2a
commit cb907d5
Showing
2 changed files
with
67 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,66 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit autotools eutils gnome2 | ||
|
||
DESCRIPTION="Documentation package for GnuCash" | ||
HOMEPAGE="http://www.gnucash.org/" | ||
SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
SLOT="0" | ||
LICENSE="GPL-2 FDL-1.1" | ||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" | ||
LOCALES=( de it ja pt ru ) | ||
IUSE="${LOCALES[*]/#/l10n_}" | ||
|
||
DEPEND=" | ||
app-text/docbook-xml-dtd | ||
app-text/docbook-xsl-stylesheets | ||
app-text/rarian | ||
dev-libs/libxml2 | ||
dev-libs/libxslt | ||
" | ||
|
||
src_prepare() { | ||
default | ||
eautoreconf | ||
} | ||
|
||
src_compile() { | ||
: | ||
} | ||
|
||
src_install() { | ||
local doc_type my_lang | ||
|
||
for doc_type in help guide; do | ||
for my_lang in C ${L10N}; do | ||
case $my_lang in | ||
# Both help and guides translated | ||
C|de|it|pt) ;; | ||
ru|ja) # Only guides translated | ||
if [[ ${doc_type} = "help" ]] ; 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 "${doc_type}/${my_lang}" DESTDIR="${D}" install | ||
done | ||
done | ||
|
||
einstalldocs | ||
} | ||
|
||
pkg_postinst() { | ||
gnome2_pkg_postinst | ||
optfeature "You need dev-java/fop to generate pdf files." dev-java/fop | ||
optfeature "You need gnome-extra/yelp to view the docs." gnome-extra/yelp | ||
} |