diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-12-27 10:56:52 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-12-27 10:56:52 +0000 |
commit | 2a152ba200e22b8c511db3b0b7d4f09284c0ff47 (patch) | |
tree | 187f679587dfc47b2955ca28830283cfa104b7c3 /app-i18n/ibus-skk | |
parent | Old. (diff) | |
download | gentoo-2-2a152ba200e22b8c511db3b0b7d4f09284c0ff47.tar.gz gentoo-2-2a152ba200e22b8c511db3b0b7d4f09284c0ff47.tar.bz2 gentoo-2-2a152ba200e22b8c511db3b0b7d4f09284c0ff47.zip |
Remove Python dependency, it is no longer used upstream.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-i18n/ibus-skk')
-rw-r--r-- | app-i18n/ibus-skk/ChangeLog | 9 | ||||
-rw-r--r-- | app-i18n/ibus-skk/ibus-skk-1.4.1-r1.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/app-i18n/ibus-skk/ChangeLog b/app-i18n/ibus-skk/ChangeLog index 86c207e4d00b..6b7dd5e0f3ad 100644 --- a/app-i18n/ibus-skk/ChangeLog +++ b/app-i18n/ibus-skk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/ibus-skk -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v 1.27 2012/07/08 21:29:28 naota Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v 1.28 2014/12/27 10:56:52 mgorny Exp $ + +*ibus-skk-1.4.1-r1 (27 Dec 2014) + + 27 Dec 2014; Michał Górny <mgorny@gentoo.org> +ibus-skk-1.4.1-r1.ebuild: + Remove Python dependency, it is no longer used upstream. *ibus-skk-1.4.1 (08 Jul 2012) diff --git a/app-i18n/ibus-skk/ibus-skk-1.4.1-r1.ebuild b/app-i18n/ibus-skk/ibus-skk-1.4.1-r1.ebuild new file mode 100644 index 000000000000..e11e255bfd1c --- /dev/null +++ b/app-i18n/ibus-skk/ibus-skk-1.4.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ibus-skk-1.4.1-r1.ebuild,v 1.1 2014/12/27 10:56:52 mgorny Exp $ + +EAPI=5 + +DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework" +HOMEPAGE="http://github.com/ueno/ibus-skk" +SRC_URI="mirror://github/ueno/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=app-i18n/ibus-1.3 + >=app-i18n/libskk-0.0.11 + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig + nls? ( >=sys-devel/gettext-0.16.1 )" +RDEPEND="${RDEPEND} + app-i18n/skk-jisyo" + +DOCS="ChangeLog NEWS README THANKS" + +src_configure() { + econf $(use_enable nls) +} |