From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 748DF138252 for ; Wed, 11 May 2016 20:11:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B78DBE0807; Wed, 11 May 2016 20:11:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BAF2E0807 for ; Wed, 11 May 2016 20:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 569C134072E for ; Wed, 11 May 2016 20:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 692E832E for ; Wed, 11 May 2016 20:11:42 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1462997491.ce8aedf1fe3f4b893aa9e327d133076b704f55d5.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3m/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/w3m/w3m-0.5.3-r6.ebuild X-VCS-Directories: www-client/w3m/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: ce8aedf1fe3f4b893aa9e327d133076b704f55d5 X-VCS-Branch: master Date: Wed, 11 May 2016 20:11:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2d0b7600-f480-4fc0-9180-9acdf2c5ef25 X-Archives-Hash: 5fdd9d7c99f4fac058aed17b5084e9e2 commit: ce8aedf1fe3f4b893aa9e327d133076b704f55d5 Author: Anthony G. Basile gentoo org> AuthorDate: Wed May 11 20:11:31 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed May 11 20:11:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce8aedf1 www-client/w3m: add libressl support and clean up USE=migemo Package-Manager: portage-2.2.26 www-client/w3m/w3m-0.5.3-r6.ebuild | 126 +++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) diff --git a/www-client/w3m/w3m-0.5.3-r6.ebuild b/www-client/w3m/w3m-0.5.3-r6.ebuild new file mode 100644 index 0000000..78054de --- /dev/null +++ b/www-client/w3m/w3m-0.5.3-r6.ebuild @@ -0,0 +1,126 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="Text based WWW browser, supports tables and frames" +HOMEPAGE="http://w3m.sourceforge.net/" +SRC_URI="mirror://sourceforge/w3m/${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 vanilla xface linguas_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= + >=sys-libs/zlib-1.1.3-r2 + >=dev-libs/boehm-gc-6.2 + X? ( x11-libs/libXext x11-libs/libXdmcp ) + gtk? ( + vanilla? ( x11-libs/gtk+:2 ) + !vanilla? ( 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" + +src_prepare() { + epatch \ + "${FILESDIR}/${PN}-0.5.2-gc72.patch" \ + "${FILESDIR}/${PN}-0.5.3-parallel-make.patch" \ + "${FILESDIR}/${PN}-0.5.3-glibc214.patch" \ + "${FILESDIR}/${PN}-0.5.3-underlinking.patch" \ + "${FILESDIR}/${PN}-0.5.3-tinfo.patch" \ + "${FILESDIR}/${PN}-0.5.3-gettext.patch" + use vanilla || \ + epatch "${FILESDIR}"/${PN}-0.5.3-button.patch \ + "${FILESDIR}"/${P}-gdk-pixbuf.patch \ + "${FILESDIR}"/${P}-input-type-default.patch \ + "${FILESDIR}"/${P}-url-schema.patch + ecvs_clean + sed -i -e "/^AR=/s/ar/$(tc-getAR)/" {.,w3mimg,libwc}/Makefile.in || die + 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 linguas_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 linguas_ja ; then + docinto doc-jp ; dodoc doc-jp/* + else + rm -rf "${ED}"/usr/share/man/ja || die + fi +}