diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-05-30 23:39:24 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-05-30 23:39:24 +0000 |
commit | 1833d7d69b724e4b1c9738e605e1af4c449ea497 (patch) | |
tree | aa4002add520020da5c3629308b49055cd155af6 /app-i18n | |
parent | Initial import. (diff) | |
download | gentoo-2-1833d7d69b724e4b1c9738e605e1af4c449ea497.tar.gz gentoo-2-1833d7d69b724e4b1c9738e605e1af4c449ea497.tar.bz2 gentoo-2-1833d7d69b724e4b1c9738e605e1af4c449ea497.zip |
Fixed python handling, bug #311215.
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/nkf/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/nkf/nkf-2.1.0-r1.ebuild | 71 |
2 files changed, 77 insertions, 1 deletions
diff --git a/app-i18n/nkf/ChangeLog b/app-i18n/nkf/ChangeLog index 7b7ab558d849..7666098b25e7 100644 --- a/app-i18n/nkf/ChangeLog +++ b/app-i18n/nkf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/nkf # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.47 2011/04/23 15:09:01 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.48 2011/05/30 23:39:24 matsuu Exp $ + +*nkf-2.1.0-r1 (31 May 2011) + + 30 May 2011; MATSUU Takuto <matsuu@gentoo.org> +nkf-2.1.0-r1.ebuild: + Fixed python handling, bug #311215. 23 Apr 2011; Fabian Groffen <grobian@gentoo.org> nkf-2.1.0.ebuild: Marked ~x86-macos, bug #360273 diff --git a/app-i18n/nkf/nkf-2.1.0-r1.ebuild b/app-i18n/nkf/nkf-2.1.0-r1.ebuild new file mode 100644 index 000000000000..1b488e4dcd99 --- /dev/null +++ b/app-i18n/nkf/nkf-2.1.0-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/nkf-2.1.0-r1.ebuild,v 1.1 2011/05/30 23:39:24 matsuu Exp $ + +EAPI="3" +PYTHON_DEPEND="python? 2" +inherit eutils distutils perl-module toolchain-funcs + +DESCRIPTION="Network Kanji code conversion Filter with UTF-8/16 support" +HOMEPAGE="http://sourceforge.jp/projects/nkf/" +SRC_URI="mirror://sourceforge.jp/nkf/44486/${P}.tar.gz + python? ( http://city.plala.jp/moin/NkfPython?action=AttachFile&do=get&target=NKF_python20090602.tgz -> NKF_python20090602.tgz )" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-macos" +IUSE="perl python linguas_ja" + +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + sed -i \ + -e "/^CFLAGS/s:-O2:${CFLAGS}:" \ + -e '/-o nkf/s:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' \ + Makefile || die + + if use python; then + mv "${WORKDIR}/NKF.python" "${S}" || die + sed -i -e "s/-s/${CFLAGS}/" NKF.python/setup.py || die + fi +} + +src_compile() { + emake CC="$(tc-getCC)" nkf || die + if use perl; then + cd "${S}/NKF.mod" + perl-module_src_compile + fi + if use python; then + cd "${S}/NKF.python" + distutils_src_compile + fi +} + +src_test() { + emake test || die + if use perl; then + cd "${S}/NKF.mod" + perl-module_src_test + fi +} + +src_install() { + dobin nkf || die + doman nkf.1 + if use linguas_ja; then + ./nkf -e nkf.1j > nkf.1 + doman -i18n=ja nkf.1 + fi + dodoc nkf.doc + if use perl; then + cd "${S}/NKF.mod" + perl-module_src_install + fi + if use python; then + cd "${S}/NKF.python" + distutils_src_install + fi +} |