diff options
author | ormorph <roma251078@mail.ru> | 2022-07-16 10:25:32 +0200 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2022-07-16 10:52:06 +0200 |
commit | 4cd432ea19c88edc3f4c47986f2837fa382433ae (patch) | |
tree | b24e7fbe4933f666a6e9f73bf5c1e307d76d1b41 /trinity-apps/koshell | |
parent | 2c4121c3348c089d07d0fade2d1f1bd07301418a (diff) | |
download | tde-packaging-gentoo-4cd432ea19c88edc3f4c47986f2837fa382433ae.tar.gz tde-packaging-gentoo-4cd432ea19c88edc3f4c47986f2837fa382433ae.zip |
Added handbook assembly in subpackages for the koffice metapackage
Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'trinity-apps/koshell')
-rw-r--r-- | trinity-apps/koshell/koshell-9999.ebuild | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/trinity-apps/koshell/koshell-9999.ebuild b/trinity-apps/koshell/koshell-9999.ebuild index a13c29bd..b8a9f258 100644 --- a/trinity-apps/koshell/koshell-9999.ebuild +++ b/trinity-apps/koshell/koshell-9999.ebuild @@ -1,5 +1,5 @@ -# Copyright 1999-2021 Gentoo Authors -# Copyright 2021 The Trinity Desktop Project +# Copyright 1999-2022 Gentoo Authors +# Copyright 2022 The Trinity Desktop Project # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -7,7 +7,7 @@ EAPI="8" TRINITY_MODULE_NAME="koffice" TRINITY_MODULE_TYPE="applications/office" TRINITY_BUILD_ADMIN="yes" -TSM_EXTRACT_ALSO="lib" +TSM_EXTRACT_ALSO="lib doc" inherit flag-o-matic trinity-meta-2 DESCRIPTION="KOffice workspace for TDE [Trinity]" @@ -17,13 +17,16 @@ SLOT="14" if [[ ${PV} != *9999* ]] ; then KEYWORDS="~amd64 ~x86" fi -IUSE="" +IUSE="+handbook" DEPEND=" ~trinity-apps/koffice-libs-${PV} " -RDEPEND="$DEPEND" +RDEPEND="${DEPEND} + handbook? ( ~trinity-base/khelpcenter-${PV} + app-doc/doxygen ) +" KMCOPYLIB=" libkformula lib/kformula @@ -54,6 +57,9 @@ src_prepare() { libname="" fi done + if use handbook ; then + echo -e "KDE_LANG = en\nSUBDIRS = ${PN}" >"${S}/doc/Makefile.am" || die + fi echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am trinity-meta-2_src_prepare @@ -66,3 +72,12 @@ src_configure() { append-cxxflags "-std=c++11" trinity-meta-2_src_configure } + +src_install() { + trinity-meta-2_src_install + if use handbook ; then + pushd "${S}/doc" || die + emake install DESTDIR="${D}" + popd + fi +} |