summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-10-16 12:02:52 +0200
committerPacho Ramos <pacho@gentoo.org>2016-10-16 12:02:52 +0200
commit24f9f1533826c860b17df471092dca7b8d183b9f (patch)
treef45c307cb0ff2f48c175296c7be1e9d563b56828 /app-i18n/pyzy
parentapp-i18n/pyzy: x86 stable, bug #593192 (diff)
downloadgentoo-24f9f1533826c860b17df471092dca7b8d183b9f.tar.gz
gentoo-24f9f1533826c860b17df471092dca7b8d183b9f.tar.bz2
gentoo-24f9f1533826c860b17df471092dca7b8d183b9f.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.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-i18n/pyzy/pyzy-0.1.0.ebuild b/app-i18n/pyzy/pyzy-0.1.0.ebuild
deleted file mode 100644
index daf9fdca3a06..000000000000
--- a/app-i18n/pyzy/pyzy-0.1.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils python 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}
- 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
- python_convert_shebangs 2 "${S}"/data/db/android/create_db.py
- 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/*
-}