diff options
author | ormorph <[email protected]> | 2021-02-20 15:18:15 +0300 |
---|---|---|
committer | TDE Gitea <[email protected]> | 2021-05-19 18:34:53 +0000 |
commit | bbad7cf759311cc05fd43bc093e51943d934b3f7 (patch) | |
tree | bf6b94c4ab9f1b55e51759855111cda96d63409a /trinity-apps/koffice-libs/koffice-libs-9999.ebuild | |
parent | 350ec7b040e56cb1b5c16ca41e6e6471f23baaff (diff) | |
download | tde-packaging-gentoo-bbad7cf759311cc05fd43bc093e51943d934b3f7.tar.gz tde-packaging-gentoo-bbad7cf759311cc05fd43bc093e51943d934b3f7.zip |
Added packages: koffice-libs, kchart and chalk
Signed-off-by: ormorph <[email protected]>
Diffstat (limited to 'trinity-apps/koffice-libs/koffice-libs-9999.ebuild')
-rw-r--r-- | trinity-apps/koffice-libs/koffice-libs-9999.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/trinity-apps/koffice-libs/koffice-libs-9999.ebuild b/trinity-apps/koffice-libs/koffice-libs-9999.ebuild new file mode 100644 index 00000000..a769257f --- /dev/null +++ b/trinity-apps/koffice-libs/koffice-libs-9999.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Copyright 2021 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +TRINITY_MODULE_NAME="koffice" +TRINITY_BUILD_ADMIN="yes" +TRINITY_SUBMODULE="lib lib/kwmf lib/store lib/kofficecore + lib/kofficeui lib/kopainter + lib/kopalette lib/kotext lib/kformula + lib/koproperty lib/kross filters/olefilters + filters/xsltfilter filters/generic_wrapper + kounavail servicetypes mimetypes pics + templates autocorrect interfaces plugins tools" +TSM_EXTRACT_ALSO="filters doc kchart" + +inherit flag-o-matic trinity-meta-2 + +DESCRIPTION="Shared KOffice libraries for TDE [Trinity]" +HOMEPAGE="http://trinitydesktop.org/" + +SLOT="${TRINITY_VER}" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~x86" +fi +IUSE="" + +DEPEND=" + ~trinity-base/tdelibs-${PV} +" + +RDEPEND="$DEPEND" + +src_prepare() { + trinity-meta-2_src_prepare +} + +src_configure() { + append-cxxflags "-std=c++11" + export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${TDEDIR}/$(get_libdir)/pkgconfig + myconf=(--with-extra-libs=${TDEDIR}/$(get_libdir) + --with-extra-includes=${TDEDIR}/include/arts + --disable-scripting) + + trinity-econf ${myconf[@]} +} |