diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-11 17:35:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-11 17:35:51 +0000 |
commit | d0d1bf3e372d04d9b49c135faf0b70761a76899e (patch) | |
tree | 436384f0c89fad1fd11bba9c31eb85eb0970b90b /net-www/tinyproxy | |
parent | libsidutils added (needed by sidplay) (diff) | |
download | historical-d0d1bf3e372d04d9b49c135faf0b70761a76899e.tar.gz historical-d0d1bf3e372d04d9b49c135faf0b70761a76899e.tar.bz2 historical-d0d1bf3e372d04d9b49c135faf0b70761a76899e.zip |
initial ebuild
Diffstat (limited to 'net-www/tinyproxy')
-rw-r--r-- | net-www/tinyproxy/ChangeLog | 8 | ||||
-rw-r--r-- | net-www/tinyproxy/files/digest-tinyproxy-1.5.1 | 1 | ||||
-rw-r--r-- | net-www/tinyproxy/tinyproxy-1.5.1.ebuild | 27 |
3 files changed, 36 insertions, 0 deletions
diff --git a/net-www/tinyproxy/ChangeLog b/net-www/tinyproxy/ChangeLog new file mode 100644 index 000000000000..9b24b10940de --- /dev/null +++ b/net-www/tinyproxy/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-www/tinyproxy +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/tinyproxy/ChangeLog,v 1.1 2002/11/11 17:35:51 vapier Exp $ + +*tinyproxy-1.5.1 (11 Nov 2002) + + 11 Nov 2002; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/net-www/tinyproxy/files/digest-tinyproxy-1.5.1 b/net-www/tinyproxy/files/digest-tinyproxy-1.5.1 new file mode 100644 index 000000000000..31ab63741739 --- /dev/null +++ b/net-www/tinyproxy/files/digest-tinyproxy-1.5.1 @@ -0,0 +1 @@ +MD5 2734c069eaa5af1b866d781ddce1ed3c tinyproxy-1.5.1.tar.gz 246309 diff --git a/net-www/tinyproxy/tinyproxy-1.5.1.ebuild b/net-www/tinyproxy/tinyproxy-1.5.1.ebuild new file mode 100644 index 000000000000..2f99015d2178 --- /dev/null +++ b/net-www/tinyproxy/tinyproxy-1.5.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.5 2002/04/29 22:56:53 sandymac Exp + +DESCRIPTION="lightweight HTTP/SSL proxy" +SRC_URI="mirror://sourceforge/tinyproxy/${P}.tar.gz" +HOMEPAGE="http://tinyproxy.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="socks5" + +DEPEND="socks5? ( net-misc/dante )" + +src_compile() { + local myconf="--enable-xtinyproxy --enable-filter --enable-tunnel --enable-upstream" + use socks5 \ + && myconf="${myconf} --enable-socks" \ + || myconf="${myconf} --disable-socks" + econf ${myconf} + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" +} |