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 913311382C5 for ; Wed, 21 Feb 2018 20:34:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C107E09AB; Wed, 21 Feb 2018 20:34:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5553FE09AB for ; Wed, 21 Feb 2018 20:34:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93BA5335C5E for ; Wed, 21 Feb 2018 20:34:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7422723C for ; Wed, 21 Feb 2018 20:34:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1519245139.d836166b20366d998937a8ad46a01c43130ee09e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/libpinyin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/libpinyin/libpinyin-9999.ebuild X-VCS-Directories: app-i18n/libpinyin/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: d836166b20366d998937a8ad46a01c43130ee09e X-VCS-Branch: master Date: Wed, 21 Feb 2018 20:34:09 +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: e742171f-6d2b-4747-ac11-e51de0935d30 X-Archives-Hash: fe20ca0fc93d1757cf8aaa5691b722fd commit: d836166b20366d998937a8ad46a01c43130ee09e Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Wed Feb 21 18:48:33 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Feb 21 20:32:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d836166b app-i18n/libpinyin: Enable libzhuyin. app-i18n/libpinyin/libpinyin-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-i18n/libpinyin/libpinyin-9999.ebuild b/app-i18n/libpinyin/libpinyin-9999.ebuild index 8d99c24cb21..4d8960cc6ed 100644 --- a/app-i18n/libpinyin/libpinyin-9999.ebuild +++ b/app-i18n/libpinyin/libpinyin-9999.ebuild @@ -13,7 +13,7 @@ fi LIBPINYIN_MODEL_VERSION="15" -DESCRIPTION="Library to deal with pinyin" +DESCRIPTION="Libraries for handling of Hanyu Pinyin and Zhuyin Fuhao" HOMEPAGE="https://github.com/libpinyin/libpinyin https://sourceforge.net/projects/libpinyin/" if [[ "${PV}" == "9999" ]]; then SRC_URI="" @@ -45,14 +45,16 @@ src_unpack() { src_prepare() { default - ln -s "${DISTDIR}/${PN}-model${LIBPINYIN_MODEL_VERSION}.text.tar.gz" "data/model${LIBPINYIN_MODEL_VERSION}.text.tar.gz" || die sed -e "/^\twget .*\/model${LIBPINYIN_MODEL_VERSION}\.text\.tar\.gz$/d" -i data/Makefile.am || die + ln -s "${DISTDIR}/${PN}-model${LIBPINYIN_MODEL_VERSION}.text.tar.gz" "data/model${LIBPINYIN_MODEL_VERSION}.text.tar.gz" || die eautoreconf } src_configure() { - econf --disable-static + econf \ + --enable-libzhuyin \ + --disable-static } src_install() {