diff options
author | ormorph <roma251078@mail.ru> | 2021-11-09 00:39:45 +0300 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2021-11-09 00:42:24 +0300 |
commit | 868d88ecfcb70f0e865715272371d5e3efe20771 (patch) | |
tree | 8075e78249b5f5efe73a790406fab2569cb110e9 /trinity-base/khangman/khangman-9999.ebuild | |
parent | f88c3a8a5ca42156c1f1df747d57556dff9daeda (diff) | |
download | tde-packaging-gentoo-868d88ecfcb70f0e865715272371d5e3efe20771.tar.gz tde-packaging-gentoo-868d88ecfcb70f0e865715272371d5e3efe20771.zip |
Added tdeedu meta package
Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'trinity-base/khangman/khangman-9999.ebuild')
-rw-r--r-- | trinity-base/khangman/khangman-9999.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/trinity-base/khangman/khangman-9999.ebuild b/trinity-base/khangman/khangman-9999.ebuild new file mode 100644 index 00000000..764d205c --- /dev/null +++ b/trinity-base/khangman/khangman-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 2021 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +TRINITY_MODULE_NAME="tdeedu" +TSM_EXTRACT_ALSO="libtdeedu translations" +TRINITY_NEED_ARTS="optional" +inherit trinity-meta-2 + +DESCRIPTION="The classical hangman game for Trinity" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~x86" +fi + +DEPEND="~trinity-base/libtdeedu-${PV}" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e '/add_subdirectory( applnk )/d' \ + -e '/add_subdirectory( libtdeedu )/d' "${S}/CMakeLists.txt" || die + sed -i 's/tdeeducore-shared/tdeeducore/' "${S}/${PN}/${PN}/CMakeLists.txt" || die + trinity-meta-2_src_prepare +} |