diff options
author | Ben de Groot <yngwin@gentoo.org> | 2013-07-24 12:14:17 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2013-07-24 12:14:17 +0000 |
commit | 9bcd8e5329d39c323a2ed6f8178647bd410043b4 (patch) | |
tree | 8bb9ad7604cd4a1ea815e6ac43a52c035d47a0a7 /app-i18n/libpinyin | |
parent | Update HOMEPAGE, drop vserver herd as discussed in -dev, added maintainers. D... (diff) | |
download | gentoo-2-9bcd8e5329d39c323a2ed6f8178647bd410043b4.tar.gz gentoo-2-9bcd8e5329d39c323a2ed6f8178647bd410043b4.tar.bz2 gentoo-2-9bcd8e5329d39c323a2ed6f8178647bd410043b4.zip |
Version bump
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 0x2B2474AD43CE296E!)
Diffstat (limited to 'app-i18n/libpinyin')
-rw-r--r-- | app-i18n/libpinyin/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/libpinyin/libpinyin-0.9.93.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/app-i18n/libpinyin/ChangeLog b/app-i18n/libpinyin/ChangeLog index 5d5c407b7a16..5b90a526f722 100644 --- a/app-i18n/libpinyin/ChangeLog +++ b/app-i18n/libpinyin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/libpinyin # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/libpinyin/ChangeLog,v 1.1 2013/01/31 12:39:48 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libpinyin/ChangeLog,v 1.2 2013/07/24 12:14:17 yngwin Exp $ + +*libpinyin-0.9.93 (24 Jul 2013) + + 24 Jul 2013; Ben de Groot <yngwin@gentoo.org> +libpinyin-0.9.93.ebuild: + Version bump *libpinyin-0.8.0 (31 Jan 2013) diff --git a/app-i18n/libpinyin/libpinyin-0.9.93.ebuild b/app-i18n/libpinyin/libpinyin-0.9.93.ebuild new file mode 100644 index 000000000000..7ecdf8fd715f --- /dev/null +++ b/app-i18n/libpinyin/libpinyin-0.9.93.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libpinyin/libpinyin-0.9.93.ebuild,v 1.1 2013/07/24 12:14:17 yngwin Exp $ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="Library for Chinese pinyin input methods" +HOMEPAGE="https://github.com/libpinyin/libpinyin" +SRC_URI="mirror://sourceforge/${PN}/${PN}/${PN}-lite-${PV}.tar.gz -> ${P}.tar + mirror://sourceforge/${PN}/models/model6.text.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="=sys-libs/db-4* + dev-libs/glib:2" +DEPEND="${RDEPEND} + virtual/libintl + virtual/pkgconfig" + +src_prepare() { + ln -s "${DISTDIR}"/model6.text.tar.gz data || die + sed -e '/wget/d' -i data/Makefile.am || die + epatch_user + eautoreconf +} + +src_install() { + default + prune_libtool_files +} |