diff options
-rw-r--r-- | app-i18n/nkf/Manifest | 2 | ||||
-rw-r--r-- | app-i18n/nkf/files/nkf-2.1.4-test.patch | 11 | ||||
-rw-r--r-- | app-i18n/nkf/nkf-2.1.4.ebuild | 114 |
3 files changed, 0 insertions, 127 deletions
diff --git a/app-i18n/nkf/Manifest b/app-i18n/nkf/Manifest index eeec965bb7b6..498f30cb2ae1 100644 --- a/app-i18n/nkf/Manifest +++ b/app-i18n/nkf/Manifest @@ -1,4 +1,2 @@ -DIST nkf-2.1.4.tar.gz 232479 BLAKE2B 81887b8b0422e92b2fa2be285c1d9fa4da16d572ca50e1fbeef7be4f50af9ba9b64ef140163e325e57c351dd384ee8b09849bad7c37b03d48a9cb4b88f2ee199 SHA512 8667c20a6c5e9c0c6df7ebe2571bcf24090f04dafd306d32f07312acd659ea026a91d31521b4b213f77aba8218159effd73607d0b7236b7287e4a4cde8cc62b9 DIST nkf-2.1.5.tar.gz 215879 BLAKE2B b5ae8f51b0ed97261f9e82ad469adbc9e469e709dc5acb64bfba48881555931eade5fcb772e7956a7401399008ec33bd57c8d6d8b5790eefe4d69d4e1dabed7c SHA512 fa5b683184481b25249872e7902033a72b6a6219b4c63d508a738710029430733e78cfa13b3d69dc281676762765e0452c92244a3855d3acbb5e23aa63214847 -DIST python-nkf-0.2.0_p20141211.tar.gz 187761 BLAKE2B b607e155934dd14ad4d29298f209a233d846122299326df48e45339661d1cd08a789f5278928cb4a32c747673723f5f8877d98c7a6200af6b2dbbf29cd100f00 SHA512 5a493f32244e3cb72d188fa39b810baef31ce5f530309797a05474e3f58cf22fd5f8b6c66cdf5268451c49ffb759c476c707329ce1ccf42da0362ad4f5c24d71 DIST python-nkf-0.2.0_p20191121.tar.gz 188496 BLAKE2B f7c9baaff8129956b7981011634f7ee5ece97e1b6650551a5cc2b50ff51a0c96a454f39e888c80120242a12b202c0422c0ecfc21858b1822a4959ff4c108b10d SHA512 ae1494ebdd488dc40802178a1b7b05c9a9b0bcf9cf9fa5017c6bc9f153c01b475c00f993489a21f643acc4ad61595c38c5afe28f3512a4d24f36eda7abd33958 diff --git a/app-i18n/nkf/files/nkf-2.1.4-test.patch b/app-i18n/nkf/files/nkf-2.1.4-test.patch deleted file mode 100644 index 26964ef4d64b..000000000000 --- a/app-i18n/nkf/files/nkf-2.1.4-test.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/test.pl -+++ b/test.pl -@@ -120,7 +120,7 @@ - return; - } - --do "nkf_test.pl"; -+do "./nkf_test.pl"; - unlink "nkf.in"; - unlink "nkf.out"; - diff --git a/app-i18n/nkf/nkf-2.1.4.ebuild b/app-i18n/nkf/nkf-2.1.4.ebuild deleted file mode 100644 index ac04c630c7d8..000000000000 --- a/app-i18n/nkf/nkf-2.1.4.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_OPTIONAL="1" - -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="https://osdn.net/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 sparc x86" -IUSE="perl python l10n_ja" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/setuptools[${PYTHON_USEDEP}] - ') - )" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${P}-test.patch ) - -src_unpack() { - use python && vcs-snapshot_src_unpack || default -} - -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}"/${PN}-python.patch - cd NKF.python - distutils-r1_src_prepare - cd - >/dev/null - fi - - default -} - -src_configure() { - default - if use perl; then - cd NKF.mod - perl-module_src_configure - cd - >/dev/null - fi - if use python; then - cd NKF.python - distutils-r1_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 -} |