summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2013-08-03 06:56:30 +0000
committerAkinori Hattori <hattya@gentoo.org>2013-08-03 06:56:30 +0000
commitbecbb2e3a5974cea1037fec00a4fd94dfe5ae99b (patch)
tree93964bd89d55903407e66dc217f9ef1c0328b3ba
parentStable for sparc, wrt bug #476296 (diff)
downloadgentoo-2-becbb2e3a5974cea1037fec00a4fd94dfe5ae99b.tar.gz
gentoo-2-becbb2e3a5974cea1037fec00a4fd94dfe5ae99b.tar.bz2
gentoo-2-becbb2e3a5974cea1037fec00a4fd94dfe5ae99b.zip
remove old ebuilds
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
-rw-r--r--app-i18n/nkf/ChangeLog6
-rw-r--r--app-i18n/nkf/nkf-2.1.0-r1.ebuild85
-rw-r--r--app-i18n/nkf/nkf-2.1.2.ebuild85
3 files changed, 5 insertions, 171 deletions
diff --git a/app-i18n/nkf/ChangeLog b/app-i18n/nkf/ChangeLog
index bf52e27ebb8e..ff5d521b4eef 100644
--- a/app-i18n/nkf/ChangeLog
+++ b/app-i18n/nkf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-i18n/nkf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.54 2013/05/24 20:25:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/ChangeLog,v 1.55 2013/08/03 06:56:30 hattya Exp $
+
+ 03 Aug 2013; Akinori Hattori <hattya@gentoo.org> -nkf-2.1.0-r1.ebuild,
+ -nkf-2.1.2.ebuild:
+ remove old ebuilds
24 May 2013; Alexis Ballier <aballier@gentoo.org> nkf-2.1.2-r1.ebuild:
keyword ~amd64-fbsd thanks to Yuta SATOH, bug #432410
diff --git a/app-i18n/nkf/nkf-2.1.0-r1.ebuild b/app-i18n/nkf/nkf-2.1.0-r1.ebuild
deleted file mode 100644
index 7ff3ca6cc493..000000000000
--- a/app-i18n/nkf/nkf-2.1.0-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2012 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.4 2012/12/07 19:18:19 ulm 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="ZLIB"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-macos"
-IUSE="perl python linguas_ja"
-
-pkg_setup() {
- if use python ; then
- python_set_active_version 2
- fi
-}
-
-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
-}
-
-pkg_postinst() {
- if use python ; then
- distutils_pkg_postinst
- fi
-}
-
-pkg_postrm() {
- if use python ; then
- distutils_pkg_postrm
- fi
-}
diff --git a/app-i18n/nkf/nkf-2.1.2.ebuild b/app-i18n/nkf/nkf-2.1.2.ebuild
deleted file mode 100644
index 38edb370ea56..000000000000
--- a/app-i18n/nkf/nkf-2.1.2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/nkf/nkf-2.1.2.ebuild,v 1.2 2012/12/07 19:18:19 ulm 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/53171/${P}.tar.gz
- python? ( http://city.plala.jp/moin/NkfPython?action=AttachFile&do=get&target=NKF_python20090602.tgz -> NKF_python20090602.tgz )"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-macos"
-IUSE="perl python linguas_ja"
-
-pkg_setup() {
- if use python ; then
- python_set_active_version 2
- fi
-}
-
-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
-}
-
-pkg_postinst() {
- if use python ; then
- distutils_pkg_postinst
- fi
-}
-
-pkg_postrm() {
- if use python ; then
- distutils_pkg_postrm
- fi
-}