* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kcc/files/, app-i18n/kcc/
@ 2019-08-18 13:07 David Seifert
0 siblings, 0 replies; only message in thread
From: David Seifert @ 2019-08-18 13:07 UTC (permalink / raw
To: gentoo-commits
commit: 4b18bb8e01438a52147cb94e94085bf753fdefd3
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 18 12:53:27 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 18 12:53:27 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b18bb8e
app-i18n/kcc: Port to EAPI 7
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-i18n/kcc/Manifest | 2 +-
app-i18n/kcc/files/kcc-1.0-fix-build-system.patch | 24 +++++++++++++++++++
app-i18n/kcc/kcc-1.0.ebuild | 29 +++++++++++------------
3 files changed, 39 insertions(+), 16 deletions(-)
diff --git a/app-i18n/kcc/Manifest b/app-i18n/kcc/Manifest
index e18b6624212..5bd0c964e30 100644
--- a/app-i18n/kcc/Manifest
+++ b/app-i18n/kcc/Manifest
@@ -1 +1 @@
-DIST kcc.tar.gz 18869 BLAKE2B 122e6e749a0cc6a63244d32d735a23ea3bdc6ce81e90674d4aa8c6460b57c631e504490454710601a3e057c413d5579495533320f37820d4c3afd9053325c1dc SHA512 2ec1645bb7edbe49c6845cd6e6794568bd48efec367d2d9628ddb8a72d2b5edd590be101f4d9c8856764ae85c9aad7b0adf69601b78fddffdc23235b96f65145
+DIST kcc-1.0.tar.gz 18869 BLAKE2B 122e6e749a0cc6a63244d32d735a23ea3bdc6ce81e90674d4aa8c6460b57c631e504490454710601a3e057c413d5579495533320f37820d4c3afd9053325c1dc SHA512 2ec1645bb7edbe49c6845cd6e6794568bd48efec367d2d9628ddb8a72d2b5edd590be101f4d9c8856764ae85c9aad7b0adf69601b78fddffdc23235b96f65145
diff --git a/app-i18n/kcc/files/kcc-1.0-fix-build-system.patch b/app-i18n/kcc/files/kcc-1.0-fix-build-system.patch
new file mode 100644
index 00000000000..7818215d62f
--- /dev/null
+++ b/app-i18n/kcc/files/kcc-1.0-fix-build-system.patch
@@ -0,0 +1,24 @@
+--- a/Makefile
++++ b/Makefile
+@@ -10,11 +10,9 @@
+ BINPATH = /usr/local/bin
+ MANPATH = /usr/local/man
+ JMANDIR = japanese
+- CFLAGS = -O
+
+ SHELL = /bin/sh
+ CP = cp
+- MAKE = make
+ INSTALL = install
+
+ CMDS = kcc
+@@ -23,9 +21,6 @@
+
+ all: kcc
+
+-kcc: kcc.o
+- $(CC) $(CFLAGS) -o kcc kcc.o
+-
+ install: $(BINPATH)/kcc
+ @echo "\`make install' done."
+ @echo "Run \`make install.man' to install a manual."
diff --git a/app-i18n/kcc/kcc-1.0.ebuild b/app-i18n/kcc/kcc-1.0.ebuild
index bcb22071394..20ee1ee5735 100644
--- a/app-i18n/kcc/kcc-1.0.ebuild
+++ b/app-i18n/kcc/kcc-1.0.ebuild
@@ -1,34 +1,33 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="4"
+EAPI=7
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
DESCRIPTION="A Kanji code converter"
HOMEPAGE="http://www2s.biglobe.ne.jp/~Nori/ruby/"
-SRC_URI="ftp://ftp.jp.freebsd.org/pub/FreeBSD/ports/distfiles/${PN}.tar.gz"
+SRC_URI="mirror://gentoo/${PN}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
-IUSE=""
S="${WORKDIR}/${PN}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-gcc3-gentoo.diff"
- epatch "${FILESDIR}/${PN}-exit.diff"
- sed -i "s:\(-o kcc\):\$(LDFLAGS) \1:" Makefile
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+PATCHES=(
+ "${FILESDIR}"/${PN}-gcc3-gentoo.diff
+ "${FILESDIR}"/${PN}-exit.diff
+ "${FILESDIR}"/${PN}-1.0-fix-build-system.patch
+)
+
+src_configure() {
+ tc-export CC
}
src_install() {
dobin kcc
- dodoc README
+ einstalldocs
+
cp -f kcc.jman kcc.1 || die
doman -i18n=ja kcc.1
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-08-18 13:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-18 13:07 [gentoo-commits] repo/gentoo:master commit in: app-i18n/kcc/files/, app-i18n/kcc/ David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox