diff options
author | Chuck Short <zul@gentoo.org> | 2003-09-27 22:51:58 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-09-27 22:51:58 +0000 |
commit | 0c5fcea1025e8548092ac4179001dc258c5ea120 (patch) | |
tree | 778b6f2f153fc6cc6634a51d82d8cd35c3435b8d /net-irc/iip | |
parent | Initial Version closes bug #22589. (diff) | |
download | gentoo-2-0c5fcea1025e8548092ac4179001dc258c5ea120.tar.gz gentoo-2-0c5fcea1025e8548092ac4179001dc258c5ea120.tar.bz2 gentoo-2-0c5fcea1025e8548092ac4179001dc258c5ea120.zip |
Initial Version closes bug #22589.
Diffstat (limited to 'net-irc/iip')
-rw-r--r-- | net-irc/iip/ChangeLog | 10 | ||||
-rw-r--r-- | net-irc/iip/Manifest | 3 | ||||
-rw-r--r-- | net-irc/iip/files/digest-iip-1.1.0 | 1 | ||||
-rw-r--r-- | net-irc/iip/iip-1.1.0.ebuild | 31 |
4 files changed, 44 insertions, 1 deletions
diff --git a/net-irc/iip/ChangeLog b/net-irc/iip/ChangeLog new file mode 100644 index 000000000000..a67ee9b57f2d --- /dev/null +++ b/net-irc/iip/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-irc/iip +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/iip/ChangeLog,v 1.1 2003/09/27 22:51:07 zul Exp $ + +*iip-1.1.0 (27 Sep 2003) + + 27 Sep 2003; Chuck Short <zul@gentoo.org> iip-1.1.0.ebuild: + Initial version, originally contributed by Andrew Bevitt <andrew@volutin.net>, + modified by me because RDEPEND and DEPEND were missing from the initial ebuild. + diff --git a/net-irc/iip/Manifest b/net-irc/iip/Manifest index d212d74cd26d..5f35c1511718 100644 --- a/net-irc/iip/Manifest +++ b/net-irc/iip/Manifest @@ -1,2 +1,3 @@ -MD5 cbff1e5ad317bd4970cdd49358daa9c4 iip-1.1.0.ebuild 687 +MD5 ecea2b29079d1d45e4c2b1321d3936db iip-1.1.0.ebuild 775 +MD5 ae566f38099e1ac8e855898a05ccbeff ChangeLog 453 MD5 6c9503150f532297b61909618997f875 files/digest-iip-1.1.0 58 diff --git a/net-irc/iip/files/digest-iip-1.1.0 b/net-irc/iip/files/digest-iip-1.1.0 new file mode 100644 index 000000000000..e772f37d4750 --- /dev/null +++ b/net-irc/iip/files/digest-iip-1.1.0 @@ -0,0 +1 @@ +MD5 389385fd95c143834a58f2db0e3890f7 iip-1.1.0.tgz 139021 diff --git a/net-irc/iip/iip-1.1.0.ebuild b/net-irc/iip/iip-1.1.0.ebuild new file mode 100644 index 000000000000..145b5a76e4be --- /dev/null +++ b/net-irc/iip/iip-1.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/iip/iip-1.1.0.ebuild,v 1.1 2003/09/27 22:51:07 zul Exp $ + +S="${WORKDIR}/${P}/src" +DESCRIPTION="Proxy server for encrypted anonymous irc-like network" +HOMEPAGE="http://www.invisiblenet.net/iip/" +SRC_URI="mirror://sourceforge/invisibleip/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc" +RDEPEND="" + +src_compile() { + emake || die +} + +src_install() { + ehome=/home/iip + enewuser iip + dodir /usr/man/man1 + dodir /usr/bin + dodir /usr/share/iip + make PREFIX=${D}usr INSTALLFILEPATH=${D}usr/share/iip/ install || die + cd ${WORKDIR}/${P} + dodoc AUTHORS CHANGELOG COPYING INSTALL README +} + |