blob: 90d570136f2c41dc278dde81264ef1965610dd11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2004 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.4 2004/05/29 16:16:27 pvdabeel Exp $
inherit eutils
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 ~ppc"
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
}
|