summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-10-09 09:53:53 +0200
committerPacho Ramos <pacho@gentoo.org>2016-10-09 09:55:35 +0200
commit85e636b061134891ade0fb898540a4a0aab681cf (patch)
tree6b27a7422b4d77ea32e4dc04721557082586debe /app-i18n/pyzy
parentapp-i18n/ibus-table: Drop old (diff)
downloadgentoo-85e636b061134891ade0fb898540a4a0aab681cf.tar.gz
gentoo-85e636b061134891ade0fb898540a4a0aab681cf.tar.bz2
gentoo-85e636b061134891ade0fb898540a4a0aab681cf.zip
app-i18n/pyzy: Drop old
Package-Manager: portage-2.3.1
Diffstat (limited to 'app-i18n/pyzy')
-rw-r--r--app-i18n/pyzy/pyzy-0.1.0-r1.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/app-i18n/pyzy/pyzy-0.1.0-r1.ebuild b/app-i18n/pyzy/pyzy-0.1.0-r1.ebuild
deleted file mode 100644
index 20d04d2ea06a..000000000000
--- a/app-i18n/pyzy/pyzy-0.1.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-any-r1 autotools
-
-PY_DATABASE=${PN}-database-1.0.0
-DESCRIPTION="The Chinese PinYin and Bopomofo conversion library"
-HOMEPAGE="https://github.com/pyzy/pyzy"
-SRC_URI="https://pyzy.googlecode.com/files/${P}.tar.gz
- https://pyzy.googlecode.com/files/${PY_DATABASE}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boost doc opencc test"
-
-RDEPEND="dev-libs/glib:2
- dev-db/sqlite:3
- sys-apps/util-linux
- boost? ( dev-libs/boost )
- opencc? ( app-i18n/opencc )"
-
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- doc? ( app-doc/doxygen )"
-
-# Currently it fails to build test code
-RESTRICT="test"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-dont-download-dictionary-file.patch
- mv ../db ./data/db/open-phrase/ || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-db-open-phrase \
- --enable-db-android \
- $(use_enable boost) \
- $(use_enable opencc) \
- $(use_enable test tests)
-}
-
-src_install() {
- default
- use doc && dohtml -r docs/html/*
-}