diff options
author | Akinori Hattori <hattya@gentoo.org> | 2019-10-03 21:48:39 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2019-10-03 21:48:39 +0900 |
commit | 4e839cb3a2a09d9700f2db8c79fb7ec56a55cc50 (patch) | |
tree | d03e9cc205c703c5ade0a0fc7b8f012eb2ba3c9b /app-i18n/skkfep | |
parent | app-i18n/yaskkserv: new upstream release (diff) | |
download | gentoo-4e839cb3a2a09d9700f2db8c79fb7ec56a55cc50.tar.gz gentoo-4e839cb3a2a09d9700f2db8c79fb7ec56a55cc50.tar.bz2 gentoo-4e839cb3a2a09d9700f2db8c79fb7ec56a55cc50.zip |
app-i18n/skkfep: fix build with sys-libs/ncurses[tinfo]
Closes: https://bugs.gentoo.org/689992
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Akinori Hattori <hattya@gentoo.org>
Diffstat (limited to 'app-i18n/skkfep')
-rw-r--r-- | app-i18n/skkfep/skkfep-0.87-r1.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app-i18n/skkfep/skkfep-0.87-r1.ebuild b/app-i18n/skkfep/skkfep-0.87-r1.ebuild index a74c53e6af37..09854d0d2025 100644 --- a/app-i18n/skkfep/skkfep-0.87-r1.ebuild +++ b/app-i18n/skkfep/skkfep-0.87-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -16,7 +16,8 @@ IUSE="" DEPEND="sys-apps/sed sys-libs/ncurses:= - virtual/awk" + virtual/awk + virtual/pkgconfig" RDEPEND="sys-libs/ncurses:= app-i18n/skk-jisyo" @@ -36,7 +37,8 @@ src_prepare() { src_compile() { emake \ CC="$(tc-getCC)" \ - OPTIMIZE="${CFLAGS}" + OPTIMIZE="${CFLAGS}" \ + EXTRALIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" } src_install() { |