summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYixun Lan <dlan@gentoo.org>2016-12-04 23:04:12 +0800
committerYixun Lan <dlan@gentoo.org>2016-12-04 23:05:52 +0800
commit8ee43ba4e036db70fff258f3edb2f0335385e93f (patch)
tree5938671fdaf5e67559803ab7f49a30f7eca7a69b
parentdev-python/fedmsg: Bump to version 0.18.1 (diff)
downloadgentoo-8ee43ba4.tar.gz
gentoo-8ee43ba4.tar.bz2
gentoo-8ee43ba4.zip
www-client/w3m: fix USE="-ssl" err, missing <time.h>
Gentoo-Bug: 601498 Package-Manager: portage-2.3.2
-rw-r--r--www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch13
-rw-r--r--www-client/w3m/w3m-0.5.3-r9.ebuild8
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 000000000000..03efd85d6536
--- /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 a0f3e0b789cb..bc191ce7567c 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