Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe/
Date: Tue, 03 Apr 2018 16:40:16
Message-Id: 1522773518.a7030a4c8d68d0f98cca41a84728cb19b3ed9090.floppym@gentoo
1 commit: a7030a4c8d68d0f98cca41a84728cb19b3ed9090
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Tue Apr 3 02:08:31 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 3 16:38:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7030a4c
7
8 app-i18n/tomoe: Delete old version (0.6.0-r2).
9
10 Closes: https://bugs.gentoo.org/648746
11
12 app-i18n/tomoe/tomoe-0.6.0-r2.ebuild | 70 ------------------------------------
13 1 file changed, 70 deletions(-)
14
15 diff --git a/app-i18n/tomoe/tomoe-0.6.0-r2.ebuild b/app-i18n/tomoe/tomoe-0.6.0-r2.ebuild
16 deleted file mode 100644
17 index 6fe794e094e..00000000000
18 --- a/app-i18n/tomoe/tomoe-0.6.0-r2.ebuild
19 +++ /dev/null
20 @@ -1,70 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="6"
25 -PYTHON_COMPAT=( python2_7 )
26 -
27 -inherit autotools ltprune python-single-r1
28 -
29 -DESCRIPTION="Japanese handwriting recognition engine"
30 -HOMEPAGE="http://tomoe.osdn.jp/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~x86"
36 -IUSE="hyperestraier mysql python ruby static-libs subversion"
37 -RESTRICT="test"
38 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
39 -
40 -RDEPEND="dev-libs/glib:2
41 - hyperestraier? ( app-text/hyperestraier )
42 - mysql? ( virtual/libmysqlclient )
43 - python? (
44 - ${PYTHON_DEPS}
45 - dev-python/pygobject:2[${PYTHON_USEDEP}]
46 - dev-python/pygtk:2[${PYTHON_USEDEP}]
47 - )
48 - ruby? ( dev-ruby/ruby-glib2 )
49 - subversion? ( dev-vcs/subversion )"
50 -DEPEND="${RDEPEND}
51 - dev-util/gtk-doc-am
52 - dev-util/intltool
53 - virtual/pkgconfig"
54 -
55 -PATCHES=(
56 - "${FILESDIR}"/${PN}-gentoo.patch
57 - "${FILESDIR}"/${PN}-export-symbols.patch
58 - "${FILESDIR}"/${PN}-glib-2.32.patch
59 -)
60 -
61 -pkg_setup() {
62 - use python && python-single-r1_pkg_setup
63 -}
64 -
65 -src_prepare() {
66 - sed -i \
67 - -e "s/use_est=yes/use_est=$(usex hyperestraier)/" \
68 - -e "s/use_mysql=yes/use_mysql=$(usex mysql)/" \
69 - configure.ac
70 -
71 - sed -i "s/use_svn=yes/use_svn=$(usex subversion)/" macros/svn.m4
72 -
73 - default
74 - eautoreconf
75 -}
76 -
77 -src_configure() {
78 - econf \
79 - $(use_enable ruby dict-ruby) \
80 - $(use_enable static-libs static) \
81 - $(use_with python python "") \
82 - $(use_with ruby) \
83 - --with-svn-include="${EPREFIX}"/usr/include \
84 - --with-svn-lib="${EPREFIX}"/usr/$(get_libdir)
85 -}
86 -
87 -src_install() {
88 - default
89 - prune_libtool_files --modules
90 -}