summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2005-07-16 09:51:50 +0000
committerAlin Năstac <mrness@gentoo.org>2005-07-16 09:51:50 +0000
commit08a856478ceebf09645eb6c335e5c41504d6ffe2 (patch)
treeb34162b66e7482300d358cce98d84bfeedf56d4e /net-proxy
parentversions bad (diff)
downloadhistorical-08a856478ceebf09645eb6c335e5c41504d6ffe2.tar.gz
historical-08a856478ceebf09645eb6c335e5c41504d6ffe2.tar.bz2
historical-08a856478ceebf09645eb6c335e5c41504d6ffe2.zip
initial version (#98294)
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-proxy')
-rw-r--r--net-proxy/pingtunnel/ChangeLog10
-rw-r--r--net-proxy/pingtunnel/Manifest14
-rw-r--r--net-proxy/pingtunnel/files/digest-pingtunnel-0.611
-rw-r--r--net-proxy/pingtunnel/metadata.xml7
-rw-r--r--net-proxy/pingtunnel/pingtunnel-0.61.ebuild28
5 files changed, 60 insertions, 0 deletions
diff --git a/net-proxy/pingtunnel/ChangeLog b/net-proxy/pingtunnel/ChangeLog
new file mode 100644
index 000000000000..0787d6317756
--- /dev/null
+++ b/net-proxy/pingtunnel/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-proxy/pingtunnel
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/ChangeLog,v 1.1 2005/07/16 09:51:50 mrness Exp $
+
+*pingtunnel-0.61 (16 Jul 2005)
+
+ 16 Jul 2005; Alin Nastac <mrness@gentoo.org> +metadata.xml,
+ +pingtunnel-0.61.ebuild:
+ Initial import from bug #98294.
+
diff --git a/net-proxy/pingtunnel/Manifest b/net-proxy/pingtunnel/Manifest
new file mode 100644
index 000000000000..cc302d95a730
--- /dev/null
+++ b/net-proxy/pingtunnel/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 29a51088bc706fb275288c331dd64520 pingtunnel-0.61.ebuild 700
+MD5 ab5cdcbb6fc61cc0bb0b2cfb3d5d127c ChangeLog 369
+MD5 bed1580dc780e5e8ee7dc4f7d2fb3f19 metadata.xml 380
+MD5 a8109fce1f0342daf3ddd3fb377cacd3 files/digest-pingtunnel-0.61 66
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.1 (GNU/Linux)
+
+iD8DBQFC2NjRNSP4Vda7IdsRAmk2AJ95oo5gc2qC/+PvtITojh1iprND1QCfRLgv
+Slsilpz3geuOTzvIAmZmgBg=
+=SehE
+-----END PGP SIGNATURE-----
diff --git a/net-proxy/pingtunnel/files/digest-pingtunnel-0.61 b/net-proxy/pingtunnel/files/digest-pingtunnel-0.61
new file mode 100644
index 000000000000..046575447f3a
--- /dev/null
+++ b/net-proxy/pingtunnel/files/digest-pingtunnel-0.61
@@ -0,0 +1 @@
+MD5 ae01f6587d3915ec6642befe37035c58 PingTunnel-0.61.tar.gz 53433
diff --git a/net-proxy/pingtunnel/metadata.xml b/net-proxy/pingtunnel/metadata.xml
new file mode 100644
index 000000000000..6dd4610ec952
--- /dev/null
+++ b/net-proxy/pingtunnel/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>net-proxy</herd>
+<longdescription>Ptunnel is an application that allows you to reliably tunnel TCP connections to a remote host
+using ICMP echo request and reply packets, commonly known as ping requests and replies.</longdescription>
+</pkgmetadata>
diff --git a/net-proxy/pingtunnel/pingtunnel-0.61.ebuild b/net-proxy/pingtunnel/pingtunnel-0.61.ebuild
new file mode 100644
index 000000000000..59b314b1c589
--- /dev/null
+++ b/net-proxy/pingtunnel/pingtunnel-0.61.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/pingtunnel/pingtunnel-0.61.ebuild,v 1.1 2005/07/16 09:51:50 mrness Exp $
+
+DESCRIPTION="Tunnel TCP over ICMP"
+HOMEPAGE="http://www.cs.uit.no/~daniels/PingTunnel"
+SRC_URI="http://www.cs.uit.no/~daniels/PingTunnel/PingTunnel-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+RDEPEND="net-libs/libpcap"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/PingTunnel"
+
+src_unpack() {
+ unpack ${A}
+
+ sed -r -i -e 's:^(CFLAGS|CC):#&:' ${S}/Makefile
+}
+
+src_install() {
+ make prefix="${D}/usr" install || die "make install has failed"
+ dodoc CHANGELOG README
+}