diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-11-01 10:29:43 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-11-01 10:29:43 +0000 |
commit | 0087eea3006bd14bd2d716a1f626da7eef694d21 (patch) | |
tree | 55bf6662425317bb2b3aa0bbffbc8814d7bedbcc /net-misc/tlsproxyd | |
parent | Version bump (diff) | |
download | gentoo-2-0087eea3006bd14bd2d716a1f626da7eef694d21.tar.gz gentoo-2-0087eea3006bd14bd2d716a1f626da7eef694d21.tar.bz2 gentoo-2-0087eea3006bd14bd2d716a1f626da7eef694d21.zip |
Initial imports
Diffstat (limited to 'net-misc/tlsproxyd')
-rw-r--r-- | net-misc/tlsproxyd/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/tlsproxyd/files/digest-tlsproxyd-0.0.2 | 1 | ||||
-rw-r--r-- | net-misc/tlsproxyd/tlsproxyd-0.0.2.ebuild | 30 |
3 files changed, 40 insertions, 0 deletions
diff --git a/net-misc/tlsproxyd/ChangeLog b/net-misc/tlsproxyd/ChangeLog new file mode 100644 index 000000000000..2ef1bfaf16db --- /dev/null +++ b/net-misc/tlsproxyd/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for <CATEGORY>/<PACKAGE_NAME> +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tlsproxyd/ChangeLog,v 1.1 2002/11/01 10:29:43 aliz Exp $ + +*tlsproxyd-0.0.2 (31 Oct 2002) + + 31 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild submitted by Martin Klebermass <klebermass@limtec.de> + in #7272. diff --git a/net-misc/tlsproxyd/files/digest-tlsproxyd-0.0.2 b/net-misc/tlsproxyd/files/digest-tlsproxyd-0.0.2 new file mode 100644 index 000000000000..cfa17af6de34 --- /dev/null +++ b/net-misc/tlsproxyd/files/digest-tlsproxyd-0.0.2 @@ -0,0 +1 @@ +MD5 1a70db864e2ebefd517e081e2e056e4e tlsproxyd-0.0.2.tar.gz 21604 diff --git a/net-misc/tlsproxyd/tlsproxyd-0.0.2.ebuild b/net-misc/tlsproxyd/tlsproxyd-0.0.2.ebuild new file mode 100644 index 000000000000..b4015efb55eb --- /dev/null +++ b/net-misc/tlsproxyd/tlsproxyd-0.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tlsproxyd/tlsproxyd-0.0.2.ebuild,v 1.1 2002/11/01 10:29:43 aliz Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="An TLS Tunneling Tool." +SRC_URI="http://www.ex-parrot.com/~chris/tlsproxyd/${P}.tar.gz" +HOMEPAGE="http://www.ex-parrot.com/~chris/tlsproxyd/" +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="virtual/glibc + >=dev-libs/openssl-0.9.6" + +src_compile() { + emake || die +} + +src_install () { + dosbin tlsproxyd + doman tlsproxyd.8 + dodir /etc/tlsproxyd +} +pkg_postinst() { + einfo "Read the tlsproxyd MAN-Page" + einfo "Please create /etc/tlsproxyd/tlsproxyd.conf to fit your Configuration" + einfo "init Script not included in this distribution. Shouldnt be to hard to create one on your own!" +} + |