Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe/
Date: Thu, 30 Apr 2020 18:38:08
Message-Id: 1588270738.0d606e678da5c0f8cca1c9f98a9b1d870bfdca7e.asturm@gentoo
1 commit: 0d606e678da5c0f8cca1c9f98a9b1d870bfdca7e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 10:54:29 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 18:18:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d606e67
7
8 app-i18n/tomoe: Drop 0.6.0-r5
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-i18n/tomoe/tomoe-0.6.0-r5.ebuild | 90 ------------------------------------
14 1 file changed, 90 deletions(-)
15
16 diff --git a/app-i18n/tomoe/tomoe-0.6.0-r5.ebuild b/app-i18n/tomoe/tomoe-0.6.0-r5.ebuild
17 deleted file mode 100644
18 index 9f94b8adc0c..00000000000
19 --- a/app-i18n/tomoe/tomoe-0.6.0-r5.ebuild
20 +++ /dev/null
21 @@ -1,90 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -PYTHON_COMPAT=( python2_7 )
27 -USE_RUBY="ruby25 ruby26 ruby27"
28 -
29 -inherit autotools python-single-r1 ruby-utils
30 -
31 -DESCRIPTION="Japanese handwriting recognition engine"
32 -HOMEPAGE="http://tomoe.osdn.jp/"
33 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="LGPL-2.1"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="hyperestraier mysql python ruby ${USE_RUBY//ruby/ruby_targets_ruby} static-libs subversion"
39 -RESTRICT="test"
40 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
41 - ruby? ( ^^ ( ${USE_RUBY//ruby/ruby_targets_ruby} ) )"
42 -
43 -RDEPEND="dev-libs/glib:2
44 - hyperestraier? ( app-text/hyperestraier )
45 - mysql? ( dev-db/mysql-connector-c:= )
46 - python? (
47 - ${PYTHON_DEPS}
48 - $(python_gen_cond_dep '
49 - dev-python/pygobject:2[${PYTHON_MULTI_USEDEP}]
50 - dev-python/pygtk:2[${PYTHON_MULTI_USEDEP}]
51 - ')
52 - )
53 - ruby? (
54 - $(for ruby in ${USE_RUBY}; do
55 - echo "ruby_targets_${ruby}? (
56 - $(_ruby_implementation_depend "${ruby}")
57 - dev-ruby/ruby-glib2[ruby_targets_${ruby}]
58 - )"
59 - done)
60 - )
61 - subversion? ( dev-vcs/subversion )"
62 -DEPEND="${RDEPEND}
63 - dev-util/glib-utils
64 - dev-util/gtk-doc-am
65 - dev-util/intltool
66 - virtual/pkgconfig"
67 -
68 -PATCHES=(
69 - "${FILESDIR}"/${PN}-gentoo.patch
70 - "${FILESDIR}"/${PN}-export-symbols.patch
71 - "${FILESDIR}"/${PN}-glib-2.32.patch
72 - "${FILESDIR}"/${PN}-ruby19.patch
73 -)
74 -
75 -pkg_setup() {
76 - use python && python-single-r1_pkg_setup
77 -}
78 -
79 -src_prepare() {
80 - sed -i \
81 - -e "s/use_est=yes/use_est=$(usex hyperestraier)/" \
82 - -e "s/use_mysql=yes/use_mysql=$(usex mysql)/" \
83 - configure.ac
84 -
85 - sed -i "s/use_svn=yes/use_svn=$(usex subversion)/" macros/svn.m4
86 -
87 - default
88 - eautoreconf
89 -}
90 -
91 -src_configure() {
92 - local ruby
93 - for ruby in ${USE_RUBY}; do
94 - if use ruby_targets_${ruby}; then
95 - break
96 - fi
97 - done
98 -
99 - econf \
100 - $(use_enable ruby dict-ruby) \
101 - $(use_enable static-libs static) \
102 - $(use_with python python "") \
103 - $(use_with ruby ruby "$(type -P ${ruby})") \
104 - --with-svn-include="${EPREFIX}"/usr/include \
105 - --with-svn-lib="${EPREFIX}"/usr/$(get_libdir)
106 -}
107 -
108 -src_install() {
109 - default
110 - find "${ED}" -name '*.la' -delete || die
111 -}