app-i18n/nkf: new upstream release
authorAkinori Hattori <hattya@gentoo.org>
Tue, 31 Jul 2018 12:43:29 +0000 (21:43 +0900)
committerAkinori Hattori <hattya@gentoo.org>
Tue, 31 Jul 2018 12:43:29 +0000 (21:43 +0900)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

app-i18n/nkf/Manifest
app-i18n/nkf/files/nkf-2.1.4-python.patch [new file with mode: 0644]
app-i18n/nkf/nkf-2.1.4.ebuild [new file with mode: 0644]

index d45655ec51743356a8ce732d24ca01bf0d974dbe..5376dcc7dea7a44b8ef4a7577715a4e71d6cf18b 100644 (file)
@@ -1,3 +1,5 @@
 DIST NKF_python20090602.tgz 2318 BLAKE2B 54399912fce0f4486e4051825319294a214089a59fa9b40e93bdc77859e79e5586abf2d197511cb158b094663993a692c981885e9db8fe260a5a746771168509 SHA512 3baee969daaba43e7ddee0d3b6d3d73ed67cfb0a3c3cbdabcdcda9fa1e61ccf374cd686ee096d031c3c48541c6be6daacf82e3b05885de63b88344d137c306d9
 DIST nkf-2.1.3.tar.gz 195020 BLAKE2B 7ffd2acdc16d98cfe1e7a73ff5999756a1c46e5dbbbf349d296f11526c077c42a64b1657d3a6bf8bee1326768ec06fe9d2aea02e5f8ba02e77626bb1316d1484 SHA512 e40798d4084657b545bdaa9904229b0a424a9be076c16993b97d206c3e82490c45288eaab417c6eea70b770f89530f90e98e1a659f8f7e4b928eea4396d1e738
+DIST nkf-2.1.4.tar.gz 232479 BLAKE2B 81887b8b0422e92b2fa2be285c1d9fa4da16d572ca50e1fbeef7be4f50af9ba9b64ef140163e325e57c351dd384ee8b09849bad7c37b03d48a9cb4b88f2ee199 SHA512 8667c20a6c5e9c0c6df7ebe2571bcf24090f04dafd306d32f07312acd659ea026a91d31521b4b213f77aba8218159effd73607d0b7236b7287e4a4cde8cc62b9
 DIST nkf.1j 24160 BLAKE2B 1d461dbacfb6e5ee358d7ea162582da5042a03f02448791c4ed33a10e9eb6e5907220db8d70aea691e3908252daffcbacdaab1b9fe52b0e4e25f7b590e5bca72 SHA512 4680dfb59ceb9db5031ecefeca808e34202c841309d5b634cdd7aa89ee97118701ddeddb0ae18a2cf791987929dc9c5a528275cb1f63b1742eac2197ac9c1416
+DIST python-nkf-0.2.0_p20141211.tar.gz 187761 BLAKE2B b607e155934dd14ad4d29298f209a233d846122299326df48e45339661d1cd08a789f5278928cb4a32c747673723f5f8877d98c7a6200af6b2dbbf29cd100f00 SHA512 5a493f32244e3cb72d188fa39b810baef31ce5f530309797a05474e3f58cf22fd5f8b6c66cdf5268451c49ffb759c476c707329ce1ccf42da0362ad4f5c24d71
diff --git a/app-i18n/nkf/files/nkf-2.1.4-python.patch b/app-i18n/nkf/files/nkf-2.1.4-python.patch
new file mode 100644 (file)
index 0000000..6f9e2e6
--- /dev/null
@@ -0,0 +1,13 @@
+--- a/NKF.python/nkf.c
++++ b/NKF.python/nkf.c
+@@ -78,8 +78,8 @@
+ }
+ #define PERL_XS 1
+-#include "nkf-dist/utf8tbl.c"
+-#include "nkf-dist/nkf.c"
++#include "../utf8tbl.c"
++#include "../nkf.c"
+ static PyObject *
+ pynkf_convert(unsigned char* str, int strlen, char* opts, int optslen)
diff --git a/app-i18n/nkf/nkf-2.1.4.ebuild b/app-i18n/nkf/nkf-2.1.4.ebuild
new file mode 100644 (file)
index 0000000..9f6f6f5
--- /dev/null
@@ -0,0 +1,90 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 perl-module toolchain-funcs vcs-snapshot
+
+PY_P="python-${PN}-0.2.0_p20141211"
+PY_COMMIT="000915e115acac57a1fdbceb1e6361788af83a3d"
+
+DESCRIPTION="Network Kanji code conversion Filter with UTF-8/16 support"
+HOMEPAGE="http://sourceforge.jp/projects/nkf/"
+SRC_URI="mirror://sourceforge.jp/${PN}/64158/${P}.tar.gz
+       python? ( https://github.com/fumiyas/python-${PN}/archive/${PY_COMMIT}.tar.gz -> ${PY_P}.tar.gz )"
+
+LICENSE="ZLIB python? ( BSD )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-macos"
+IUSE="perl python l10n_ja"
+
+src_prepare() {
+       sed -i \
+               -e "/^CFLAGS/{ s/-g -O2//; s/=/+=/; }" \
+               -e "/ -o ${PN}/s/\(-o \)/\$(LDFLAGS) \1/" \
+               Makefile
+       if use python; then
+               mv "${WORKDIR}"/${PY_P} NKF.python || die
+               eapply "${FILESDIR}"/${P}-python.patch
+       fi
+
+       default
+}
+
+src_configure() {
+       default
+       if use perl; then
+               cd NKF.mod
+               perl-module_src_configure
+               cd - >/dev/null
+       fi
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)"
+       if use perl; then
+               cd NKF.mod
+               perl-module_src_compile
+               cd - >/dev/null
+       fi
+       if use python; then
+               cd NKF.python
+               distutils-r1_src_compile
+               cd - >/dev/null
+       fi
+}
+
+src_test() {
+       default
+       if use perl; then
+               cd NKF.mod
+               perl-module_src_test
+               cd - >/dev/null
+       fi
+}
+
+src_install() {
+       dobin ${PN}
+       doman ${PN}.1
+
+       if use l10n_ja; then
+               iconv -f ISO-2022-JP-3 -t UTF-8 ${PN}.1j > ${PN}.ja.1 || die
+               doman ${PN}.ja.1
+       fi
+       dodoc ${PN}.doc
+
+       if use perl; then
+               cd NKF.mod
+               docinto perl
+               perl-module_src_install
+               cd - >/dev/null
+       fi
+       if use python; then
+               cd NKF.python
+               docinto python
+               DOCS= distutils-r1_src_install
+               dodoc CHANGES README.md
+               cd - >/dev/null
+       fi
+}