summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-05-07 17:55:26 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-05-07 17:55:26 +0000
commit8125d3810e0eb1dc80e154cef1b597009bec1912 (patch)
tree1a986d1fe5ec8612396dae9f7b089c96e234945d /net-misc/unix2tcp
parentVersion bumped. <=net-www/kita-0.120.0 fail to build with gcc-3.4 (Manifest r... (diff)
downloadgentoo-2-8125d3810e0eb1dc80e154cef1b597009bec1912.tar.gz
gentoo-2-8125d3810e0eb1dc80e154cef1b597009bec1912.tar.bz2
gentoo-2-8125d3810e0eb1dc80e154cef1b597009bec1912.zip
version bump thanks to Mihai RUSU <dizzy@roedu.net> in bug #50328
Diffstat (limited to 'net-misc/unix2tcp')
-rw-r--r--net-misc/unix2tcp/ChangeLog8
-rw-r--r--net-misc/unix2tcp/files/digest-unix2tcp-0.8.21
-rw-r--r--net-misc/unix2tcp/metadata.xml9
-rw-r--r--net-misc/unix2tcp/unix2tcp-0.7.2.ebuild4
-rw-r--r--net-misc/unix2tcp/unix2tcp-0.8.2.ebuild30
5 files changed, 49 insertions, 3 deletions
diff --git a/net-misc/unix2tcp/ChangeLog b/net-misc/unix2tcp/ChangeLog
index 763b900c85bb..debf0d06c742 100644
--- a/net-misc/unix2tcp/ChangeLog
+++ b/net-misc/unix2tcp/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/unix2tcp
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/ChangeLog,v 1.2 2004/04/16 20:37:25 randy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/ChangeLog,v 1.3 2004/05/07 17:55:26 dragonheart Exp $
+
+*unix2tcp-0.8.2 (08 May 2004)
+
+ 08 May 2004; Daniel Black <dragonheart@gentoo.org> +metadata.xml,
+ +unix2tcp-0.8.2.ebuild:
+ version bump thanks to Mihai RUSU <dizzy@roedu.net> in bug #50328
16 Apr 2004; Michael McCabe <randy@gentoo.org> unix2tcp-0.7.2.ebuild:
adding s390 to keywords
diff --git a/net-misc/unix2tcp/files/digest-unix2tcp-0.8.2 b/net-misc/unix2tcp/files/digest-unix2tcp-0.8.2
new file mode 100644
index 000000000000..f8c1ac8e2972
--- /dev/null
+++ b/net-misc/unix2tcp/files/digest-unix2tcp-0.8.2
@@ -0,0 +1 @@
+MD5 e546602a51001d14931d73d613c6636a unix2tcp-0.8.2.tar.bz2 29636
diff --git a/net-misc/unix2tcp/metadata.xml b/net-misc/unix2tcp/metadata.xml
new file mode 100644
index 000000000000..d8b96be3c5cd
--- /dev/null
+++ b/net-misc/unix2tcp/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>bug-wranglers@gentoo.org</email>
+ <description>This package lacks a primary herd or maintainer.</description>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild b/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild
index d886075e4aed..7bdbf0eb3a7f 100644
--- a/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild
+++ b/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc., 2003 Mihai RUSU
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/04/16 20:37:25 randy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/unix2tcp-0.7.2.ebuild,v 1.3 2004/05/07 17:55:26 dragonheart Exp $
inherit eutils
diff --git a/net-misc/unix2tcp/unix2tcp-0.8.2.ebuild b/net-misc/unix2tcp/unix2tcp-0.8.2.ebuild
new file mode 100644
index 000000000000..d5cfa32803f1
--- /dev/null
+++ b/net-misc/unix2tcp/unix2tcp-0.8.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/unix2tcp/unix2tcp-0.8.2.ebuild,v 1.1 2004/05/07 17:55:26 dragonheart 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 ~s390"
+
+DEPEND="sys-devel/gcc
+ virtual/glibc"
+
+RDEPEND="virtual/glibc"
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ emake DESTDIR=${D} install || die
+ dodoc ChangeLog README
+}
+
+