diff options
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/fe/fe-2.0.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app-editors/fe/fe-2.0.ebuild b/app-editors/fe/fe-2.0.ebuild index 9e1866c107ce..ca6658d94079 100644 --- a/app-editors/fe/fe-2.0.ebuild +++ b/app-editors/fe/fe-2.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="A small and easy to use folding editor" HOMEPAGE="http://www.moria.de/~michael/fe/" SRC_URI="http://www.moria.de/~michael/fe/${P}.tar.gz" @@ -15,11 +17,14 @@ IUSE="sendmail" RDEPEND="sys-libs/ncurses:0= sendmail? ( virtual/mta )" DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=("${FILESDIR}"/${PN}-1.8-makefile.patch) src_configure() { - econf $(use_enable sendmail) + econf \ + $(use_enable sendmail) \ + LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } src_install() { |