diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 00:37:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 00:37:59 +0000 |
commit | 642c366eceacf591ab12c2be16799955097e5b3f (patch) | |
tree | e7bd05fce912616d9e874f679d3f457d38dad5d8 /net-misc | |
parent | fixup (diff) | |
download | historical-642c366eceacf591ab12c2be16799955097e5b3f.tar.gz historical-642c366eceacf591ab12c2be16799955097e5b3f.tar.bz2 historical-642c366eceacf591ab12c2be16799955097e5b3f.zip |
initial ebuild #40166
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/proxytunnel/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/proxytunnel/files/digest-proxytunnel-1.1.3 | 1 | ||||
-rw-r--r-- | net-misc/proxytunnel/proxytunnel-1.1.3.ebuild | 24 |
3 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/proxytunnel/ChangeLog b/net-misc/proxytunnel/ChangeLog new file mode 100644 index 000000000000..3ebb9da18aff --- /dev/null +++ b/net-misc/proxytunnel/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-misc/proxytunnel +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/proxytunnel/ChangeLog,v 1.1 2004/02/05 00:37:58 vapier Exp $ + +*proxytunnel-1.1.3 (04 Feb 2004) + + 04 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by #40166 by Ed Catmur. diff --git a/net-misc/proxytunnel/files/digest-proxytunnel-1.1.3 b/net-misc/proxytunnel/files/digest-proxytunnel-1.1.3 new file mode 100644 index 000000000000..abffb3745aa6 --- /dev/null +++ b/net-misc/proxytunnel/files/digest-proxytunnel-1.1.3 @@ -0,0 +1 @@ +MD5 1516ba0ff529bcc281d5524144ece69e proxytunnel-1.1.3.tgz 22722 diff --git a/net-misc/proxytunnel/proxytunnel-1.1.3.ebuild b/net-misc/proxytunnel/proxytunnel-1.1.3.ebuild new file mode 100644 index 000000000000..635d010abca1 --- /dev/null +++ b/net-misc/proxytunnel/proxytunnel-1.1.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/proxytunnel/proxytunnel-1.1.3.ebuild,v 1.1 2004/02/05 00:37:59 vapier Exp $ + +DESCRIPTION="program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy" +HOMEPAGE="http://proxytunnel.sourceforge.net/" +SRC_URI="mirror://sourceforge/proxytunnel/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +S=${WORKDIR} + +src_compile() { + emake || die +} + +src_install() { + make install DESTDIR=${D} || die + dodoc CHANGES CREDITS README +} |