summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Ramsey <graham.ramsey@gmail.com>2023-05-13 16:54:20 +0100
committerSam James <sam@gentoo.org>2023-05-15 06:38:36 +0100
commit8620bc3f1fe8bb3e2b87b688513810b407ef9c6a (patch)
tree261523b602b298824d8e3c2ce4434c7b694c6c2c /app-i18n
parentapp-i18n/ibus-libpinyin: add 1.15.2 (diff)
downloadgentoo-8620bc3f1fe8bb3e2b87b688513810b407ef9c6a.tar.gz
gentoo-8620bc3f1fe8bb3e2b87b688513810b407ef9c6a.tar.bz2
gentoo-8620bc3f1fe8bb3e2b87b688513810b407ef9c6a.zip
app-i18n/ibus-libpinyin: drop 1.13.1
Signed-off-by: Graham Ramsey <graham.ramsey@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31023 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/ibus-libpinyin/ibus-libpinyin-1.13.1.ebuild69
1 files changed, 0 insertions, 69 deletions
diff --git a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.13.1.ebuild b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.13.1.ebuild
deleted file mode 100644
index 25bcb2100bd1..000000000000
--- a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.13.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 2015-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-LUA_COMPAT=( lua5-{1..3} )
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit autotools gnome2-utils lua-single python-single-r1
-
-DESCRIPTION="Intelligent Pinyin and Bopomofo input methods based on LibPinyin for IBus"
-HOMEPAGE="https://github.com/libpinyin/ibus-libpinyin https://sourceforge.net/projects/libpinyin/"
-SRC_URI="https://github.com/libpinyin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="boost lua opencc"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
- lua? ( ${LUA_REQUIRED_USE} )"
-
-BDEPEND="dev-db/sqlite:3
- virtual/pkgconfig"
-
-DEPEND="${PYTHON_DEPS}
- >=app-i18n/libpinyin-2.2.1:=
- dev-db/sqlite:3
- dev-libs/glib:2
- virtual/libintl
- $(python_gen_cond_dep '
- app-i18n/ibus[python(+),${PYTHON_USEDEP}]
- dev-python/pygobject:3[${PYTHON_USEDEP}]
- ')
- boost? ( dev-libs/boost:= )
- lua? ( ${LUA_DEPS} )
- opencc? ( app-i18n/opencc:= )"
-
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- python-single-r1_pkg_setup
-
- if use lua; then
- lua-single_pkg_setup
- fi
-}
-
-src_prepare() {
- sed -i \
- -e "/^appdatadir/s:/appdata:/metainfo:" \
- data/Makefile.am || die
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-english-input-mode \
- $(use_enable boost) \
- $(use_enable lua lua-extension) \
- $(use_enable opencc)
-}
-
-pkg_postinst() {
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- gnome2_schemas_update
-}