diff options
Diffstat (limited to 'trinity-base/tdevelop')
-rw-r--r-- | trinity-base/tdevelop/Manifest | 1 | ||||
-rw-r--r-- | trinity-base/tdevelop/tdevelop-14.0.12.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/trinity-base/tdevelop/Manifest b/trinity-base/tdevelop/Manifest index 610160a9..28e2f281 100644 --- a/trinity-base/tdevelop/Manifest +++ b/trinity-base/tdevelop/Manifest @@ -1 +1,2 @@ DIST tdevelop-trinity-14.0.11.tar.xz 6462352 BLAKE2B 5ecfdd132eac96795657ad93588384e0d7778fd81621057e7eec86558f98261b60d7d71d0c6459dd4c53e61b9ee369a62ec1db40d170f7a0853fb498e2c24b2d SHA512 47b6a56e8ce8f6d232c9db6b4f36c8c8b16af9905a2329ba7dfe0c348acee65e23869e04eab7d8b4cfe4f15b71111b960c8a543cb95fa8fb98617d27dd63fdf2 +DIST tdevelop-trinity-14.0.12.tar.xz 6463524 BLAKE2B dacc3f2c7d634b1e0723e2096099464f78a79ac852ce367cbd4bdb7f04967995b8751794777200766620a419016dbcd183573b7041690404d922a7be4aadcdd5 SHA512 862bafe1eb68dc371f0b9d9648321fae5dc36c5499e8a551e7b52967d23f67ad5fc05630c9f988413c4ccece8d50572e04447e01ae8d00c0cdff7e30edc1d002 diff --git a/trinity-base/tdevelop/tdevelop-14.0.12.ebuild b/trinity-base/tdevelop/tdevelop-14.0.12.ebuild new file mode 100644 index 00000000..f00c4eee --- /dev/null +++ b/trinity-base/tdevelop/tdevelop-14.0.12.ebuild @@ -0,0 +1,41 @@ +# Copyright 2022 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_HANDBOOK="optional" + +TRINITY_MODULE_TYPE="core" +inherit trinity-base-2 + +DESCRIPTION="The TDevelop Integrated Development Environment" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +DEPEND="dev-lang/perl + net-dns/libidn + virtual/acl" + +RDEPEND="$DEPEND" + +src_prepare() { + pushd "${S}/parts/appwizard/common/" || die + trinity-admin-prepare + popd + trinity-base-2_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DWITH_LANGUAGE_ALL=ON + -DWITH_BUILDTOOL_ALL=ON + -DBUILD_ALL=ON + ) + + trinity-base-2_src_configure +} |