blob: ffa223b7f63eff861703fbd76cbd57a6843c1d2c (
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
44
45
46
47
48
49
50
51
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/gnunet/gnunet-0.5.5.ebuild,v 1.6 2004/06/25 00:33:04 agriffis Exp $
inherit libtool
S="${WORKDIR}/GNUnet-${PV}"
DESCRIPTION="GNUnet is an anonymous, distributed, reputation based network."
HOMEPAGE="http://www.gnu.org/software/GNUnet/"
SRC_URI="mirror://gnu/${PN}/GNUnet-${PV}.tar.bz2"
RESTRICT="nomirror"
IUSE="ipv6"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND=">=dev-libs/openssl-0.9.6d
>=sys-libs/gdbm-1.8.0
=dev-libs/glib-1.2*
=x11-libs/gtk+-1.2*
>=media-libs/libextractor-0.2.5"
src_compile () {
elibtoolize
local myconf
use ipv6 && myconf="--enable-ipv6" || myconf=" --disable-ipv6"
econf ${myconf} || die "econf failed"
make || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
dodir /etc
cp contrib/gnunet.conf.root ${D}/etc/gnunet.conf
docinto contrib
dodoc contrib/*
}
pkg_postinst() {
use ipv6 && ewarn "ipv6 support is -very- experimental and prone to bug"
einfo ""
einfo "now copy an appropriate config file from"
einfo "/usr/share/doc/${P}/contrib"
einfo "to ~/.gnunet/gnunet.conf"
einfo ""
}
|