diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 16:00:46 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 16:06:27 +0100 |
commit | f865c39900bd4fca6bbfe693482a1c12cc470a27 (patch) | |
tree | 13e821f6babcd66f5e14970d73d3e52f17a2bd2a /app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild | |
parent | app-i18n/sunpinyin-data: treeclean (diff) | |
download | gentoo-f865c39900bd4fca6bbfe693482a1c12cc470a27.tar.gz gentoo-f865c39900bd4fca6bbfe693482a1c12cc470a27.tar.bz2 gentoo-f865c39900bd4fca6bbfe693482a1c12cc470a27.zip |
app-i18n/sunpinyin: treeclean
Closes: https://bugs.gentoo.org/762784
Closes: https://bugs.gentoo.org/807148
Closes: https://bugs.gentoo.org/845474
Closes: https://bugs.gentoo.org/695022
Closes: https://bugs.gentoo.org/713412
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild')
-rw-r--r-- | app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild b/app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild deleted file mode 100644 index ada55c754c6c..000000000000 --- a/app-i18n/sunpinyin/sunpinyin-2.0.4_pre20200306162733.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2009-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -PYTHON_COMPAT=( python3_{8..9} ) - -inherit python-any-r1 scons-utils toolchain-funcs - -if [[ "${PV}" == "9999" ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/sunpinyin/sunpinyin" -elif [[ "${PV}" == *_pre* ]]; then - SUNPINYIN_GIT_REVISION="f39c195db08661e894017507842991a1ef70bedf" -fi - -DESCRIPTION="Statistical Language Model (SLM) based Chinese input method library" -HOMEPAGE="https://github.com/sunpinyin/sunpinyin" -if [[ "${PV}" == "9999" ]]; then - SRC_URI="" -elif [[ "${PV}" == *_pre* ]]; then - SRC_URI="https://github.com/sunpinyin/${PN}/archive/${SUNPINYIN_GIT_REVISION}.tar.gz -> ${P}.tar.gz" -else - SRC_URI="https://github.com/sunpinyin/${PN}/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz" -fi - -LICENSE="|| ( CDDL LGPL-2.1 )" -SLOT="0/3" -KEYWORDS="amd64 ppc ppc64 ~riscv x86" -IUSE="" - -BDEPEND="dev-lang/perl - virtual/pkgconfig" -DEPEND="dev-db/sqlite:3 - virtual/libiconv" -RDEPEND="${DEPEND}" - -if [[ "${PV}" == *_pre* ]]; then - S="${WORKDIR}/${PN}-${SUNPINYIN_GIT_REVISION}" -elif [[ "${PV}" != "9999" ]]; then - S="${WORKDIR}/${PN}-${PV/_/-}" -fi - -src_prepare() { - default - sed -e "/^docdir =/s:/sunpinyin:/${PF}:" -i SConstruct || die - - # https://github.com/sunpinyin/sunpinyin/issues/109 - sed -e "/^Requires: sqlite3$/s/^Requires:/Requires.private:/" -i sunpinyin-2.0.pc.in || die -} - -src_configure() { - tc-export CXX -} - -src_compile() { - escons \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" -} - -src_install() { - escons --install-sandbox="${D}" install -} |