diff options
author | Fabian Groffen <grobian@gentoo.org> | 2022-04-25 08:24:49 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2022-04-25 08:26:04 +0200 |
commit | 864089dad9b684eaebb54bfcd67f4f94afa28a83 (patch) | |
tree | ec803cced7de6327265a10151a352319492c58ff /app-text/html2text | |
parent | media-sound/kmidimon: bump to 1.3.0 (diff) | |
download | gentoo-864089dad9b684eaebb54bfcd67f4f94afa28a83.tar.gz gentoo-864089dad9b684eaebb54bfcd67f4f94afa28a83.tar.bz2 gentoo-864089dad9b684eaebb54bfcd67f4f94afa28a83.zip |
app-text/html2text-2.0.1: fix configure #840625
this package uses a hand-crafted configure script and barfs on the
arguments econf passes onto it
Closes: https://bugs.gentoo.org/840625
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'app-text/html2text')
-rw-r--r-- | app-text/html2text/html2text-2.0.1.ebuild | 5 | ||||
-rw-r--r-- | app-text/html2text/html2text-9999.ebuild | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/app-text/html2text/html2text-2.0.1.ebuild b/app-text/html2text/html2text-2.0.1.ebuild index 9d6731b5bc81..124d0962c321 100644 --- a/app-text/html2text/html2text-2.0.1.ebuild +++ b/app-text/html2text/html2text-2.0.1.ebuild @@ -19,9 +19,10 @@ HOMEPAGE="https://github.com/grobian/html2text" LICENSE="GPL-2" SLOT="0" -src_prepare() { - default +src_configure() { + # non-autoconf configure tc-export CXX + ./configure || die } src_compile() { diff --git a/app-text/html2text/html2text-9999.ebuild b/app-text/html2text/html2text-9999.ebuild index f7558b5e8e28..124d0962c321 100644 --- a/app-text/html2text/html2text-9999.ebuild +++ b/app-text/html2text/html2text-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,9 +19,10 @@ HOMEPAGE="https://github.com/grobian/html2text" LICENSE="GPL-2" SLOT="0" -src_prepare() { - default +src_configure() { + # non-autoconf configure tc-export CXX + ./configure || die } src_compile() { |