blob: a397ae7cd5aaca2314bcf6ef101f28c62c551905 (
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
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/iip/iip-1.2.ebuild,v 1.10 2009/09/23 18:43:56 patrick Exp $
EAPI="2"
inherit eutils
MY_P="${P}-dev1"
DESCRIPTION="Proxy server for encrypted anonymous IRC-like network"
HOMEPAGE="http://www.invisiblenet.net/iip/"
SRC_URI="mirror://sourceforge/invisibleip/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE=""
RDEPEND="dev-libs/openssl"
DEPEND="${RDEPEND}
dev-lang/perl
>=sys-apps/sed-4"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/iip_open_mode.patch"
}
src_compile() {
econf || die "econf failed"
sed -i \
-e "s:-Werror::" "${S}"/src/Makefile || \
die "sed Makefile failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README
}
|