summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2005-06-04 16:30:19 +0000
committerAlin Năstac <mrness@gentoo.org>2005-06-04 16:30:19 +0000
commit2768b87b5f94a1ce6adb23d8cb03ae56a451abd8 (patch)
treec2736bf910a08ca347a2923ddfcaa427075725a7 /net-proxy/wwwoffle
parentUpdated reference to servletapi-2.3, we dont install a versioned servletapi j... (diff)
downloadgentoo-2-2768b87b5f94a1ce6adb23d8cb03ae56a451abd8.tar.gz
gentoo-2-2768b87b5f94a1ce6adb23d8cb03ae56a451abd8.tar.bz2
gentoo-2-2768b87b5f94a1ce6adb23d8cb03ae56a451abd8.zip
erase old version
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-proxy/wwwoffle')
-rw-r--r--net-proxy/wwwoffle/ChangeLog6
-rw-r--r--net-proxy/wwwoffle/files/digest-wwwoffle-2.7h1
-rwxr-xr-xnet-proxy/wwwoffle/files/wwwoffled-online21
-rw-r--r--net-proxy/wwwoffle/wwwoffle-2.7h.ebuild67
4 files changed, 5 insertions, 90 deletions
diff --git a/net-proxy/wwwoffle/ChangeLog b/net-proxy/wwwoffle/ChangeLog
index a9a2545e658f..63d8fdda23b7 100644
--- a/net-proxy/wwwoffle/ChangeLog
+++ b/net-proxy/wwwoffle/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-proxy/wwwoffle
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/ChangeLog,v 1.2 2005/04/23 13:09:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/ChangeLog,v 1.3 2005/06/04 16:30:19 mrness Exp $
+
+ 04 Jun 2005; Alin Nastac <mrness@gentoo.org> -files/wwwoffled-online,
+ -wwwoffle-2.7h.ebuild:
+ Remove old version.
22 Apr 2005; Alin Nastac <mrness@gentoo.org> :
Rename category & herd www-proxy to net-proxy
diff --git a/net-proxy/wwwoffle/files/digest-wwwoffle-2.7h b/net-proxy/wwwoffle/files/digest-wwwoffle-2.7h
deleted file mode 100644
index d419996746a2..000000000000
--- a/net-proxy/wwwoffle/files/digest-wwwoffle-2.7h
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3226cbe65feca747f92393114d9de5f0 wwwoffle-2.7h.tgz 886577
diff --git a/net-proxy/wwwoffle/files/wwwoffled-online b/net-proxy/wwwoffle/files/wwwoffled-online
deleted file mode 100755
index 9c409d3afe57..000000000000
--- a/net-proxy/wwwoffle/files/wwwoffled-online
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/files/wwwoffled-online,v 1.1 2005/04/22 19:15:12 mrness Exp $
-
-depend() {
- need wwwoffled net
-}
-
-start() {
- ebegin "Starting wwwoffled-online"
- wwwoffle -online -c /etc/wwwoffle.conf
- wwwoffle -fetch -c /etc/wwwoffle.conf
- eend $?
-}
-
-stop() {
- ebegin "Stopping wwwoffled-online"
- wwwoffle -offline -c /etc/wwwoffle.conf
- eend $?
-}
diff --git a/net-proxy/wwwoffle/wwwoffle-2.7h.ebuild b/net-proxy/wwwoffle/wwwoffle-2.7h.ebuild
deleted file mode 100644
index 681b855546cc..000000000000
--- a/net-proxy/wwwoffle/wwwoffle-2.7h.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/wwwoffle/wwwoffle-2.7h.ebuild,v 1.1 2005/04/22 19:15:12 mrness Exp $
-
-DESCRIPTION="wwwoffle = WWW Offline Explorer, an adv. caching proxy especially suitable for nonpermanent (e.g. dialup) Internet connections"
-
-SRC_URI="ftp://ftp.demon.co.uk/pub/unix/httpd/${P}.tgz
- ftp://ftp.ibiblio.org/pub/Linux/apps/www/servers/${P}.tgz"
-
-HOMEPAGE="http://www.gedanken.demon.co.uk/"
-KEYWORDS="x86 ~sparc ppc ppc64"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE="ipv6"
-DEPEND="sys-devel/flex
- sys-libs/zlib
- sys-devel/gcc
- virtual/libc
- >=sys-apps/sed-4"
-
-RDEPEND="sys-libs/zlib
- virtual/libc"
-
-src_compile() {
- local myconf
- use ipv6 && myconf="$myconf --with-ipv6" || myconf="$myconf --without-ipv6"
- ./configure $myconf --prefix=/usr --with-confdir=/etc || die
-
- emake || die
-}
-
-src_install() {
-
- sed -i -e 's#$(TAR) xpf #$(TAR) --no-same-owner -xpf #' cache/Makefile
-
- # Install the files
- make prefix=${D}/usr SPOOLDIR=${D}/var/spool/wwwoffle CONFDIR=${D}/etc install || die
-
- cd ${D}/etc
- sed -i -e "s:${D}::" wwwoffle.conf
-
- # Install the wwwoffled init script
- exeinto /etc/init.d
- doexe ${FILESDIR}/{wwwoffled-online,wwwoffled}
-
- # someday i'll make it use the file in /etc. for now we at least get
- # config file protection this way.
- dosym /etc/wwwoffle.conf /var/spool/wwwoffle/wwwoffle.conf
-}
-
-pkg_preinst() {
- source /etc/init.d/functions.sh
- if [ -L ${svcdir}/started/wwwoffled ]; then
- einfo "The wwwoffled init script is running. I'll stop it, merge the new files and
- restart the script."
- /etc/init.d/wwwoffled stop
- touch ${T}/restart
- fi
-}
-
-pkg_postinst() {
- if [ -f "${T}/restart" ]; then
- einfo "Starting the wwwoffled initscript again..."
- /etc/init.d/wwwoffled start
- rm ${T}/restart
- fi
-}