commit: 8ee43ba4e036db70fff258f3edb2f0335385e93f
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 4 15:04:12 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Dec 4 15:05:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee43ba4
www-client/w3m: fix USE="-ssl" err, missing <time.h>
Gentoo-Bug: 601498
Package-Manager: portage-2.3.2
www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch | 13 +++++++++++++
www-client/w3m/w3m-0.5.3-r9.ebuild | 8 +++++---
2 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch
b/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch
new file mode 100644
index 00000000..03efd85
--- /dev/null
+++ b/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch
@@ -0,0 +1,13 @@
+diff --git a/html.h b/html.h
+index c490655..2a9a431 100644
+--- a/html.h
++++ b/html.h
+@@ -8,6 +8,8 @@
+ #include <openssl/ssl.h>
+ #endif /* USE_SSL */
+
++#include <time.h>
++
+ #define StrUFgets(f) StrISgets((f)->stream)
+ #define StrmyUFgets(f) StrmyISgets((f)->stream)
+ #define UFgetc(f) ISgetc((f)->stream)
diff --git a/www-client/w3m/w3m-0.5.3-r9.ebuild
b/www-client/w3m/w3m-0.5.3-r9.ebuild
index a0f3e0b..bc191ce 100644
--- a/www-client/w3m/w3m-0.5.3-r9.ebuild
+++ b/www-client/w3m/w3m-0.5.3-r9.ebuild
@@ -34,11 +34,13 @@ RDEPEND=">=sys-libs/ncurses-5.2-r3:0=
DEPEND="${RDEPEND}
virtual/pkgconfig"
-S="${WORKDIR}"/${MY_P}
+PATCHES=(
+ "${FILESDIR}/${P}-underlinking.patch"
+ "${FILESDIR}/${P}-fix-missing-time.patch"
+)
+S="${WORKDIR}"/${MY_P}
src_prepare() {
- epatch "${FILESDIR}/${PN}-0.5.3-underlinking.patch"
-
default
ecvs_clean
sed -i -e "/^AR=/s/ar/$(tc-getAR)/" {.,w3mimg,libwc}/Makefile.in || die