diff options
author | E. Liddell <ejlddll@warpmail.net> | 2020-06-14 14:53:51 -0400 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-11-29 02:03:03 +0100 |
commit | d44f6cfe2966c8793abbd23d415a74d061dbfc45 (patch) | |
tree | 295d2c1beb33777d4d3bc9e84d0091445d71240f /trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild | |
parent | 67151d41efefb81a0ae15d576e49847205b63c83 (diff) | |
download | tde-packaging-gentoo-d44f6cfe2966c8793abbd23d415a74d061dbfc45.tar.gz tde-packaging-gentoo-d44f6cfe2966c8793abbd23d415a74d061dbfc45.zip |
14.0.7 and 14.0.8 ebuilds for tdenetwork
Signed-off-by: E. Liddell <ejlddll@warpmail.net>
Diffstat (limited to 'trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild')
-rw-r--r-- | trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild b/trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild new file mode 100644 index 00000000..dd44731c --- /dev/null +++ b/trinity-base/tdenetwork-doc/tdenetwork-doc-14.0.8.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Copyright 2020 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +TRINITY_MODULE_NAME="tdenetwork" + +inherit trinity-meta-2 + +DESCRIPTION="Documentaion for tdenetwork-derived packages" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + ~trinity-base/khelpcenter-${PV}" + +pkg_setup() { + # Issue some warning if MAKEOPTS -j parameter is higher than 4 + local makeopts_j + makeopts_j="$(echo "$MAKEOPTS" | sed -n 's/\(^\|.*\s\)\(-j\s*[0-9]\+\)\(\s.*\|$\)/\2/p')" + if [ -n "$makeopts_j" -a "$makeopts_j" > 4 ]; then + + ewarn "This ebuild needs huge amoumt of memmory to compile in highly parallel" + ewarn "mode so it can chew it all. Please change your MAKEOPTS if building fails." + fi + + trinity-meta-2_pkg_setup +} |