diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-27 23:30:23 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-27 23:30:23 +0000 |
commit | cfc4d51373d44e5fe9caf4fad837c7d1daf42442 (patch) | |
tree | 01f4e1b7967860b55c69d519a8cdeb0572db42b4 /net-misc/httptunnel | |
parent | New package. Fixes #3054 (diff) | |
download | gentoo-2-cfc4d51373d44e5fe9caf4fad837c7d1daf42442.tar.gz gentoo-2-cfc4d51373d44e5fe9caf4fad837c7d1daf42442.tar.bz2 gentoo-2-cfc4d51373d44e5fe9caf4fad837c7d1daf42442.zip |
New package. Fixes #2994
Diffstat (limited to 'net-misc/httptunnel')
-rw-r--r-- | net-misc/httptunnel/ChangeLog | 13 | ||||
-rw-r--r-- | net-misc/httptunnel/files/digest-httptunnel-3.0.5 | 1 | ||||
-rw-r--r-- | net-misc/httptunnel/httptunnel-3.0.5.ebuild | 24 |
3 files changed, 38 insertions, 0 deletions
diff --git a/net-misc/httptunnel/ChangeLog b/net-misc/httptunnel/ChangeLog new file mode 100644 index 000000000000..9685abfd1eae --- /dev/null +++ b/net-misc/httptunnel/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-misc/httptunnel +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/httptunnel/ChangeLog,v 1.1 2002/05/27 23:30:23 rphillips Exp $ + +* httptunnel-3.0.5 (24 May 2002) + + 24 May 2002; A.Bennee <alex@bennee.com> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/net-misc/httptunnel/files/digest-httptunnel-3.0.5 b/net-misc/httptunnel/files/digest-httptunnel-3.0.5 new file mode 100644 index 000000000000..ecce4c660886 --- /dev/null +++ b/net-misc/httptunnel/files/digest-httptunnel-3.0.5 @@ -0,0 +1 @@ +MD5 2a710f377c82ab4eb201458f7b9f99c5 httptunnel-3.0.5.tar.gz 260536 diff --git a/net-misc/httptunnel/httptunnel-3.0.5.ebuild b/net-misc/httptunnel/httptunnel-3.0.5.ebuild new file mode 100644 index 000000000000..970c73f1f8f5 --- /dev/null +++ b/net-misc/httptunnel/httptunnel-3.0.5.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/httptunnel/httptunnel-3.0.5.ebuild,v 1.1 2002/05/27 23:30:23 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="httptunnel can create IP tunnels through firewalls/proxies using HTTP" +HOMEPAGE="http://www.nocrew.org/software/httptunnel.html" +LICENSE="GPL" +DEPEND="" +#RDEPEND="" +SRC_URI="http://www.nocrew.org/software/httptunnel/httptunnel-3.0.5.tar.gz" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |