diff options
Diffstat (limited to 'www-proxy/oops/oops-1.5.6.ebuild')
-rw-r--r-- | www-proxy/oops/oops-1.5.6.ebuild | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/www-proxy/oops/oops-1.5.6.ebuild b/www-proxy/oops/oops-1.5.6.ebuild new file mode 100644 index 000000000000..b529c3df6e1c --- /dev/null +++ b/www-proxy/oops/oops-1.5.6.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-proxy/oops/oops-1.5.6.ebuild,v 1.1 2004/08/15 18:58:06 stuart Exp $ + +DESCRIPTION="An advanced multithreaded caching web proxy" +HOMEPAGE="http://zipper.paco.net/~igor/oops.eng/" +SRC_URI="http://zipper.paco.net/~igor/oops/oops-1.5.6.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 sparc" +IUSE="" + +DEPEND="virtual/libc + sys-devel/gcc + dev-libs/libpcre + sys-devel/flex" + +RDEPEND="virtual/libc + sys-devel/gcc" + +src_unpack() { + unpack ${A} + cd ${S} + cp configure configure.orig + sed -e 's:/usr/local/lib/libpcre:/usr/lib/libpcre:g' configure.orig > configure + cd ${S}/src/modules +} + +src_compile() { + ./configure --prefix=/usr --libdir=/usr/lib/oops --enable-oops-user=squid \ + --sysconfdir=/etc/oops --sbindir=/usr/sbin --with-regexp=pcre --localstatedir=/var/run/oops || die + cd src + cp config.h.in config.h.in.orig + sed -e '/STRERROR_R/d' config.h.in.orig > config.h.in + cp Makefile Makefile.orig + sed -e 's:${OOPS:${DESTDIR}/${OOPS:g' Makefile.orig > Makefile + cd .. + make || die +} + +src_install() { + dodir /usr/sbin + chown squid:squid ${D} + make DESTDIR=${D} install || die + chmod -R g+srw ${D}/etc/oops + chmod -R g+rw ${D}/etc/oops/* + + insinto /etc/oops + doins ${FILESDIR}/oops.cfg + cd ${D} + + #cleanups + rm -rf ${D}/usr/oops + rm -rf ${D}/usr/lib/oops/modules + + #config files + + cd ${D}/etc/oops + local x + local y + for y in . tables + do + for x in ${y}/* + do + if [ -f $x ] + then + mv $x $x.eg + fi + done + done +} + +pkg_postinst() { + local x + local y + local mylen + local newf + cd ${ROOT}/etc/oops + for y in . tables + do + for x in ${y}/*.eg + do + realf=`echo $x | sed -e 's/.eg$//'` + if [ ! -e ${realf} ] + then + cp ${x} ${realf} + fi + done + done + if [ ! -e ${ROOT}/var/log/oops ] + then + install -d -o squid -g squid -m0770 ${ROOT}/var/log/oops + chmod g+s ${ROOT}/var/log/oops + fi + if [ ! -e ${ROOT}/var/lib/oops/storage ] + then + install -d -o squid -g squid -m0770 ${ROOT}/var/lib/oops/storage + fi + if [ ! -e ${ROOT}/var/lib/oops/db ] + then + install -d -o squid -g squid -m0770 ${ROOT}/var/lib/oops/db + fi + if [ ! -e ${ROOT}/var/run/oops ] + then + install -d -o squid -g squid -m0775 ${ROOT}/var/run/oops + chmod g+s ${ROOT}/var/run/oops + fi +} + |