public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Yixun Lan" <dlan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3m/
Date: Sat,  3 Dec 2016 05:48:50 +0000 (UTC)	[thread overview]
Message-ID: <1480744079.8980adf0be95c6fa394f71a2b7ff63b475c87aa5.dlan@gentoo> (raw)

commit:     8980adf0be95c6fa394f71a2b7ff63b475c87aa5
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  3 05:47:12 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Dec  3 05:47:59 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8980adf0

www-client/w3m: version bump, fix various security issue

1) tracking new repo source from github
   https://github.com/tats/w3m
2) fix various security issue, see bug 600176
3) drop USE=vanilla, since all patches accepted by upstream

Gentoo-Bug: 576514, 600176

Package-Manager: portage-2.3.2
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 www-client/w3m/Manifest            |   1 +
 www-client/w3m/w3m-0.5.3-r9.ebuild | 121 +++++++++++++++++++++++++++++++++++++
 2 files changed, 122 insertions(+)

diff --git a/www-client/w3m/Manifest b/www-client/w3m/Manifest
index e4b958e..3545845 100644
--- a/www-client/w3m/Manifest
+++ b/www-client/w3m/Manifest
@@ -1 +1,2 @@
+DIST w3m-0.5.3.git20161120.tar.gz 2177917 SHA256 62a5b066aaf5e23afec6decd962b966f333352150f8072193cba98320676f060 SHA512 81ecf9e5d9067a82efa5464e5f9396327a6333f9e414458a972b2b7bff138bd17c490b5258e34cb1e338c7a6c0dd6105a1bfd1e0d02edfadead79caa39106a5c WHIRLPOOL 1b0dbad59433f1ceb0ed566ba05f79e7f75f2a164592dbc6425c775d0f2d111955c1259478d96087b405b6d0c62694d7af49f589149a7ec02b5482dd05eed9e1
 DIST w3m-0.5.3.tar.gz 2202328 SHA256 e994d263f2fd2c22febfbe45103526e00145a7674a0fda79c822b97c2770a9e3 SHA512 43508c76d07b4d8f19c19f975c0b870aeb94abf0744b6128ee01c759d4e409a8b57bc866baeaf990f309ff73e9a7b02ca455d272b1dd0a93fafb8c72b1fe6d14 WHIRLPOOL 8f7dcaca362091227e29d7a6583ed796711904681a60e01d5838e45de003d60a9d88361d39b4d04056b67a14e51fe09e9d5b39fc8da18e83086484c974010cfe

