diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-04-24 18:24:12 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-04-24 18:24:12 +0000 |
commit | 9ae16ffdeeeb7c21953dcd284117607f4766c5b2 (patch) | |
tree | 3254b5fd9edac29ba279fce7b966793b051b4d01 /net-www | |
parent | for achim (diff) | |
download | gentoo-2-9ae16ffdeeeb7c21953dcd284117607f4766c5b2.tar.gz gentoo-2-9ae16ffdeeeb7c21953dcd284117607f4766c5b2.tar.bz2 gentoo-2-9ae16ffdeeeb7c21953dcd284117607f4766c5b2.zip |
new oops ebuild -- not finished yet
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/oops/oops-1.5.6.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/net-www/oops/oops-1.5.6.ebuild b/net-www/oops/oops-1.5.6.ebuild new file mode 100644 index 000000000000..5d1d06faf6a9 --- /dev/null +++ b/net-www/oops/oops-1.5.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-www/oops/oops-1.5.6.ebuild,v 1.1 2001/04/24 18:24:12 drobbins Exp $ + +S=${WORKDIR}/${P} +SRC_URI="http://zipper.paco.net/~igor/oops/oops-1.5.6.tar.gz" +HOMEPAGE="http://zipper.paco.net/~igor/oops.eng/" +DESCRIPTION="An advanced multithreaded caching web proxy" + +DEPEND="virtual/glibc + dev-libs/libpcre + ssl? ( >=dev-libs/openssl-0.9.6 )" + +src_compile() { +# local myconf +# if [ "`use ssl` " ] +# then +# myconf="--enable-ssl" +# else +# myconf="--disable-ssl" +# fi + try ./configure --prefix=/usr --sysconfdir=/etc/oops --sbindir=/usr/sbin --with-regexp=pcre + try make + +} + + +src_install() { + + try make DESTDIR=${D} install + + dodoc README SITES NEWS AUTHORS COPYING BUGS TODO + +} |