From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5BF35138330 for ; Sun, 9 Oct 2016 07:56:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4454721C060; Sun, 9 Oct 2016 07:56:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1660F21C060 for ; Sun, 9 Oct 2016 07:56:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0784A3415DC for ; Sun, 9 Oct 2016 07:56:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60CB724B5 for ; Sun, 9 Oct 2016 07:56:06 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1475999737.05b9cf9e21834e7f2e90d464cd7ebfd5884c32c0.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/tomoe/tomoe-0.6.0-r1.ebuild X-VCS-Directories: app-i18n/tomoe/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 05b9cf9e21834e7f2e90d464cd7ebfd5884c32c0 X-VCS-Branch: master Date: Sun, 9 Oct 2016 07:56:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 281eff52-f978-46e7-b45c-42d5198d27a9 X-Archives-Hash: 6f1c573824c8ee12e68f84b2b40b1635 commit: 05b9cf9e21834e7f2e90d464cd7ebfd5884c32c0 Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 9 07:54:11 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 9 07:55:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b9cf9e app-i18n/tomoe: Drop old Package-Manager: portage-2.3.1 app-i18n/tomoe/tomoe-0.6.0-r1.ebuild | 88 ------------------------------------ 1 file changed, 88 deletions(-) diff --git a/app-i18n/tomoe/tomoe-0.6.0-r1.ebuild b/app-i18n/tomoe/tomoe-0.6.0-r1.ebuild deleted file mode 100644 index b2c5cbc..00000000 --- a/app-i18n/tomoe/tomoe-0.6.0-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="python? 2" -inherit autotools eutils multilib python - -DESCRIPTION="Japanese handwriting recognition engine" -HOMEPAGE="http://tomoe.sourceforge.jp/" -SRC_URI="mirror://sourceforge/tomoe/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc hyperestraier mysql ruby python static-libs subversion" - -RDEPEND=">=dev-libs/glib-2.4 - ruby? ( dev-ruby/ruby-glib2 ) - hyperestraier? ( app-text/hyperestraier ) - subversion? ( - >=dev-libs/apr-1 - dev-vcs/subversion - ) - mysql? ( dev-db/mysql ) - python? ( - dev-python/pygobject:2 - dev-python/pygtk:2 - )" -# test? ( app-dicts/uconv ) - -DEPEND="${DEPEND} - dev-util/gtk-doc-am - dev-util/intltool - virtual/pkgconfig - doc? ( dev-util/gtk-doc )" - -RESTRICT="test" - -pkg_setup() { - if use python ; then - python_set_active_version 2 - fi -} - -src_prepare() { - epatch \ - "${FILESDIR}/${P}-export-symbols.patch" \ - "${FILESDIR}/${P}-ldflags.patch" \ - "${FILESDIR}/${P}-glib232.patch" - - if ! use hyperestraier ; then - sed -i -e "s/use_est=yes/use_est=no/" configure.ac || die - fi - if ! use mysql ; then - sed -i -e "s/use_mysql=yes/use_mysql=no/" configure.ac || die - fi - if ! use subversion ; then - sed -i -e "s/use_svn=yes/use_svn=no/" macros/svn.m4 || die - fi - - eautoreconf -} - -src_configure() { - local myconf - - # --with-python b0rked - use python || myconf="${myconf} --without-python" - - econf \ - $(use_enable doc gtk-doc) \ - $(use_with ruby) \ - $(use_enable static-libs static) \ - $(use_enable ruby dict-ruby) \ - ${myconf} || die -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - - find "${ED}/usr/$(get_libdir)/tomoe" \( -name '*.la' -o -name '*.a' \) -type f -delete || die - if ! use static-libs ; then - find "${ED}" -name '*.la' -type f -delete || die - fi - - dodoc AUTHORS ChangeLog NEWS TODO || die -}