diff options
author | Jeroen Roovers <jer@gentoo.org> | 2018-03-02 11:26:01 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2018-03-02 11:26:14 +0100 |
commit | 09b77cdaec0cd7b617c92e936cbec78652157e3a (patch) | |
tree | 52778fd37ea24fecb9bf1c1e9a00542882e244ff /app-editors/hteditor/hteditor-2.1.0.ebuild | |
parent | dev-ruby/netrc: add ruby24, ruby25 (diff) | |
download | gentoo-09b77cdaec0cd7b617c92e936cbec78652157e3a.tar.gz gentoo-09b77cdaec0cd7b617c92e936cbec78652157e3a.tar.bz2 gentoo-09b77cdaec0cd7b617c92e936cbec78652157e3a.zip |
app-editors/hteditor: Fix building against sys-libs/ncurses[tinfo] (bug #601080).
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-editors/hteditor/hteditor-2.1.0.ebuild')
-rw-r--r-- | app-editors/hteditor/hteditor-2.1.0.ebuild | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/app-editors/hteditor/hteditor-2.1.0.ebuild b/app-editors/hteditor/hteditor-2.1.0.ebuild index a38ef31072d0..5e5d0e083085 100644 --- a/app-editors/hteditor/hteditor-2.1.0.ebuild +++ b/app-editors/hteditor/hteditor-2.1.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit toolchain-funcs +inherit autotools toolchain-funcs MY_P=${P/editor} @@ -27,7 +27,15 @@ DOCS=( AUTHORS ChangeLog KNOWNBUGS README TODO ) S=${WORKDIR}/${MY_P} -PATCHES=("${FILESDIR}"/${P}-gcc-7.patch) +PATCHES=( + "${FILESDIR}"/${P}-gcc-7.patch + "${FILESDIR}"/${P}-tinfo.patch +) + +src_prepare() { + default + eautoreconf +} src_configure() { econf \ |