summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-12-26 04:36:08 +0000
committerMamoru Komachi <usata@gentoo.org>2004-12-26 04:36:08 +0000
commit79cd188c6695b14d47e43381ab7dc07d50a08880 (patch)
tree72e59cf5b9e0d286c75cff93eb9b6bf39fdd18e9
parentAdded libtoolize --force ---copy, bug #75633 (Manifest recommit) (diff)
downloadgentoo-2-79cd188c6695b14d47e43381ab7dc07d50a08880.tar.gz
gentoo-2-79cd188c6695b14d47e43381ab7dc07d50a08880.tar.bz2
gentoo-2-79cd188c6695b14d47e43381ab7dc07d50a08880.zip
Removed old ebuilds and marked 0.8.3-r3 stable on x86, ppc and alpha.
-rw-r--r--www-client/dillo/ChangeLog6
-rw-r--r--www-client/dillo/dillo-0.8.3-r1.ebuild126
-rw-r--r--www-client/dillo/dillo-0.8.3-r2.ebuild126
-rw-r--r--www-client/dillo/dillo-0.8.3-r3.ebuild4
-rw-r--r--www-client/dillo/files/digest-dillo-0.8.3-r13
-rw-r--r--www-client/dillo/files/digest-dillo-0.8.3-r23
6 files changed, 7 insertions, 261 deletions
diff --git a/www-client/dillo/ChangeLog b/www-client/dillo/ChangeLog
index 8760269a9d31..2f3688c30509 100644
--- a/www-client/dillo/ChangeLog
+++ b/www-client/dillo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-client/dillo
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.7 2004/12/23 15:00:32 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.8 2004/12/26 04:36:08 usata Exp $
+
+ 26 Dec 2004; Mamoru KOMACHI <usata@gentoo.org> -dillo-0.8.3-r1.ebuild,
+ -dillo-0.8.3-r2.ebuild, dillo-0.8.3-r3.ebuild:
+ Removed old ebuilds and marked 0.8.3-r3 stable on x86, ppc and alpha.
23 Dec 2004; Markus Rothe <corsair@gentoo.org> dillo-0.8.3-r3.ebuild:
Added ~ppc64 to KEYWORDS; bug #74861
diff --git a/www-client/dillo/dillo-0.8.3-r1.ebuild b/www-client/dillo/dillo-0.8.3-r1.ebuild
deleted file mode 100644
index 92fd4fc586dd..000000000000
--- a/www-client/dillo/dillo-0.8.3-r1.ebuild
+++ /dev/null
@@ -1,126 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-0.8.3-r1.ebuild,v 1.1 2004/11/17 17:11:12 usata Exp $
-
-inherit flag-o-matic eutils
-
-S2=${WORKDIR}/dillo-gentoo-extras-patch4
-DILLO_I18N_P="${P}-i18n-misc-20041118"
-
-DESCRIPTION="Lean GTK+-based web browser"
-HOMEPAGE="http://www.dillo.org/"
-SRC_URI="http://www.dillo.org/download/${P}.tar.bz2
- mirror://gentoo/dillo-gentoo-extras-patch4.tar.bz2
- http://teki.jpn.ph/pc/software/${DILLO_I18N_P}.diff.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips ~arm"
-MISC_IUSE="nls truetype"
-IUSE="${MISC_IUSE} ipv6 ssl"
-
-DEPEND="=x11-libs/gtk+-1.2*
- >=media-libs/jpeg-6b
- >=sys-libs/zlib-1.1.3
- >=media-libs/libpng-1.2.1
- ssl? ( dev-libs/openssl )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ../${DILLO_I18N_P}.diff
-
- if [ "${DILLO_ICONSET}" = "kde" ]
- then
- einfo "Using Konqueror style icon set"
- cp ${S2}/pixmaps.konq.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "gnome" ]
- then
- einfo "Using Ximian style icon set"
- cp ${S2}/pixmaps.ximian.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "mozilla" ]
- then
- einfo "Using Netscape style icon set"
- cp ${S2}/pixmaps.netscape.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "cobalt" ]
- then
- einfo "Using Cobalt style icon set"
- cp ${S2}/pixmaps.cobalt.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "bold" ]
- then
- einfo "Using bold style icon set"
- cp ${S2}/pixmaps.bold.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "trans" ]
- then
- einfo "Using transparent style icon set"
- cp ${S2}/pixmaps.trans.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "trad" ]
- then
- einfo "Using the traditional icon set"
- cp ${S2}/pixmaps.trad.h ${S}/src/pixmaps.h
- else
- einfo "Using default Dillo icon set"
- fi
-}
-
-src_compile() {
- replace-flags "-O2 -mcpu=k6" "-O2 -mcpu=pentium"
-
- local myconf
-
- myconf="$(use_enable nls)
- $(use_enable truetype anti-alias)
- --enable-tabs
- --enable-meta-refresh"
-
- myconf="${myconf}
- $(use_enable ipv6)
- $(use_enable ssl)"
-
- econf ${myconf} || die
- emake || make || die
-}
-
-src_install() {
- dodir /etc /usr/share/icons/${PN}
- make DESTDIR=${D} install || die
-
- dosed /etc/dpidrc
-
- dodoc AUTHORS COPYING ChangeLog* INSTALL README NEWS
- docinto doc
- dodoc doc/*.txt doc/README
-
- cp ${S2}/icons/*.png ${D}/usr/share/icons/${PN}
-}
-
-pkg_postinst() {
- einfo "This ebuild for dillo comes with different toolbar icons"
- einfo "If you want mozilla style icons then try"
- einfo " DILLO_ICONSET=\"mozilla\" emerge dillo"
- einfo
- einfo "If you prefer konqueror style icons then try"
- einfo " DILLO_ICONSET=\"kde\" emerge dillo"
- einfo
- einfo "If you prefer ximian gnome style icons then try"
- einfo " DILLO_ICONSET=\"gnome\" emerge dillo"
- einfo
- einfo "If you prefer cobalt style icons then try"
- einfo " DILLO_ICONSET=\"cobalt\" emerge dillo"
- einfo
- einfo "If you prefer bold style icons then try"
- einfo " DILLO_ICONSET=\"bold\" emerge dillo"
- einfo
- einfo "If you prefer transparent style icons then try"
- einfo " DILLO_ICONSET=\"trans\" emerge dillo"
- einfo
- einfo "If you prefer the traditional icons then try"
- einfo " DILLO_ICONSET=\"trad\" emerge dillo"
- einfo
- einfo "If the DILLO_ICONSET variable is not set, you will get the"
- einfo "default iconset"
- einfo
- einfo "To see what the icons look like, please point your browser to:"
- einfo "http://dillo.auriga.wearlab.de/Icons/"
- einfo
-}
diff --git a/www-client/dillo/dillo-0.8.3-r2.ebuild b/www-client/dillo/dillo-0.8.3-r2.ebuild
deleted file mode 100644
index 2f4873574d09..000000000000
--- a/www-client/dillo/dillo-0.8.3-r2.ebuild
+++ /dev/null
@@ -1,126 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-0.8.3-r2.ebuild,v 1.1 2004/12/04 05:09:34 usata Exp $
-
-inherit flag-o-matic eutils
-
-S2=${WORKDIR}/dillo-gentoo-extras-patch4
-DILLO_I18N_P="${P}-i18n-misc-20041201"
-
-DESCRIPTION="Lean GTK+-based web browser"
-HOMEPAGE="http://www.dillo.org/"
-SRC_URI="http://www.dillo.org/download/${P}.tar.bz2
- mirror://gentoo/dillo-gentoo-extras-patch4.tar.bz2
- http://teki.jpn.ph/pc/software/${DILLO_I18N_P}.diff.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips ~arm"
-MISC_IUSE="nls truetype"
-IUSE="${MISC_IUSE} ipv6 ssl"
-
-DEPEND="=x11-libs/gtk+-1.2*
- >=media-libs/jpeg-6b
- >=sys-libs/zlib-1.1.3
- >=media-libs/libpng-1.2.1
- ssl? ( dev-libs/openssl )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ../${DILLO_I18N_P}.diff
-
- if [ "${DILLO_ICONSET}" = "kde" ]
- then
- einfo "Using Konqueror style icon set"
- cp ${S2}/pixmaps.konq.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "gnome" ]
- then
- einfo "Using Ximian style icon set"
- cp ${S2}/pixmaps.ximian.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "mozilla" ]
- then
- einfo "Using Netscape style icon set"
- cp ${S2}/pixmaps.netscape.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "cobalt" ]
- then
- einfo "Using Cobalt style icon set"
- cp ${S2}/pixmaps.cobalt.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "bold" ]
- then
- einfo "Using bold style icon set"
- cp ${S2}/pixmaps.bold.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "trans" ]
- then
- einfo "Using transparent style icon set"
- cp ${S2}/pixmaps.trans.h ${S}/src/pixmaps.h
- elif [ "${DILLO_ICONSET}" = "trad" ]
- then
- einfo "Using the traditional icon set"
- cp ${S2}/pixmaps.trad.h ${S}/src/pixmaps.h
- else
- einfo "Using default Dillo icon set"
- fi
-}
-
-src_compile() {
- replace-flags "-O2 -mcpu=k6" "-O2 -mcpu=pentium"
-
- local myconf
-
- myconf="$(use_enable nls)
- $(use_enable truetype anti-alias)
- --enable-tabs
- --enable-meta-refresh"
-
- myconf="${myconf}
- $(use_enable ipv6)
- $(use_enable ssl)"
-
- econf ${myconf} || die
- emake || make || die
-}
-
-src_install() {
- dodir /etc /usr/share/icons/${PN}
- make DESTDIR=${D} install || die
-
- dosed /etc/dpidrc
-
- dodoc AUTHORS COPYING ChangeLog* INSTALL README NEWS
- docinto doc
- dodoc doc/*.txt doc/README
-
- cp ${S2}/icons/*.png ${D}/usr/share/icons/${PN}
-}
-
-pkg_postinst() {
- einfo "This ebuild for dillo comes with different toolbar icons"
- einfo "If you want mozilla style icons then try"
- einfo " DILLO_ICONSET=\"mozilla\" emerge dillo"
- einfo
- einfo "If you prefer konqueror style icons then try"
- einfo " DILLO_ICONSET=\"kde\" emerge dillo"
- einfo
- einfo "If you prefer ximian gnome style icons then try"
- einfo " DILLO_ICONSET=\"gnome\" emerge dillo"
- einfo
- einfo "If you prefer cobalt style icons then try"
- einfo " DILLO_ICONSET=\"cobalt\" emerge dillo"
- einfo
- einfo "If you prefer bold style icons then try"
- einfo " DILLO_ICONSET=\"bold\" emerge dillo"
- einfo
- einfo "If you prefer transparent style icons then try"
- einfo " DILLO_ICONSET=\"trans\" emerge dillo"
- einfo
- einfo "If you prefer the traditional icons then try"
- einfo " DILLO_ICONSET=\"trad\" emerge dillo"
- einfo
- einfo "If the DILLO_ICONSET variable is not set, you will get the"
- einfo "default iconset"
- einfo
- einfo "To see what the icons look like, please point your browser to:"
- einfo "http://dillo.auriga.wearlab.de/Icons/"
- einfo
-}
diff --git a/www-client/dillo/dillo-0.8.3-r3.ebuild b/www-client/dillo/dillo-0.8.3-r3.ebuild
index 04885c0e3d5e..d96826616b73 100644
--- a/www-client/dillo/dillo-0.8.3-r3.ebuild
+++ b/www-client/dillo/dillo-0.8.3-r3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-0.8.3-r3.ebuild,v 1.2 2004/12/23 15:00:32 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-0.8.3-r3.ebuild,v 1.3 2004/12/26 04:36:08 usata Exp $
inherit flag-o-matic eutils
@@ -15,7 +15,7 @@ SRC_URI="http://www.dillo.org/download/${P}.tar.bz2
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips ~arm ~ppc64"
+KEYWORDS="x86 ppc ~sparc alpha ~hppa ~amd64 ~mips ~arm ~ppc64"
MISC_IUSE="nls truetype"
IUSE="${MISC_IUSE} ipv6 ssl"
diff --git a/www-client/dillo/files/digest-dillo-0.8.3-r1 b/www-client/dillo/files/digest-dillo-0.8.3-r1
deleted file mode 100644
index 2a326a0e8d1f..000000000000
--- a/www-client/dillo/files/digest-dillo-0.8.3-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 be772ec9361bcc01515ae0da61de9bda dillo-0.8.3.tar.bz2 418714
-MD5 0d0bc7cdd39dc66b80280f73d74bfeaf dillo-gentoo-extras-patch4.tar.bz2 98800
-MD5 9235a65a6021434364fc92b638ae4561 dillo-0.8.3-i18n-misc-20041118.diff.bz2 201780
diff --git a/www-client/dillo/files/digest-dillo-0.8.3-r2 b/www-client/dillo/files/digest-dillo-0.8.3-r2
deleted file mode 100644
index e2d7fa5d3865..000000000000
--- a/www-client/dillo/files/digest-dillo-0.8.3-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 be772ec9361bcc01515ae0da61de9bda dillo-0.8.3.tar.bz2 418714
-MD5 0d0bc7cdd39dc66b80280f73d74bfeaf dillo-gentoo-extras-patch4.tar.bz2 98800
-MD5 447148cec43dcc44b092a90296c099a6 dillo-0.8.3-i18n-misc-20041201.diff.bz2 216527