app-i18n/kcc: Port to EAPI 7
authorDavid Seifert <soap@gentoo.org>
Sun, 18 Aug 2019 12:53:27 +0000 (14:53 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 18 Aug 2019 12:53:27 +0000 (14:53 +0200)
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
app-i18n/kcc/Manifest
app-i18n/kcc/files/kcc-1.0-fix-build-system.patch [new file with mode: 0644]
app-i18n/kcc/kcc-1.0.ebuild

index e18b6624212f1118431cd0292f50fb624512b060..5bd0c964e3012e6cf10a76ce07355a6e5f652e11 100644 (file)
@@ -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 (file)
index 0000000..7818215
--- /dev/null
@@ -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."
index bcb2207139494f17ed5195fbbe3bc9a104e28111..20ee1ee5735092873a662e1d53a48203c8f9a0b8 100644 (file)
@@ -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
 }