diff --git a/www-client/w3m/w3m-0.5.3-r9.ebuild b/www-client/w3m/w3m-0.5.3-r9.ebuild
new file mode 100644
index 00000000..a0f3e0b
--- /dev/null
+++ b/www-client/w3m/w3m-0.5.3-r9.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils prefix vcs-snapshot
+
+MY_REL="git20161120"
+MY_P="${P}.${MY_REL}"
+
+DESCRIPTION="Text based WWW browser, supports tables and frames"
+HOMEPAGE="https://github.com/tats/w3m"
+SRC_URI="https://github.com/tats/w3m/archive/v${PV}+${MY_REL}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="w3m"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
+IUSE="X fbcon gpm gtk imlib libressl lynxkeymap nls nntp ssl unicode xface l10n_ja"
+
+# We cannot build w3m with gtk+2 w/o X because gtk+2 ebuild doesn't
+# allow us to build w/o X, so we have to give up framebuffer w3mimg....
+RDEPEND=">=sys-libs/ncurses-5.2-r3:0=
+	>=sys-libs/zlib-1.1.3-r2
+	>=dev-libs/boehm-gc-6.2
+	X? ( x11-libs/libXext x11-libs/libXdmcp )
+	gtk? ( x11-libs/gdk-pixbuf )
+	!gtk? ( imlib? ( >=media-libs/imlib2-1.1.0[X] ) )
+	xface? ( media-libs/compface )
+	gpm? ( >=sys-libs/gpm-1.19.3-r5 )
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+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
+	hprefixify acinclude.m4
+	eautoconf
+}
+
+src_configure() {
+	local myconf imagelibval imageval
+
+	if use gtk ; then
+		imagelibval="gtk2"
+	elif use imlib ; then
+		imagelibval="imlib2"
+	fi
+
+	if [ ! -z "${imagelibval}" ] ; then
+		use X && imageval="${imageval}${imageval:+,}x11"
+		use X && use fbcon && imageval="${imageval}${imageval:+,}fb"
+	fi
+
+	# emacs-w3m doesn't like "--enable-m17n --disable-unicode,"
+	# so we better enable or disable both. Default to enable
+	# m17n and unicode, see bug #47046.
+	if use l10n_ja ; then
+		if use unicode ; then
+			myconf="${myconf} --enable-japanese=U"
+		else
+			myconf="${myconf} --enable-japanese=E"
+		fi
+	elif use unicode ; then
+		myconf="${myconf} --with-charset=UTF-8"
+	else
+		myconf="${myconf} --with-charset=US-ASCII"
+	fi
+
+	# lynxkeymap IUSE flag. bug #49397
+	if use lynxkeymap ; then
+		myconf="${myconf} --enable-keymap=lynx"
+	else
+		myconf="${myconf} --enable-keymap=w3m"
+	fi
+
+	econf \
+		--with-editor="${EPREFIX}/usr/bin/vi" \
+		--with-mailer="${EPREFIX}/bin/mail" \
+		--with-browser="${EPREFIX}/usr/bin/xdg-open" \
+		--with-termlib=yes \
+		--enable-image=${imageval:-no} \
+		--with-imagelib="${imagelibval:-no}" \
+		--without-migemo \
+		--enable-m17n \
+		--enable-unicode \
+		$(use_enable gpm mouse) \
+		$(use_enable nls) \
+		$(use_enable nntp) \
+		$(use_enable ssl digest-auth) \
+		$(use_with ssl) \
+		$(use_enable xface) \
+		${myconf}
+}
+
+src_install() {
+
+	emake DESTDIR="${D}" install
+
+	# http://www.sic.med.tohoku.ac.jp/~satodai/w3m-dev/200307.month/3944.html
+	insinto /etc/${PN}
+	newins "${FILESDIR}/${PN}.mailcap" mailcap
+
+	insinto /usr/share/${PN}/Bonus
+	doins Bonus/*
+	dodoc README NEWS TODO ChangeLog
+	docinto doc-en ; dodoc doc/*
+	if use l10n_ja ; then
+		docinto doc-jp ; dodoc doc-jp/*
+	else
+		rm -rf "${ED}"/usr/share/man/ja || die
+	fi
+}


             reply	other threads:[~2016-12-03  5:48 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-03  5:48 Yixun Lan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-02-03  2:05 [gentoo-commits] repo/gentoo:master commit in: www-client/w3m/ Sam James
2023-02-03  2:05 Sam James
2023-02-03  2:05 Sam James
2023-02-02 19:42 Arthur Zamarin
2023-02-02 18:52 Arthur Zamarin
2023-02-02 18:52 Arthur Zamarin
2023-02-02 18:21 Arthur Zamarin
2023-01-25  7:13 Sam James
2023-01-25  7:13 Sam James
2023-01-25  6:10 Sam James
2022-12-07 14:41 Sam James
2022-08-16  7:48 Agostino Sarubbo
2022-08-16  7:47 Agostino Sarubbo
2022-08-16  7:46 Agostino Sarubbo
2022-08-16  7:45 Agostino Sarubbo
2022-08-16  7:44 Agostino Sarubbo
2022-08-16  5:36 Joonas Niilola
2022-08-16  5:36 Joonas Niilola
2022-08-10  6:03 Joonas Niilola
2022-05-14  0:42 Sam James
2022-05-09  5:29 WANG Xuerui
2022-02-21 14:03 Joonas Niilola
2022-02-21 14:03 Joonas Niilola
2022-02-12 18:43 Jonas Stein
2021-07-16 21:44 Sam James
2021-07-15 21:42 Sam James
2021-07-15  7:42 Agostino Sarubbo
2021-07-15  7:40 Agostino Sarubbo
2021-07-15  7:38 Agostino Sarubbo
2021-07-14 16:20 Sam James
2021-07-14 16:20 Sam James
2021-06-29 22:08 Yixun Lan
2021-04-30 18:30 Mikle Kolyada
2021-04-27  7:27 Ulrich Müller
2021-04-26  9:57 Sam James
2021-01-06 11:37 Fabian Groffen
2020-12-17 14:00 Mart Raudsepp
2020-11-16 19:51 Mike Gilbert
2020-02-13 21:40 David Seifert
2019-02-25 13:26 Akinori Hattori
2018-12-27 18:48 Fabian Groffen
2018-07-22 13:14 Akinori Hattori
2018-04-07 16:42 Patrice Clement
2018-04-07 12:07 Sergei Trofimovich
2018-04-07 12:05 Sergei Trofimovich
2018-04-06 22:44 Sergei Trofimovich
2018-04-05 13:43 Thomas Deutschmann
2018-04-04 22:26 Sergei Trofimovich
2018-04-04 16:13 Aaron Bauman
2018-04-03 13:32 Akinori Hattori
2018-04-03 13:32 Akinori Hattori
2018-04-03 13:32 Akinori Hattori
2018-01-15 10:52 Lars Wendler
2017-09-28 17:18 Mike Gilbert
2016-12-22  9:34 Agostino Sarubbo
2016-12-20  9:44 Agostino Sarubbo
2016-12-19 15:12 Agostino Sarubbo
2016-12-19 14:35 Agostino Sarubbo
2016-12-06 11:53 Agostino Sarubbo
2016-12-06 11:50 Agostino Sarubbo
2016-12-05 15:49 Tobias Klausmann
2016-07-21  1:53 Benda XU
2016-06-28  6:10 Ulrich Müller
2016-05-12 13:56 Mike Gilbert
2016-05-11 20:11 Anthony G. Basile
2016-02-28  6:12 Matt Thode

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1480744079.8980adf0be95c6fa394f71a2b7ff63b475c87aa5.dlan@gentoo \
    --to=dlan@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox