35 lines
771 B
Bash
35 lines
771 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit autotools eutils
|
|
|
|
MODELV=11
|
|
|
|
DESCRIPTION="Library for Chinese pinyin input methods"
|
|
HOMEPAGE="https://github.com/libpinyin/libpinyin"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
|
|
mirror://sourceforge/${PN}/models/model${MODELV}.text.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0/7"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="sys-libs/db:=
|
|
dev-libs/glib:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/libintl
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
ln -s "${DISTDIR}"/model${MODELV}.text.tar.gz data || die
|
|
sed -e '/wget/d' -i data/Makefile.am || die
|
|
epatch_user
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|