diff options
author | Akinori Hattori <hattya@gentoo.org> | 2017-06-25 14:12:37 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2017-06-25 14:12:37 +0900 |
commit | 1dcd09284b83aa4f32ab1633b61b53e6e52e4e51 (patch) | |
tree | b8e352cb697996b580f68776e2a52a8ac96267bb /app-i18n/skkfep/skkfep-0.87-r1.ebuild | |
parent | app-i18n/skkfep: update HOMEPAGE and SRC_URI (diff) | |
download | gentoo-1dcd09284b83aa4f32ab1633b61b53e6e52e4e51.tar.gz gentoo-1dcd09284b83aa4f32ab1633b61b53e6e52e4e51.tar.bz2 gentoo-1dcd09284b83aa4f32ab1633b61b53e6e52e4e51.zip |
app-i18n/skkfep: update to EAPI 6
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-i18n/skkfep/skkfep-0.87-r1.ebuild')
-rw-r--r-- | app-i18n/skkfep/skkfep-0.87-r1.ebuild | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/app-i18n/skkfep/skkfep-0.87-r1.ebuild b/app-i18n/skkfep/skkfep-0.87-r1.ebuild index 82f2939517fa..57a0760d5339 100644 --- a/app-i18n/skkfep/skkfep-0.87-r1.ebuild +++ b/app-i18n/skkfep/skkfep-0.87-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 -inherit eutils toolchain-funcs +EAPI="6" + +inherit toolchain-funcs DESCRIPTION="A SKK-like Japanese input method for console" HOMEPAGE="http://aitoweb.world.coocan.jp/soft.html" @@ -13,25 +14,29 @@ SLOT="0" KEYWORDS="~amd64 ppc x86" IUSE="" -RDEPEND=">=sys-libs/ncurses-5.7-r7" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 +DEPEND="sys-apps/sed + sys-libs/ncurses:= virtual/awk" -RDEPEND="${RDEPEND} +RDEPEND="sys-libs/ncurses:= app-i18n/skk-jisyo" +PATCHES=( "${FILESDIR}"/${PN}-gentoo.patch ) +DOCS=( README HISTORY TODO ) + src_prepare() { sed -i "/SYSTEM_DIC_NAME/a#define SYSTEM_DIC_NAME \"${EPREFIX}/usr/share/skk/SKK-JISYO.L\"" config.h - epatch "${FILESDIR}"/${PN}-gentoo.patch + default } src_compile() { - emake CC="$(tc-getCC)" OPTIMIZE="${CFLAGS}" + emake \ + CC="$(tc-getCC)" \ + OPTIMIZE="${CFLAGS}" } src_install() { dobin skkfep escmode doman skkfep.1 - dodoc README HISTORY TODO + einstalldocs } |