summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2010-01-26 15:48:31 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2010-01-26 15:48:31 +0000
commita3816816699c265d8318bde22fc8cc5e54636899 (patch)
tree401987b44dd740c36fe155b118e671791c2138de /www-client
parentRemoved old version. (diff)
downloadgentoo-2-a3816816699c265d8318bde22fc8cc5e54636899.tar.gz
gentoo-2-a3816816699c265d8318bde22fc8cc5e54636899.tar.bz2
gentoo-2-a3816816699c265d8318bde22fc8cc5e54636899.zip
Removed old versions.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'www-client')
-rw-r--r--www-client/w3mmee/ChangeLog8
-rw-r--r--www-client/w3mmee/w3mmee-0.3.2_p24-r4.ebuild156
-rw-r--r--www-client/w3mmee/w3mmee-0.3.2_p24-r5.ebuild156
3 files changed, 6 insertions, 314 deletions
diff --git a/www-client/w3mmee/ChangeLog b/www-client/w3mmee/ChangeLog
index 4301a0b1bec8..c5746ddd03f9 100644
--- a/www-client/w3mmee/ChangeLog
+++ b/www-client/w3mmee/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-client/w3mmee
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/w3mmee/ChangeLog,v 1.10 2009/07/25 20:09:00 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-client/w3mmee/ChangeLog,v 1.11 2010/01/26 15:48:31 matsuu Exp $
+
+ 26 Jan 2010; MATSUU Takuto <matsuu@gentoo.org>
+ -w3mmee-0.3.2_p24-r4.ebuild, -w3mmee-0.3.2_p24-r5.ebuild:
+ Removed old versions.
25 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
+files/w3mmee-gcc44.patch, w3mmee-0.3.2_p24-r6.ebuild:
diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r4.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r4.ebuild
deleted file mode 100644
index 0efa740339b1..000000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r4.ebuild
+++ /dev/null
@@ -1,156 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/w3mmee/w3mmee-0.3.2_p24-r4.ebuild,v 1.4 2006/04/21 17:33:44 flameeyes Exp $
-
-inherit alternatives eutils
-
-IUSE="gpm imlib nls ssl"
-
-MY_PV=${PV##*_}-20
-MY_P=${PN}-${MY_PV}
-GC_PV="6.2"
-MY_GC=gc${GC_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
- http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/${MY_GC}.tar.gz"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="x86 -alpha sparc ppc"
-
-DEPEND=">=sys-libs/ncurses-5.2-r3
- >=sys-libs/zlib-1.1.3-r2
- >=dev-libs/boehm-gc-6.2
- dev-lang/perl
- >=dev-libs/libmoe-1.5.3
- imlib? ( >=media-libs/imlib-1.9.8
- media-libs/compface )
- gpm? ( >=sys-libs/gpm-1.19.3-r5 )
- nls? ( sys-devel/gettext )
- ssl? ( >=dev-libs/openssl-0.9.6b )"
-
-PROVIDE="virtual/w3m"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-
- unpack ${MY_P}.tar.gz
- cd ${S}
-
- # w3mmee doesn't come with boehm-gc unlike w3m and w3m-m17n.
- # However, w3mmee cannot be compiled with system gc
- # (Debian is the only Linux distribution that can compile it)
- unpack ${MY_GC}.tar.gz
- mv ${MY_GC} gc
-
- epatch ${FILESDIR}/${PN}-w3mman-gentoo.diff
-}
-
-src_compile() {
-
- local myconf myuse mylang
- 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/lib"
- 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 use_xface=y"
- else
- myuse="${myuse} use_image=n"
- fi
-
- cat >>config.param<<-EOF
- lang=MANY
- accept_lang=en
- EOF
-
- env ${myuse} ./configure -nonstop \
- -prefix=/usr \
- -suffix=mee \
- -auxbindir=/usr/lib/w3mmee \
- -libdir=/usr/lib/w3mmee/cgi-bin \
- -helpdir=/usr/share/w3mmee \
- -mandir=/usr/share/man \
- -sysconfdir=/etc/w3mmee \
- -model=custom \
- -libmoe=/usr/lib \
- -mb_h=/usr/include/moe \
- -mk_btri=/usr/libexec/moe \
- -cflags=${CFLAGS} -ldflags=${LDFLAGS} \
- ${myconf} || die
-
- emake || die "emake failed"
-}
-
-src_install() {
-
- einstall DESTDIR=${D}
-
- # w3mman and manpages conflict with those from w3m
- mv ${D}/usr/bin/w3m{,mee}man
- mv ${D}/usr/share/man/ja/man1/w3m{,mee}.1
- mv ${D}/usr/share/man/man1/w3m{,mee}.1
- mv ${D}/usr/share/man/man1/w3mman{,mee}.1
-
- dodoc 00INCOMPATIBLE.html ChangeLog NEWS* README
- docinto en
- dodoc doc/*
- docinto jp
- dodoc doc-jp/*
-}
-
-pkg_postinst() {
-
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${P}/en/README.mee or"
- einfo "/usr/share/doc/${P}/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-r5.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r5.ebuild
deleted file mode 100644
index e18f926992af..000000000000
--- a/www-client/w3mmee/w3mmee-0.3.2_p24-r5.ebuild
+++ /dev/null
@@ -1,156 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/w3mmee/w3mmee-0.3.2_p24-r5.ebuild,v 1.3 2006/04/21 17:33:44 flameeyes Exp $
-
-inherit alternatives eutils
-
-IUSE="gpm imlib nls ssl"
-
-MY_PV=${PV##*_}-22
-MY_P=${PN}-${MY_PV}
-GC_PV="6.4"
-MY_GC=gc${GC_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
- http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/${MY_GC}.tar.gz"
-HOMEPAGE="http://pub.ks-and-ks.ne.jp/prog/w3mmee/"
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="~x86 -alpha ~sparc ~ppc"
-
-DEPEND=">=sys-libs/ncurses-5.2-r3
- >=sys-libs/zlib-1.1.3-r2
- >=dev-libs/boehm-gc-6.2
- dev-lang/perl
- >=dev-libs/libmoe-1.5.3
- imlib? ( >=media-libs/imlib-1.9.8
- media-libs/compface )
- gpm? ( >=sys-libs/gpm-1.19.3-r5 )
- nls? ( sys-devel/gettext )
- ssl? ( >=dev-libs/openssl-0.9.6b )"
-
-PROVIDE="virtual/w3m"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-
- unpack ${MY_P}.tar.gz
- cd ${S}
-
- # w3mmee doesn't come with boehm-gc unlike w3m and w3m-m17n.
- # However, w3mmee cannot be compiled with system gc
- # (Debian is the only Linux distribution that can compile it)
- unpack ${MY_GC}.tar.gz
- mv ${MY_GC} gc
-
- epatch ${FILESDIR}/${PN}-w3mman-gentoo.diff
-}
-
-src_compile() {
-
- local myconf myuse mylang
- 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/lib"
- 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 use_xface=y"
- else
- myuse="${myuse} use_image=n"
- fi
-
- cat >>config.param<<-EOF
- lang=MANY
- accept_lang=en
- EOF
-
- env ${myuse} ./configure -nonstop \
- -prefix=/usr \
- -suffix=mee \
- -auxbindir=/usr/lib/w3mmee \
- -libdir=/usr/lib/w3mmee/cgi-bin \
- -helpdir=/usr/share/w3mmee \
- -mandir=/usr/share/man \
- -sysconfdir=/etc/w3mmee \
- -model=custom \
- -libmoe=/usr/lib \
- -mb_h=/usr/include/moe \
- -mk_btri=/usr/libexec/moe \
- -cflags=${CFLAGS} -ldflags=${LDFLAGS} \
- ${myconf} || die
-
- emake || die "emake failed"
-}
-
-src_install() {
-
- einstall DESTDIR=${D}
-
- # w3mman and manpages conflict with those from w3m
- mv ${D}/usr/bin/w3m{,mee}man
- mv ${D}/usr/share/man/ja/man1/w3m{,mee}.1
- mv ${D}/usr/share/man/man1/w3m{,mee}.1
- mv ${D}/usr/share/man/man1/w3mman{,mee}.1
-
- dodoc 00INCOMPATIBLE.html ChangeLog NEWS* README
- docinto en
- dodoc doc/*
- docinto jp
- dodoc doc-jp/*
-}
-
-pkg_postinst() {
-
- w3m_alternatives
- einfo
- einfo "If you want to render multilingual text, please refer to"
- einfo "/usr/share/doc/${P}/en/README.mee or"
- einfo "/usr/share/doc/${P}/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
-}