* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2016-05-11 20:37 Anthony G. Basile
0 siblings, 0 replies; 21+ messages in thread
From: Anthony G. Basile @ 2016-05-11 20:37 UTC (permalink / raw
To: gentoo-commits
commit: 1cdcb63f58c6d8e4ece53d10173fcf244d8a17c6
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed May 11 20:38:01 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed May 11 20:38:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cdcb63f
www-client/w3mmee: add libressl support
Package-Manager: portage-2.2.26
www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild | 158 +++++++++++++++++++++++++++
1 file changed, 158 insertions(+)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild
new file mode 100644
index 0000000..b158b64
--- /dev/null
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild
@@ -0,0 +1,158 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit alternatives eutils toolchain-funcs multilib
+
+IUSE="gpm imlib libressl nls ssl xface"
+
+MY_PV=${PV##*_}-22
+MY_P=${PN}-${MY_PV}
+
+DESCRIPTION="A variant of w3m with support for multiple character encodings"
+SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
+HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
+
+SLOT="0"
+LICENSE="public-domain"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+DEPEND="sys-libs/ncurses:5=
+ >=sys-libs/zlib-1.1.3-r2
+ >=dev-libs/boehm-gc-7.2
+ dev-lang/perl
+ >=dev-libs/libmoe-1.5.3
+ imlib? ( >=media-libs/imlib-1.9.8
+ xface? ( media-libs/compface ) )
+ gpm? ( >=sys-libs/gpm-1.19.3-r5 )
+ nls? ( sys-devel/gettext )
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-w3mman-gentoo.diff \
+ "${FILESDIR}"/${PN}-gcc4{4,5}.patch \
+ "${FILESDIR}"/${P}-glibc214.patch \
+ "${FILESDIR}"/${P}-tinfo.patch \
+ "${FILESDIR}"/${P}-boehm-gc.patch
+ sed -ie "/^AR=/s:ar:$(tc-getAR):" XMakefile || die
+}
+
+src_compile() {
+
+ local myconf myuse
+ myuse="use_cookie=y use_ansi_color=y use_history=y
+ display_code=E system_code=E"
+
+ if use ssl ; then
+ myconf="${myconf} --ssl-includedir=/usr/include/openssl
+ --ssl-libdir=/usr/$(get_libdir)"
+ myuse="${myuse} use_ssl=y use_ssl_verify=y use_digest_auth=y"
+ else
+ myuse="${myuse} use_ssl=n"
+ fi
+
+ if use gpm ; then
+ myuse="${myuse} use_mouse=y"
+ else
+ myuse="${myuse} use_mouse=n"
+ fi
+
+ if use nls ; then
+ myconf="${myconf} -locale_dir=/usr/share/locale"
+ else
+ myconf="${myconf} -locale_dir='(NONE)'"
+ fi
+
+ if use imlib ; then
+ myuse="${myuse} use_image=y use_w3mimg_x11=y
+ use_w3mimg_fb=n w3mimgdisplay_setuid=n"
+ if use xface ; then
+ myuse="${myuse} use_xface=y"
+ else
+ myuse="${myuse} use_xface=n"
+ fi
+ else
+ myuse="${myuse} use_image=n"
+ fi
+
+ cat >>config.param<<-EOF
+ lang=MANY
+ accept_lang=en
+ EOF
+
+ env CC=$(tc-getCC) ${myuse} ./configure -nonstop \
+ -prefix=/usr \
+ -suffix=mee \
+ -auxbindir=/usr/$(get_libdir)/w3mmee \
+ -libdir=/usr/$(get_libdir)/w3mmee/cgi-bin \
+ -helpdir=/usr/share/w3mmee \
+ -mandir=/usr/share/man \
+ -sysconfdir=/etc/w3mmee \
+ -model=custom \
+ -libmoe=/usr/$(get_libdir) \
+ -mb_h=/usr/include/moe \
+ -mk_btri=/usr/libexec/moe \
+ -cflags="${CFLAGS}" -ldflags="${LDFLAGS}" \
+ ${myconf} || die
+
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+
+ # w3mman and manpages conflict with those from w3m
+ mv "${D}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
+ mv "${D}"/usr/share/man/man1/w3m{,mee}.1 || die
+
+ dodoc ChangeLog NEWS* README
+ dohtml 00INCOMPATIBLE.html
+
+ docinto en
+ dodoc doc/HISTORY doc/README* doc/keymap.* doc/menu.*
+ dohtml doc/*
+
+ docinto jp
+ dodoc doc-jp/HISTORY doc-jp/README* doc-jp/keymap* doc-jp/menu.*
+ dohtml doc-jp/*
+}
+
+pkg_postinst() {
+
+ w3m_alternatives
+ einfo
+ einfo "If you want to render multilingual text, please refer to"
+ einfo "/usr/share/doc/${PF}/en/README.mee or"
+ einfo "/usr/share/doc/${PF}/jp/README.mee"
+ einfo "and set W3MLANG variable respectively."
+ einfo
+}
+
+pkg_postrm() {
+
+ w3m_alternatives
+}
+
+w3m_alternatives() {
+
+ if [ ! -f /usr/bin/w3m ] ; then
+ alternatives_makesym /usr/bin/w3m \
+ /usr/bin/w3m{m17n,mee}
+ alternatives_makesym /usr/bin/w3mman \
+ /usr/bin/w3m{man-m17n,meeman}
+ alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
+ /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3m.1.gz \
+ /usr/share/man/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
+ /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
+ fi
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2016-05-12 14:09 Anthony G. Basile
0 siblings, 0 replies; 21+ messages in thread
From: Anthony G. Basile @ 2016-05-12 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 907bc8d87f44231dee09dd31376ad9fb6d9d6129
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 14:10:16 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu May 12 14:10:36 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=907bc8d8
www-client/w3mmee: depend on ncurses:0 instead of ncurses:5
Package-Manager: portage-2.2.26
.../w3mmee/{w3mmee-0.3.2_p24-r8.ebuild => w3mmee-0.3.2_p24-r9.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild
similarity index 99%
rename from www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild
rename to www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild
index b158b64..4ebe6ba 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r8.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild
@@ -19,7 +19,7 @@ SLOT="0"
LICENSE="public-domain"
KEYWORDS="~amd64 ~ppc ~x86"
-DEPEND="sys-libs/ncurses:5=
+DEPEND="sys-libs/ncurses:0=
>=sys-libs/zlib-1.1.3-r2
>=dev-libs/boehm-gc-7.2
dev-lang/perl
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-03-31 14:02 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2018-03-31 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 564494be253c18be8838fa5f52a05a390793fdb3
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 31 13:58:39 2018 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sat Mar 31 13:58:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=564494be
www-client/w3mmee: update to EAPI 6
Closes: https://bugs.gentoo.org/601130
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/w3mmee/metadata.xml | 8 +-
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 165 ++++++++++++++++++++++++++
www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild | 158 ------------------------
3 files changed, 169 insertions(+), 162 deletions(-)
diff --git a/www-client/w3mmee/metadata.xml b/www-client/w3mmee/metadata.xml
index c921b96adf6..6f2ca22da23 100644
--- a/www-client/w3mmee/metadata.xml
+++ b/www-client/w3mmee/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>cjk@gentoo.org</email>
- <name>Cjk</name>
-</maintainer>
+ <maintainer type="project">
+ <email>cjk@gentoo.org</email>
+ <name>Cjk</name>
+ </maintainer>
</pkgmetadata>
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
new file mode 100644
index 00000000000..f96eff96014
--- /dev/null
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -0,0 +1,165 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit alternatives multilib toolchain-funcs
+
+MY_PV="${PV##*_}-22"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="A variant of w3m with support for multiple character encodings"
+HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
+SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="public-domain"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="gpm imlib libressl nls ssl xface"
+
+DEPEND=">=dev-libs/boehm-gc-7.2
+ dev-libs/libmoe
+ dev-lang/perl
+ sys-libs/ncurses:0=
+ sys-libs/zlib
+ imlib? (
+ media-libs/imlib
+ xface? ( media-libs/compface )
+ )
+ gpm? ( sys-libs/gpm )
+ nls? ( sys-devel/gettext )
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-boehm-gc.patch
+ "${FILESDIR}"/${PN}-gcc-4.4.patch
+ "${FILESDIR}"/${PN}-gcc-4.5.patch
+ "${FILESDIR}"/${PN}-glibc-2.14.patch
+ "${FILESDIR}"/${PN}-tinfo.patch
+ "${FILESDIR}"/${PN}-w3mman-gentoo.patch
+)
+DOCS=( ChangeLog NEWS{,.mee} README )
+HTML_DOCS=( 00INCOMPATIBLE.html )
+
+src_prepare() {
+ default
+
+ sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
+}
+
+src_configure() {
+ local myconf=(
+ -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)' )
+ )
+ local myuse=(
+ display_code=E
+ system_code=E
+ use_ansi_color=y
+ use_cookie=y
+ use_history=y
+ use_mouse=$(usex gpm y n)
+ )
+
+ if use ssl; then
+ myconf+=(
+ --ssl-includedir="${EPREFIX}/usr/include/openssl"
+ --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
+ )
+ myuse+=(
+ use_digest_auth=y
+ use_ssl=y
+ use_ssl_verify=y
+ )
+ else
+ myuse+=( use_ssl=n )
+ fi
+ if use imlib; then
+ myuse+=(
+ use_image=y
+ use_w3mimg_fb=n
+ use_w3mimg_x11=y
+ use_xface=$(usex xface y n)
+ w3mimgdisplay_setuid=n
+ )
+ else
+ myuse+=( use_image=n )
+ fi
+
+ cat <<-EOF >> config.param
+ lang=MANY
+ accept_lang=en
+ EOF
+
+ env CC=$(tc-getCC) "${myuse[@]}" ./configure \
+ -nonstop \
+ -prefix="${EPREFIX}/usr" \
+ -suffix=mee \
+ -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
+ -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
+ -helpdir="${EPREFIX}/usr/share/${PN}" \
+ -mandir="${EPREFIX}/usr/share/man" \
+ -sysconfdir="${EPREFIX}/etc/${PN}" \
+ -model=custom \
+ -libmoe="${EPREFIX}/usr/$(get_libdir)" \
+ -mb_h="${EPREFIX}/usr/include/moe" \
+ -mk_btri="${EPREFIX}/usr/libexec/moe" \
+ -cflags="${CFLAGS}" \
+ -ldflags="${LDFLAGS}" \
+ "${myconf[@]}" \
+ || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ einstalldocs
+
+ # w3mman and manpages conflict with those from w3m
+ mv "${ED}"/usr/share/man/man1/w3m{,mee}.1 || die
+ mv "${ED}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
+
+ docinto html/en
+ dodoc doc/*.html
+ rm -f doc/*.html
+ docinto en
+ dodoc doc/{HISTORY,README,keymap,menu}*
+
+ docinto html/ja
+ dodoc doc-jp/*.html
+ rm -f doc-jp/*.html
+ docinto ja
+ dodoc doc-jp/{HISTORY,README,keymap,menu}*
+}
+
+pkg_postinst() {
+ w3m_alternatives
+ einfo
+ einfo "If you want to render multilingual text, please refer to"
+ einfo "/usr/share/doc/${PF}/en/README.mee or"
+ einfo "/usr/share/doc/${PF}/jp/README.mee"
+ einfo "and set W3MLANG variable respectively."
+ einfo
+}
+
+pkg_postrm() {
+ w3m_alternatives
+}
+
+w3m_alternatives() {
+ if [[ ! -f /usr/bin/w3m ]]; then
+ alternatives_makesym /usr/bin/w3m \
+ /usr/bin/w3m{m17n,mee}
+ alternatives_makesym /usr/bin/w3mman \
+ /usr/bin/w3m{man-m17n,meeman}
+ alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
+ /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3m.1.gz \
+ /usr/share/man/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
+ /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
+ fi
+}
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild
deleted file mode 100644
index 9aec0de8636..00000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r9.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit alternatives eutils toolchain-funcs multilib
-
-IUSE="gpm imlib libressl nls ssl xface"
-
-MY_PV=${PV##*_}-22
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="A variant of w3m with support for multiple character encodings"
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="sys-libs/ncurses:0=
- >=sys-libs/zlib-1.1.3-r2
- >=dev-libs/boehm-gc-7.2
- dev-lang/perl
- >=dev-libs/libmoe-1.5.3
- imlib? ( >=media-libs/imlib-1.9.8
- xface? ( media-libs/compface ) )
- gpm? ( >=sys-libs/gpm-1.19.3-r5 )
- nls? ( sys-devel/gettext )
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-boehm-gc.patch
- epatch "${FILESDIR}"/${PN}-gcc-4.4.patch
- epatch "${FILESDIR}"/${PN}-gcc-4.5.patch
- epatch "${FILESDIR}"/${PN}-glibc-2.14.patch
- epatch "${FILESDIR}"/${PN}-tinfo.patch
- epatch "${FILESDIR}"/${PN}-w3mman-gentoo.patch
- sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
-}
-
-src_compile() {
-
- local myconf myuse
- myuse="use_cookie=y use_ansi_color=y use_history=y
- display_code=E system_code=E"
-
- if use ssl ; then
- myconf="${myconf} --ssl-includedir=/usr/include/openssl
- --ssl-libdir=/usr/$(get_libdir)"
- myuse="${myuse} use_ssl=y use_ssl_verify=y use_digest_auth=y"
- else
- myuse="${myuse} use_ssl=n"
- fi
-
- if use gpm ; then
- myuse="${myuse} use_mouse=y"
- else
- myuse="${myuse} use_mouse=n"
- fi
-
- if use nls ; then
- myconf="${myconf} -locale_dir=/usr/share/locale"
- else
- myconf="${myconf} -locale_dir='(NONE)'"
- fi
-
- if use imlib ; then
- myuse="${myuse} use_image=y use_w3mimg_x11=y
- use_w3mimg_fb=n w3mimgdisplay_setuid=n"
- if use xface ; then
- myuse="${myuse} use_xface=y"
- else
- myuse="${myuse} use_xface=n"
- fi
- else
- myuse="${myuse} use_image=n"
- fi
-
- cat >>config.param<<-EOF
- lang=MANY
- accept_lang=en
- EOF
-
- env CC=$(tc-getCC) ${myuse} ./configure -nonstop \
- -prefix=/usr \
- -suffix=mee \
- -auxbindir=/usr/$(get_libdir)/w3mmee \
- -libdir=/usr/$(get_libdir)/w3mmee/cgi-bin \
- -helpdir=/usr/share/w3mmee \
- -mandir=/usr/share/man \
- -sysconfdir=/etc/w3mmee \
- -model=custom \
- -libmoe=/usr/$(get_libdir) \
- -mb_h=/usr/include/moe \
- -mk_btri=/usr/libexec/moe \
- -cflags="${CFLAGS}" -ldflags="${LDFLAGS}" \
- ${myconf} || die
-
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- # w3mman and manpages conflict with those from w3m
- mv "${D}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
- mv "${D}"/usr/share/man/man1/w3m{,mee}.1 || die
-
- dodoc ChangeLog NEWS* README
- dohtml 00INCOMPATIBLE.html
-
- docinto en
- dodoc doc/HISTORY doc/README* doc/keymap.* doc/menu.*
- dohtml doc/*
-
- docinto jp
- dodoc doc-jp/HISTORY doc-jp/README* doc-jp/keymap* doc-jp/menu.*
- dohtml doc-jp/*
-}
-
-pkg_postinst() {
-
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${PF}/en/README.mee or"
- einfo "/usr/share/doc/${PF}/jp/README.mee"
- einfo "and set W3MLANG variable respectively."
- einfo
-}
-
-pkg_postrm() {
-
- w3m_alternatives
-}
-
-w3m_alternatives() {
-
- if [ ! -f /usr/bin/w3m ] ; then
- alternatives_makesym /usr/bin/w3m \
- /usr/bin/w3m{m17n,mee}
- alternatives_makesym /usr/bin/w3mman \
- /usr/bin/w3m{man-m17n,meeman}
- alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
- /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3m.1.gz \
- /usr/share/man/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
- /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
- fi
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-04-01 12:24 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2018-04-01 12:24 UTC (permalink / raw
To: gentoo-commits
commit: 7e56ae0eb71a58bb96dd2b942806d294a2b01b22
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 1 12:21:24 2018 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Apr 1 12:23:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e56ae0e
www-client/w3mmee: fix build
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild | 80 ++++++++++++++--------------
1 file changed, 40 insertions(+), 40 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild
index d49a167a56c..25c92b189b7 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild
@@ -1,34 +1,34 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-inherit alternatives eutils toolchain-funcs multilib
+inherit alternatives eutils multilib toolchain-funcs
-IUSE="gpm imlib nls ssl xface"
-
-MY_PV=${PV##*_}-22
-MY_P=${PN}-${MY_PV}
+MY_PV="${PV##*_}-22"
+MY_P="${PN}-${MY_PV}"
DESCRIPTION="A variant of w3m with support for multiple character encodings"
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
+SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="public-domain"
KEYWORDS="amd64 ppc x86"
+IUSE="gpm imlib nls ssl xface"
-DEPEND=">=sys-libs/ncurses-5.2-r3
- >=sys-libs/zlib-1.1.3-r2
- >=dev-libs/boehm-gc-7.2
- dev-lang/perl
+DEPEND=">=dev-libs/boehm-gc-7.2
>=dev-libs/libmoe-1.5.3
- imlib? ( >=media-libs/imlib-1.9.8
- xface? ( media-libs/compface ) )
+ dev-lang/perl
+ >=sys-libs/ncurses-5.2-r3
+ >=sys-libs/zlib-1.1.3-r2
+ imlib? (
+ >=media-libs/imlib-1.9.8
+ xface? ( media-libs/compface )
+ )
gpm? ( >=sys-libs/gpm-1.19.3-r5 )
nls? ( sys-devel/gettext )
ssl? ( >=dev-libs/openssl-0.9.6b )"
RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
@@ -37,18 +37,19 @@ src_unpack() {
epatch "${FILESDIR}"/${PN}-gcc-4.4.patch
epatch "${FILESDIR}"/${PN}-gcc-4.5.patch
epatch "${FILESDIR}"/${PN}-glibc-2.14.patch
+ epatch "${FILESDIR}"/${PN}-rc_name.patch
+ epatch "${FILESDIR}"/${PN}-time.patch
epatch "${FILESDIR}"/${PN}-tinfo.patch
epatch "${FILESDIR}"/${PN}-w3mman.patch
- sed -ie "/^AR=/s:ar:$(tc-getAR):" XMakefile || die
+ sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile || die
}
src_compile() {
-
local myconf myuse
myuse="use_cookie=y use_ansi_color=y use_history=y
display_code=E system_code=E"
- if use ssl ; then
+ if use ssl; then
myconf="${myconf} --ssl-includedir=/usr/include/openssl
--ssl-libdir=/usr/$(get_libdir)"
myuse="${myuse} use_ssl=y use_ssl_verify=y use_digest_auth=y"
@@ -56,22 +57,22 @@ src_compile() {
myuse="${myuse} use_ssl=n"
fi
- if use gpm ; then
+ if use gpm; then
myuse="${myuse} use_mouse=y"
else
myuse="${myuse} use_mouse=n"
fi
- if use nls ; then
+ if use nls; then
myconf="${myconf} -locale_dir=/usr/share/locale"
else
myconf="${myconf} -locale_dir='(NONE)'"
fi
- if use imlib ; then
+ if use imlib; then
myuse="${myuse} use_image=y use_w3mimg_x11=y
use_w3mimg_fb=n w3mimgdisplay_setuid=n"
- if use xface ; then
+ if use xface; then
myuse="${myuse} use_xface=y"
else
myuse="${myuse} use_xface=n"
@@ -80,50 +81,51 @@ src_compile() {
myuse="${myuse} use_image=n"
fi
- cat >>config.param<<-EOF
+ cat <<-EOF >> config.param
lang=MANY
accept_lang=en
EOF
- env CC=$(tc-getCC) ${myuse} ./configure -nonstop \
+ env CC=$(tc-getCC) ${myuse} ./configure \
+ -nonstop \
-prefix=/usr \
-suffix=mee \
- -auxbindir=/usr/$(get_libdir)/w3mmee \
- -libdir=/usr/$(get_libdir)/w3mmee/cgi-bin \
- -helpdir=/usr/share/w3mmee \
+ -auxbindir=/usr/$(get_libdir)/${PN} \
+ -libdir=/usr/$(get_libdir)/${PN}/cgi-bin \
+ -helpdir=/usr/share/${PN} \
-mandir=/usr/share/man \
- -sysconfdir=/etc/w3mmee \
+ -sysconfdir=/etc/${PN} \
-model=custom \
-libmoe=/usr/$(get_libdir) \
-mb_h=/usr/include/moe \
-mk_btri=/usr/libexec/moe \
- -cflags="${CFLAGS}" -ldflags="${LDFLAGS}" \
- ${myconf} || die
+ -cflags="${CFLAGS}" \
+ -ldflags="${LDFLAGS}" \
+ ${myconf} \
+ || die
emake || die "emake failed"
}
src_install() {
- make DESTDIR="${D}" install || die
+ emake DESTDIR="${D}" install || die
+ dodoc ChangeLog NEWS* README
+ dohtml 00INCOMPATIBLE.html
# w3mman and manpages conflict with those from w3m
- mv "${D}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
mv "${D}"/usr/share/man/man1/w3m{,mee}.1 || die
-
- dodoc ChangeLog NEWS* README
- dohtml 00INCOMPATIBLE.html
+ mv "${D}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
docinto en
- dodoc doc/HISTORY doc/README* doc/keymap.* doc/menu.*
+ dodoc doc/{HISTORY,README,keymap,menu}*
dohtml doc/*
docinto jp
- dodoc doc-jp/HISTORY doc-jp/README* doc-jp/keymap* doc-jp/menu.*
+ dodoc doc-jp/{HISTORY,README,keymap,menu}*
dohtml doc-jp/*
}
pkg_postinst() {
-
w3m_alternatives
einfo
einfo "If you want to render multilingual text, please refer to"
@@ -134,13 +136,11 @@ pkg_postinst() {
}
pkg_postrm() {
-
w3m_alternatives
}
w3m_alternatives() {
-
- if [ ! -f /usr/bin/w3m ] ; then
+ if [[ ! -f /usr/bin/w3m ]]; then
alternatives_makesym /usr/bin/w3m \
/usr/bin/w3m{m17n,mee}
alternatives_makesym /usr/bin/w3mman \
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-04-03 13:35 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2018-04-03 13:35 UTC (permalink / raw
To: gentoo-commits
commit: a7015c5a8e789b127a96149cf261810023d7c2b3
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 3 13:35:04 2018 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Apr 3 13:35:04 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7015c5a
www-client/w3mmee: tidy
Package-Manager: Portage-2.3.24, Repoman-2.3.6
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index d820c40cf56..68def2049ac 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -56,7 +56,7 @@ src_prepare() {
src_configure() {
local myconf=(
- -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)' )
+ -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
)
local myuse=(
display_code=E
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-08-18 3:59 Mikle Kolyada
0 siblings, 0 replies; 21+ messages in thread
From: Mikle Kolyada @ 2018-08-18 3:59 UTC (permalink / raw
To: gentoo-commits
commit: ac09a5d97bfd32d52861d1446f9e6151b74a00e7
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 18 03:58:44 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Aug 18 03:58:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac09a5d9
www-client/w3mmee:
Package-Manager: Portage-2.3.40, Repoman-2.3.9
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index 68def2049ac..50cd0b2e2e8 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="public-domain"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="gpm imlib libressl nls ssl xface"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-08-18 22:15 Thomas Deutschmann
0 siblings, 0 replies; 21+ messages in thread
From: Thomas Deutschmann @ 2018-08-18 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 678aca88aba9f56f640d8f5b8279bb7b7f12391f
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 18 22:02:56 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 18 22:14:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678aca88
www-client/w3mmee: x86 stable (bug #663814)
Package-Manager: Portage-2.3.46, Repoman-2.3.10
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index 50cd0b2e2e8..2c636210799 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="public-domain"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE="gpm imlib libressl nls ssl xface"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2018-08-21 0:09 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2018-08-21 0:09 UTC (permalink / raw
To: gentoo-commits
commit: c9a1184f05fde1d504c321905623d45fd4e7fa9f
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 21 00:08:40 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Aug 21 00:08:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9a1184f
www-client/w3mmee: stable 0.3.2_p24-r10 for ppc, bug #663814
Package-Manager: Portage-2.3.47, Repoman-2.3.10
RepoMan-Options: --include-arches="ppc"
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index 2c636210799..d6d4ada34ca 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="public-domain"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
IUSE="gpm imlib libressl nls ssl xface"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-02-06 13:34 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2019-02-06 13:34 UTC (permalink / raw
To: gentoo-commits
commit: 114c28c81c87315c6a7b5567c41633ed5c5ab671
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 6 13:14:22 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Wed Feb 6 13:14:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114c28c8
www-client/w3mmee: drop old
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild | 157 ---------------------------
1 file changed, 157 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild
deleted file mode 100644
index 1e8125a3e72..00000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r7.ebuild
+++ /dev/null
@@ -1,157 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit alternatives eutils multilib toolchain-funcs
-
-MY_PV="${PV##*_}-22"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A variant of w3m with support for multiple character encodings"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="amd64 ppc x86"
-IUSE="gpm imlib nls ssl xface"
-
-DEPEND=">=dev-libs/boehm-gc-7.2
- >=dev-libs/libmoe-1.5.3
- dev-lang/perl
- >=sys-libs/ncurses-5.2-r3
- >=sys-libs/zlib-1.1.3-r2
- imlib? (
- >=media-libs/imlib-1.9.8
- xface? ( media-libs/compface )
- )
- gpm? ( >=sys-libs/gpm-1.19.3-r5 )
- nls? ( sys-devel/gettext )
- ssl? ( >=dev-libs/openssl-0.9.6b )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-boehm-gc.patch
- epatch "${FILESDIR}"/${PN}-gcc-4.4.patch
- epatch "${FILESDIR}"/${PN}-gcc-4.5.patch
- epatch "${FILESDIR}"/${PN}-glibc-2.14.patch
- epatch "${FILESDIR}"/${PN}-rc_name.patch
- epatch "${FILESDIR}"/${PN}-time.patch
- epatch "${FILESDIR}"/${PN}-tinfo.patch
- epatch "${FILESDIR}"/${PN}-w3mman.patch
- sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile || die
-}
-
-src_compile() {
- local myconf myuse
- myuse="use_cookie=y use_ansi_color=y use_history=y
- display_code=E system_code=E"
-
- if use ssl; then
- myconf="${myconf} --ssl-includedir=/usr/include/openssl
- --ssl-libdir=/usr/$(get_libdir)"
- myuse="${myuse} use_ssl=y use_ssl_verify=y use_digest_auth=y"
- else
- myuse="${myuse} use_ssl=n"
- fi
-
- if use gpm; then
- myuse="${myuse} use_mouse=y"
- else
- myuse="${myuse} use_mouse=n"
- fi
-
- if use nls; then
- myconf="${myconf} -locale_dir=/usr/share/locale"
- else
- myconf="${myconf} -locale_dir='(NONE)'"
- fi
-
- if use imlib; then
- myuse="${myuse} use_image=y use_w3mimg_x11=y
- use_w3mimg_fb=n w3mimgdisplay_setuid=n"
- if use xface; then
- myuse="${myuse} use_xface=y"
- else
- myuse="${myuse} use_xface=n"
- fi
- else
- myuse="${myuse} use_image=n"
- fi
-
- cat <<-EOF >> config.param
- lang=MANY
- accept_lang=en
- EOF
-
- env CC=$(tc-getCC) ${myuse} ./configure \
- -nonstop \
- -prefix=/usr \
- -suffix=mee \
- -auxbindir=/usr/$(get_libdir)/${PN} \
- -libdir=/usr/$(get_libdir)/${PN}/cgi-bin \
- -helpdir=/usr/share/${PN} \
- -mandir=/usr/share/man \
- -sysconfdir=/etc/${PN} \
- -model=custom \
- -libmoe=/usr/$(get_libdir) \
- -mb_h=/usr/include/moe \
- -mk_btri=/usr/libexec/moe \
- -cflags="${CFLAGS}" \
- -ldflags="${LDFLAGS}" \
- ${myconf} \
- || die
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ChangeLog NEWS* README
- dohtml 00INCOMPATIBLE.html
-
- # w3mman and manpages conflict with those from w3m
- mv "${D}"/usr/share/man/man1/w3m{,mee}.1 || die
- mv "${D}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
-
- docinto en
- dodoc doc/{HISTORY,README,keymap,menu}*
- dohtml doc/*
-
- docinto jp
- dodoc doc-jp/{HISTORY,README,keymap,menu}*
- dohtml doc-jp/*
-}
-
-pkg_postinst() {
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${PF}/en/README.mee or"
- einfo "/usr/share/doc/${PF}/jp/README.mee"
- einfo "and set W3MLANG variable respectively."
- einfo
-}
-
-pkg_postrm() {
- w3m_alternatives
-}
-
-w3m_alternatives() {
- if [[ ! -f /usr/bin/w3m ]]; then
- alternatives_makesym /usr/bin/w3m \
- /usr/bin/w3m{m17n,mee}
- alternatives_makesym /usr/bin/w3mman \
- /usr/bin/w3m{man-m17n,meeman}
- alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
- /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3m.1.gz \
- /usr/share/man/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
- /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
- fi
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-02-06 13:34 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2019-02-06 13:34 UTC (permalink / raw
To: gentoo-commits
commit: bd58c0b49c577b2abedc2efa559136061b91eb1d
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 6 13:31:42 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Wed Feb 6 13:31:42 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd58c0b4
www-client/w3mmee: new upstream release
Closes: https://bugs.gentoo.org/668312
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
www-client/w3mmee/Manifest | 1 +
www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild | 168 ++++++++++++++++++++++++++
2 files changed, 169 insertions(+)
diff --git a/www-client/w3mmee/Manifest b/www-client/w3mmee/Manifest
index 20615c9b89e..c939496a111 100644
--- a/www-client/w3mmee/Manifest
+++ b/www-client/w3mmee/Manifest
@@ -1 +1,2 @@
DIST w3mmee-p24-22.tar.gz 690094 BLAKE2B 9b779122a10f606fab8cfe9e3ffde7473f60ee65591de3a1eca241e563ced7c70260670da7c56c9eaf39010180733933eba039d743e723b0cc8c230ef8a31d81 SHA512 85d4d373a5a544f8c4fbc37e8344daaa5eae3ae007a0280c693aa8946c8cbf63f3fc92fb69c2597286921254e3234f29ee1b3f21e1c9d498b39a597a51e98761
+DIST w3mmee-p24-23.tar.gz 697342 BLAKE2B cdfd5752a29ee486ccb4cb174ac68aa2b93c818a088e28a8938ef308030b4baac69645e5adcf86361297f79b2473de483917f523bdd0cda0f6d0d93cc0755534 SHA512 fa74b9124e0790461ea7936411f89265c8a367326bf1bba7a5ea5f4abf748197e0926847f9860ec8d35e97f0e53bcdc69821fdd9d741fc8b18b5e11211aa3271
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild
new file mode 100644
index 00000000000..40f99bb5bbd
--- /dev/null
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild
@@ -0,0 +1,168 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit alternatives multilib toolchain-funcs
+
+MY_PV="${PV##*_}-23"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="A variant of w3m with support for multiple character encodings"
+HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
+SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="w3m"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="gpm imlib libressl nls ssl xface"
+
+DEPEND=">=dev-libs/boehm-gc-7.2
+ dev-libs/libmoe
+ dev-lang/perl
+ sys-libs/ncurses:0=
+ sys-libs/zlib
+ imlib? (
+ media-libs/imlib
+ xface? ( media-libs/compface )
+ )
+ gpm? ( sys-libs/gpm )
+ nls? ( sys-devel/gettext )
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-boehm-gc.patch
+ "${FILESDIR}"/${PN}-gcc-4.4.patch
+ "${FILESDIR}"/${PN}-gcc-4.5.patch
+ "${FILESDIR}"/${PN}-glibc-2.14.patch
+ "${FILESDIR}"/${PN}-rc_name.patch
+ "${FILESDIR}"/${PN}-time.patch
+ "${FILESDIR}"/${PN}-tinfo.patch
+ "${FILESDIR}"/${PN}-w3mman.patch
+)
+DOCS=( ChangeLog NEWS{,.mee} README )
+HTML_DOCS=( 00INCOMPATIBLE.html )
+
+src_prepare() {
+ default
+
+ sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
+ sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
+}
+
+src_configure() {
+ local myconf=(
+ -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
+ )
+ local myuse=(
+ display_code=E
+ system_code=E
+ use_ansi_color=y
+ use_cookie=y
+ use_history=y
+ use_mouse=$(usex gpm y n)
+ )
+
+ if use ssl; then
+ myconf+=(
+ --ssl-includedir="${EPREFIX}/usr/include/openssl"
+ --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
+ )
+ myuse+=(
+ use_digest_auth=y
+ use_ssl=y
+ use_ssl_verify=y
+ )
+ else
+ myuse+=( use_ssl=n )
+ fi
+ if use imlib; then
+ myuse+=(
+ use_image=y
+ use_w3mimg_fb=n
+ use_w3mimg_x11=y
+ use_xface=$(usex xface y n)
+ w3mimgdisplay_setuid=n
+ )
+ else
+ myuse+=( use_image=n )
+ fi
+
+ cat <<-EOF >> config.param
+ lang=MANY
+ accept_lang=en
+ EOF
+
+ env CC=$(tc-getCC) "${myuse[@]}" ./configure \
+ -nonstop \
+ -prefix="${EPREFIX}/usr" \
+ -suffix=mee \
+ -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
+ -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
+ -helpdir="${EPREFIX}/usr/share/${PN}" \
+ -mandir="${EPREFIX}/usr/share/man" \
+ -sysconfdir="${EPREFIX}/etc/${PN}" \
+ -model=custom \
+ -libmoe="${EPREFIX}/usr/$(get_libdir)" \
+ -mb_h="${EPREFIX}/usr/include/moe" \
+ -mk_btri="${EPREFIX}/usr/libexec/moe" \
+ -cflags="${CFLAGS}" \
+ -ldflags="${LDFLAGS}" \
+ "${myconf[@]}" \
+ || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ einstalldocs
+
+ # w3mman and manpages conflict with those from w3m
+ mv "${ED}"/usr/share/man/man1/w3m{,mee}.1 || die
+ mv "${ED}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
+
+ docinto html/en
+ dodoc doc/*.html
+ rm -f doc/*.html
+ docinto en
+ dodoc doc/{HISTORY,README,keymap,menu}*
+
+ docinto html/ja
+ dodoc doc-jp/*.html
+ rm -f doc-jp/*.html
+ docinto ja
+ dodoc doc-jp/{HISTORY,README,keymap,menu}*
+}
+
+pkg_postinst() {
+ w3m_alternatives
+ einfo
+ einfo "If you want to render multilingual text, please refer to"
+ einfo "/usr/share/doc/${PF}/en/README.mee or"
+ einfo "/usr/share/doc/${PF}/jp/README.mee"
+ einfo "and set W3MLANG variable respectively."
+ einfo
+}
+
+pkg_postrm() {
+ w3m_alternatives
+}
+
+w3m_alternatives() {
+ if [[ ! -f /usr/bin/w3m ]]; then
+ alternatives_makesym /usr/bin/w3m \
+ /usr/bin/w3m{m17n,mee}
+ alternatives_makesym /usr/bin/w3mman \
+ /usr/bin/w3m{man-m17n,meeman}
+ alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
+ /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3m.1.gz \
+ /usr/share/man/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
+ /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
+ fi
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-02-06 13:34 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2019-02-06 13:34 UTC (permalink / raw
To: gentoo-commits
commit: 7dc8d1924be3300264555f30ff3b3b50d98e89c4
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 6 13:16:21 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Wed Feb 6 13:16:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc8d192
www-client/w3mmee: fix libdir
Closes: https://bugs.gentoo.org/673544
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index d6d4ada34ca..5b9175e8b33 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -51,6 +51,7 @@ HTML_DOCS=( 00INCOMPATIBLE.html )
src_prepare() {
default
+ sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-02-06 13:34 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2019-02-06 13:34 UTC (permalink / raw
To: gentoo-commits
commit: 4d63f02099c5ee33e5eadaf297d7461af4e46d67
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 6 13:33:22 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Wed Feb 6 13:33:22 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d63f020
www-client/w3mmee: fix license
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
index 5b9175e8b33..6572d1840d4 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
-LICENSE="public-domain"
+LICENSE="w3m"
KEYWORDS="amd64 ppc x86"
IUSE="gpm imlib libressl nls ssl xface"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-04-11 15:48 Pacho Ramos
0 siblings, 0 replies; 21+ messages in thread
From: Pacho Ramos @ 2019-04-11 15:48 UTC (permalink / raw
To: gentoo-commits
commit: f18aa394b18d6aa2f2991fe57d4c3c6f6c145efe
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 15:23:59 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 15:48:19 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f18aa394
www-client/w3mmee: Disable support for dead imlib-1
Closes: https://bugs.gentoo.org/678910
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 155 ++++++++++++++++++++++++++
1 file changed, 155 insertions(+)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
new file mode 100644
index 00000000000..839f8427a0f
--- /dev/null
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -0,0 +1,155 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit alternatives multilib toolchain-funcs
+
+MY_PV="${PV##*_}-23"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="A variant of w3m with support for multiple character encodings"
+HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
+SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="w3m"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="gpm libressl nls ssl"
+
+DEPEND=">=dev-libs/boehm-gc-7.2
+ dev-libs/libmoe
+ dev-lang/perl
+ sys-libs/ncurses:0=
+ sys-libs/zlib
+ gpm? ( sys-libs/gpm )
+ nls? ( sys-devel/gettext )
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-boehm-gc.patch
+ "${FILESDIR}"/${PN}-gcc-4.4.patch
+ "${FILESDIR}"/${PN}-gcc-4.5.patch
+ "${FILESDIR}"/${PN}-glibc-2.14.patch
+ "${FILESDIR}"/${PN}-rc_name.patch
+ "${FILESDIR}"/${PN}-time.patch
+ "${FILESDIR}"/${PN}-tinfo.patch
+ "${FILESDIR}"/${PN}-w3mman.patch
+)
+DOCS=( ChangeLog NEWS{,.mee} README )
+HTML_DOCS=( 00INCOMPATIBLE.html )
+
+src_prepare() {
+ default
+
+ sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
+ sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
+}
+
+src_configure() {
+ local myconf=(
+ -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
+ )
+ local myuse=(
+ display_code=E
+ system_code=E
+ use_ansi_color=y
+ use_cookie=y
+ use_history=y
+ use_mouse=$(usex gpm y n)
+ )
+
+ if use ssl; then
+ myconf+=(
+ --ssl-includedir="${EPREFIX}/usr/include/openssl"
+ --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
+ )
+ myuse+=(
+ use_digest_auth=y
+ use_ssl=y
+ use_ssl_verify=y
+ )
+ else
+ myuse+=( use_ssl=n )
+ fi
+ # Obsolete imlib-1 disabled, bug #678910
+ myuse+=( use_image=n )
+
+ cat <<-EOF >> config.param
+ lang=MANY
+ accept_lang=en
+ EOF
+
+ env CC=$(tc-getCC) "${myuse[@]}" ./configure \
+ -nonstop \
+ -prefix="${EPREFIX}/usr" \
+ -suffix=mee \
+ -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
+ -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
+ -helpdir="${EPREFIX}/usr/share/${PN}" \
+ -mandir="${EPREFIX}/usr/share/man" \
+ -sysconfdir="${EPREFIX}/etc/${PN}" \
+ -model=custom \
+ -libmoe="${EPREFIX}/usr/$(get_libdir)" \
+ -mb_h="${EPREFIX}/usr/include/moe" \
+ -mk_btri="${EPREFIX}/usr/libexec/moe" \
+ -cflags="${CFLAGS}" \
+ -ldflags="${LDFLAGS}" \
+ "${myconf[@]}" \
+ || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ einstalldocs
+
+ # w3mman and manpages conflict with those from w3m
+ mv "${ED}"/usr/share/man/man1/w3m{,mee}.1 || die
+ mv "${ED}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
+
+ docinto html/en
+ dodoc doc/*.html
+ rm -f doc/*.html
+ docinto en
+ dodoc doc/{HISTORY,README,keymap,menu}*
+
+ docinto html/ja
+ dodoc doc-jp/*.html
+ rm -f doc-jp/*.html
+ docinto ja
+ dodoc doc-jp/{HISTORY,README,keymap,menu}*
+}
+
+pkg_postinst() {
+ w3m_alternatives
+ einfo
+ einfo "If you want to render multilingual text, please refer to"
+ einfo "/usr/share/doc/${PF}/en/README.mee or"
+ einfo "/usr/share/doc/${PF}/jp/README.mee"
+ einfo "and set W3MLANG variable respectively."
+ einfo
+}
+
+pkg_postrm() {
+ w3m_alternatives
+}
+
+w3m_alternatives() {
+ if [[ ! -f /usr/bin/w3m ]]; then
+ alternatives_makesym /usr/bin/w3m \
+ /usr/bin/w3m{m17n,mee}
+ alternatives_makesym /usr/bin/w3mman \
+ /usr/bin/w3m{man-m17n,meeman}
+ alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
+ /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3m.1.gz \
+ /usr/share/man/man1/w3m{m17n,mee}.1.gz
+ alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
+ /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
+ fi
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2019-12-13 13:23 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2019-12-13 13:23 UTC (permalink / raw
To: gentoo-commits
commit: a9aafea83ea2d6af3dd3828e0128fc34a26ef978
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 13:15:40 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 13:23:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9aafea8
www-client/w3mmee: drop old
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild | 168 --------------------------
1 file changed, 168 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild
deleted file mode 100644
index 40f99bb5bbd..00000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r11.ebuild
+++ /dev/null
@@ -1,168 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit alternatives multilib toolchain-funcs
-
-MY_PV="${PV##*_}-23"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A variant of w3m with support for multiple character encodings"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="w3m"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="gpm imlib libressl nls ssl xface"
-
-DEPEND=">=dev-libs/boehm-gc-7.2
- dev-libs/libmoe
- dev-lang/perl
- sys-libs/ncurses:0=
- sys-libs/zlib
- imlib? (
- media-libs/imlib
- xface? ( media-libs/compface )
- )
- gpm? ( sys-libs/gpm )
- nls? ( sys-devel/gettext )
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-boehm-gc.patch
- "${FILESDIR}"/${PN}-gcc-4.4.patch
- "${FILESDIR}"/${PN}-gcc-4.5.patch
- "${FILESDIR}"/${PN}-glibc-2.14.patch
- "${FILESDIR}"/${PN}-rc_name.patch
- "${FILESDIR}"/${PN}-time.patch
- "${FILESDIR}"/${PN}-tinfo.patch
- "${FILESDIR}"/${PN}-w3mman.patch
-)
-DOCS=( ChangeLog NEWS{,.mee} README )
-HTML_DOCS=( 00INCOMPATIBLE.html )
-
-src_prepare() {
- default
-
- sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
- sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
-}
-
-src_configure() {
- local myconf=(
- -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
- )
- local myuse=(
- display_code=E
- system_code=E
- use_ansi_color=y
- use_cookie=y
- use_history=y
- use_mouse=$(usex gpm y n)
- )
-
- if use ssl; then
- myconf+=(
- --ssl-includedir="${EPREFIX}/usr/include/openssl"
- --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
- )
- myuse+=(
- use_digest_auth=y
- use_ssl=y
- use_ssl_verify=y
- )
- else
- myuse+=( use_ssl=n )
- fi
- if use imlib; then
- myuse+=(
- use_image=y
- use_w3mimg_fb=n
- use_w3mimg_x11=y
- use_xface=$(usex xface y n)
- w3mimgdisplay_setuid=n
- )
- else
- myuse+=( use_image=n )
- fi
-
- cat <<-EOF >> config.param
- lang=MANY
- accept_lang=en
- EOF
-
- env CC=$(tc-getCC) "${myuse[@]}" ./configure \
- -nonstop \
- -prefix="${EPREFIX}/usr" \
- -suffix=mee \
- -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
- -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
- -helpdir="${EPREFIX}/usr/share/${PN}" \
- -mandir="${EPREFIX}/usr/share/man" \
- -sysconfdir="${EPREFIX}/etc/${PN}" \
- -model=custom \
- -libmoe="${EPREFIX}/usr/$(get_libdir)" \
- -mb_h="${EPREFIX}/usr/include/moe" \
- -mk_btri="${EPREFIX}/usr/libexec/moe" \
- -cflags="${CFLAGS}" \
- -ldflags="${LDFLAGS}" \
- "${myconf[@]}" \
- || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- einstalldocs
-
- # w3mman and manpages conflict with those from w3m
- mv "${ED}"/usr/share/man/man1/w3m{,mee}.1 || die
- mv "${ED}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
-
- docinto html/en
- dodoc doc/*.html
- rm -f doc/*.html
- docinto en
- dodoc doc/{HISTORY,README,keymap,menu}*
-
- docinto html/ja
- dodoc doc-jp/*.html
- rm -f doc-jp/*.html
- docinto ja
- dodoc doc-jp/{HISTORY,README,keymap,menu}*
-}
-
-pkg_postinst() {
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${PF}/en/README.mee or"
- einfo "/usr/share/doc/${PF}/jp/README.mee"
- einfo "and set W3MLANG variable respectively."
- einfo
-}
-
-pkg_postrm() {
- w3m_alternatives
-}
-
-w3m_alternatives() {
- if [[ ! -f /usr/bin/w3m ]]; then
- alternatives_makesym /usr/bin/w3m \
- /usr/bin/w3m{m17n,mee}
- alternatives_makesym /usr/bin/w3mman \
- /usr/bin/w3m{man-m17n,meeman}
- alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
- /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3m.1.gz \
- /usr/share/man/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
- /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
- fi
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2020-06-16 14:20 Akinori Hattori
0 siblings, 0 replies; 21+ messages in thread
From: Akinori Hattori @ 2020-06-16 14:20 UTC (permalink / raw
To: gentoo-commits
commit: 142882e6932b571e791dd9fd0a4d31e1c30f8133
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 16 14:17:57 2020 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Jun 16 14:17:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=142882e6
www-client/w3mmee: update to EAPI 7
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index e14ba864ecc..1a707e3bfcd 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI="7"
inherit alternatives multilib toolchain-funcs
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2020-06-21 16:54 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2020-06-21 16:54 UTC (permalink / raw
To: gentoo-commits
commit: 10fa516bdebc8e1130c90fc1bd0111bebb1b0432
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 21 16:54:13 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 16:54:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10fa516b
www-client/w3mmee: amd64 stable wrt bug #728464
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index 96d017eb15b..02640d6d51b 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="w3m"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="gpm libressl nls ssl"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2020-06-21 17:13 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2020-06-21 17:13 UTC (permalink / raw
To: gentoo-commits
commit: dd4d5fbfc492b5295ef91b81d3c493caf776c019
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 21 17:13:22 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 17:13:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4d5fbf
www-client/w3mmee: x86 stable wrt bug #728464
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index d3412e20d04..fd3d08fbe5a 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="w3m"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
IUSE="gpm libressl nls ssl"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2021-01-03 0:54 Andreas K. Hüttel
0 siblings, 0 replies; 21+ messages in thread
From: Andreas K. Hüttel @ 2021-01-03 0:54 UTC (permalink / raw
To: gentoo-commits
commit: 7fff4e2c5439bd5ce9ef4af7390c5da9837b1871
Author: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 3 00:44:18 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Jan 3 00:54:27 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fff4e2c
www-client/w3mmee: Remove old
Bug: https://bugs.gentoo.org/706604
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>
www-client/w3mmee/Manifest | 1 -
www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild | 168 --------------------------
2 files changed, 169 deletions(-)
diff --git a/www-client/w3mmee/Manifest b/www-client/w3mmee/Manifest
index c939496a111..494f60ca6de 100644
--- a/www-client/w3mmee/Manifest
+++ b/www-client/w3mmee/Manifest
@@ -1,2 +1 @@
-DIST w3mmee-p24-22.tar.gz 690094 BLAKE2B 9b779122a10f606fab8cfe9e3ffde7473f60ee65591de3a1eca241e563ced7c70260670da7c56c9eaf39010180733933eba039d743e723b0cc8c230ef8a31d81 SHA512 85d4d373a5a544f8c4fbc37e8344daaa5eae3ae007a0280c693aa8946c8cbf63f3fc92fb69c2597286921254e3234f29ee1b3f21e1c9d498b39a597a51e98761
DIST w3mmee-p24-23.tar.gz 697342 BLAKE2B cdfd5752a29ee486ccb4cb174ac68aa2b93c818a088e28a8938ef308030b4baac69645e5adcf86361297f79b2473de483917f523bdd0cda0f6d0d93cc0755534 SHA512 fa74b9124e0790461ea7936411f89265c8a367326bf1bba7a5ea5f4abf748197e0926847f9860ec8d35e97f0e53bcdc69821fdd9d741fc8b18b5e11211aa3271
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
deleted file mode 100644
index 6572d1840d4..00000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r10.ebuild
+++ /dev/null
@@ -1,168 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit alternatives multilib toolchain-funcs
-
-MY_PV="${PV##*_}-22"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A variant of w3m with support for multiple character encodings"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="w3m"
-KEYWORDS="amd64 ppc x86"
-IUSE="gpm imlib libressl nls ssl xface"
-
-DEPEND=">=dev-libs/boehm-gc-7.2
- dev-libs/libmoe
- dev-lang/perl
- sys-libs/ncurses:0=
- sys-libs/zlib
- imlib? (
- media-libs/imlib
- xface? ( media-libs/compface )
- )
- gpm? ( sys-libs/gpm )
- nls? ( sys-devel/gettext )
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-boehm-gc.patch
- "${FILESDIR}"/${PN}-gcc-4.4.patch
- "${FILESDIR}"/${PN}-gcc-4.5.patch
- "${FILESDIR}"/${PN}-glibc-2.14.patch
- "${FILESDIR}"/${PN}-rc_name.patch
- "${FILESDIR}"/${PN}-time.patch
- "${FILESDIR}"/${PN}-tinfo.patch
- "${FILESDIR}"/${PN}-w3mman.patch
-)
-DOCS=( ChangeLog NEWS{,.mee} README )
-HTML_DOCS=( 00INCOMPATIBLE.html )
-
-src_prepare() {
- default
-
- sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
- sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
-}
-
-src_configure() {
- local myconf=(
- -locale_dir=$(usex nls "${EPREFIX}/usr/share/locale" '(NONE)')
- )
- local myuse=(
- display_code=E
- system_code=E
- use_ansi_color=y
- use_cookie=y
- use_history=y
- use_mouse=$(usex gpm y n)
- )
-
- if use ssl; then
- myconf+=(
- --ssl-includedir="${EPREFIX}/usr/include/openssl"
- --ssl-libdir="${EPREFIX}/usr/$(get_libdir)"
- )
- myuse+=(
- use_digest_auth=y
- use_ssl=y
- use_ssl_verify=y
- )
- else
- myuse+=( use_ssl=n )
- fi
- if use imlib; then
- myuse+=(
- use_image=y
- use_w3mimg_fb=n
- use_w3mimg_x11=y
- use_xface=$(usex xface y n)
- w3mimgdisplay_setuid=n
- )
- else
- myuse+=( use_image=n )
- fi
-
- cat <<-EOF >> config.param
- lang=MANY
- accept_lang=en
- EOF
-
- env CC=$(tc-getCC) "${myuse[@]}" ./configure \
- -nonstop \
- -prefix="${EPREFIX}/usr" \
- -suffix=mee \
- -auxbindir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
- -libdir="${EPREFIX}/usr/$(get_libdir)/${PN}/cgi-bin" \
- -helpdir="${EPREFIX}/usr/share/${PN}" \
- -mandir="${EPREFIX}/usr/share/man" \
- -sysconfdir="${EPREFIX}/etc/${PN}" \
- -model=custom \
- -libmoe="${EPREFIX}/usr/$(get_libdir)" \
- -mb_h="${EPREFIX}/usr/include/moe" \
- -mk_btri="${EPREFIX}/usr/libexec/moe" \
- -cflags="${CFLAGS}" \
- -ldflags="${LDFLAGS}" \
- "${myconf[@]}" \
- || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- einstalldocs
-
- # w3mman and manpages conflict with those from w3m
- mv "${ED}"/usr/share/man/man1/w3m{,mee}.1 || die
- mv "${ED}"/usr/share/man/ja/man1/w3m{,mee}.1 || die
-
- docinto html/en
- dodoc doc/*.html
- rm -f doc/*.html
- docinto en
- dodoc doc/{HISTORY,README,keymap,menu}*
-
- docinto html/ja
- dodoc doc-jp/*.html
- rm -f doc-jp/*.html
- docinto ja
- dodoc doc-jp/{HISTORY,README,keymap,menu}*
-}
-
-pkg_postinst() {
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${PF}/en/README.mee or"
- einfo "/usr/share/doc/${PF}/jp/README.mee"
- einfo "and set W3MLANG variable respectively."
- einfo
-}
-
-pkg_postrm() {
- w3m_alternatives
-}
-
-w3m_alternatives() {
- if [[ ! -f /usr/bin/w3m ]]; then
- alternatives_makesym /usr/bin/w3m \
- /usr/bin/w3m{m17n,mee}
- alternatives_makesym /usr/bin/w3mman \
- /usr/bin/w3m{man-m17n,meeman}
- alternatives_makesym /usr/share/man/ja/man1/w3m.1.gz \
- /usr/share/man/ja/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3m.1.gz \
- /usr/share/man/man1/w3m{m17n,mee}.1.gz
- alternatives_makesym /usr/share/man/man1/w3mman.1.gz \
- /usr/share/man/man1/w3m{man-m17n,meeman}.1.gz
- fi
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2021-05-01 7:43 Mikle Kolyada
0 siblings, 0 replies; 21+ messages in thread
From: Mikle Kolyada @ 2021-05-01 7:43 UTC (permalink / raw
To: gentoo-commits
commit: 554621c9dedb6b6b36f46aac03a0d13fdf12c89f
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat May 1 07:42:59 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat May 1 07:42:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554621c9
www-client/w3mmee: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index fd3d08fbe5a..74d467546bc 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -15,7 +15,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="w3m"
KEYWORDS="amd64 ppc x86"
-IUSE="gpm libressl nls ssl"
+IUSE="gpm nls ssl"
DEPEND=">=dev-libs/boehm-gc-7.2
dev-libs/libmoe
@@ -25,8 +25,7 @@ DEPEND=">=dev-libs/boehm-gc-7.2
gpm? ( sys-libs/gpm )
nls? ( sys-devel/gettext )
ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
)"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2021-06-29 22:08 Yixun Lan
0 siblings, 0 replies; 21+ messages in thread
From: Yixun Lan @ 2021-06-29 22:08 UTC (permalink / raw
To: gentoo-commits
commit: 0a81f5c3263c3d85317988bdc325a54bd3a09795
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 29 22:00:59 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Jun 29 22:07:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a81f5c3
www-client/w3mmee: keyword ~riscv
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index 74d467546bc..df4f61d1553 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pub.ks-and-ks.ne.jp/prog/pub/${MY_P}.tar.gz"
SLOT="0"
LICENSE="w3m"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc ~riscv x86"
IUSE="gpm nls ssl"
DEPEND=">=dev-libs/boehm-gc-7.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/
@ 2022-03-26 0:18 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2022-03-26 0:18 UTC (permalink / raw
To: gentoo-commits
commit: 32baa464010d6850d59da343fad2fc132160365a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 26 00:17:12 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 00:17:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32baa464
www-client/w3mmee: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
index df4f61d15531..2a9701002838 100644
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild
+++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.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"
@@ -48,8 +48,8 @@ HTML_DOCS=( 00INCOMPATIBLE.html )
src_prepare() {
default
- sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure
- sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile
+ sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure || die
+ sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile || die
}
src_configure() {
@@ -86,7 +86,7 @@ src_configure() {
accept_lang=en
EOF
- env CC=$(tc-getCC) "${myuse[@]}" ./configure \
+ env CC="$(tc-getCC)" "${myuse[@]}" ./configure \
-nonstop \
-prefix="${EPREFIX}/usr" \
-suffix=mee \
^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2022-03-26 0:18 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-11 15:48 [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2022-03-26 0:18 Sam James
2021-06-29 22:08 Yixun Lan
2021-05-01 7:43 Mikle Kolyada
2021-01-03 0:54 Andreas K. Hüttel
2020-06-21 17:13 Agostino Sarubbo
2020-06-21 16:54 Agostino Sarubbo
2020-06-16 14:20 Akinori Hattori
2019-12-13 13:23 Akinori Hattori
2019-02-06 13:34 Akinori Hattori
2019-02-06 13:34 Akinori Hattori
2019-02-06 13:34 Akinori Hattori
2019-02-06 13:34 Akinori Hattori
2018-08-21 0:09 Sergei Trofimovich
2018-08-18 22:15 Thomas Deutschmann
2018-08-18 3:59 Mikle Kolyada
2018-04-03 13:35 Akinori Hattori
2018-04-01 12:24 Akinori Hattori
2018-03-31 14:02 Akinori Hattori
2016-05-12 14:09 Anthony G. Basile
2016-05-11 20:37 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox