diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-22 20:45:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-22 20:45:04 +0000 |
commit | eac348985124133293905e85d90b8fed66aaaf6d (patch) | |
tree | c67c67a426daca1af40dc4d89b94243475e09593 /net-misc/unix2tcp | |
parent | cleanup (diff) | |
download | gentoo-2-eac348985124133293905e85d90b8fed66aaaf6d.tar.gz gentoo-2-eac348985124133293905e85d90b8fed66aaaf6d.tar.bz2 gentoo-2-eac348985124133293905e85d90b8fed66aaaf6d.zip |
initial ebuild
Diffstat (limited to 'net-misc/unix2tcp')
-rw-r--r-- | net-misc/unix2tcp/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/unix2tcp/files/digest-unix2tcp-0.7.2 | 1 | ||||
-rw-r--r-- | net-misc/unix2tcp/unix2tcp-0.7.2.ebuild | 22 |
3 files changed, 31 insertions, 0 deletions
diff --git a/net-misc/unix2tcp/ChangeLog b/net-misc/unix2tcp/ChangeLog new file mode 100644 index 000000000000..291249edffba --- /dev/null +++ b/net-misc/unix2tcp/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-misc/unix2tcp +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/ChangeLog,v 1.1 2003/09/22 20:45:04 vapier Exp $ + +*unix2tcp-0.7.2 (22 Sep 2003) + + 22 Sep 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Mihai RUSU <dizzy@roedu.net> #29125. diff --git a/net-misc/unix2tcp/files/digest-unix2tcp-0.7.2 b/net-misc/unix2tcp/files/digest-unix2tcp-0.7.2 new file mode 100644 index 000000000000..dabe5b56a49c --- /dev/null +++ b/net-misc/unix2tcp/files/digest-unix2tcp-0.7.2 @@ -0,0 +1 @@ +MD5 e95b9f4d54408a26d9a5940cc787a497 unix2tcp-0.7.2.tar.bz2 12937 diff --git a/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild b/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild new file mode 100644 index 000000000000..5d68581f1c88 --- /dev/null +++ b/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc., 2003 Mihai RUSU +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild,v 1.1 2003/09/22 20:45:04 vapier Exp $ + +inherit eutils + +DESCRIPTION="a connection forwarder that converts Unix sockets into TCP sockets" +HOMEPAGE="http://dizzy.roedu.net/unix2tcp/" +SRC_URI="http://dizzy.roedu.net/unix2tcp/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +src_compile() { + emake LDFLAGS="${LDFLAGS}" || die +} + +src_install() { + dobin unix2tcp + dodoc ChangeLog README +} |