blob: d3c0ef2b7c4e84425484480578910533535cf9f9 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
# Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/
# This ebuild is a small modification of the official gnunet ebuild
inherit eutils 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"
#tests don't work
RESTRICT="test nomirror"
IUSE="ipv6 mysql sqlite guile nls gtk"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND=">=dev-libs/libgcrypt-1.2.0
>=media-libs/libextractor-0.5.13
>=dev-libs/gmp-4.0.0
sys-libs/zlib
gtk? ( >=x11-libs/gtk+-2.6.10 )
sys-apps/sed
ncurses? ( sys-libs/ncurses )
mysql? ( >=dev-db/mysql-4.0.24 )
sqlite? ( >=dev-db/sqlite-3.0.8 )
guile? ( >=dev-scheme/guile-1.6.0 )
nls? ( sys-devel/gettext )"
pkg_setup() {
if ! use mysql && ! use sqlite; then
einfo
einfo "You need to specify at least one of 'mysql' or 'sqlite'"
einfo "USE flag in order to have properly installed gnunet"
einfo
die "Invalid USE flag set"
fi
}
pkg_preinst() {
enewgroup gnunet || die "Problem adding gnunet group"
enewuser gnunet -1 -1 /dev/null gnunet || die "Problem adding gnunet user"
}
src_unpack() {
unpack ${A}
cd ${S}
# epatch ${FILESDIR}/${P}-nulludp.patch
# make mysql default sqstore if we do not compile sql support
# (bug #107330)
! use sqlite && \
sed -i 's:default "sqstore_sqlite":default "sqstore_mysql":' \
contrib/config-daemon.in
# we do not want to built gtk support with USE=-gtk
if ! use gtk ; then
sed -i "s:AC_DEFINE_UNQUOTED..HAVE_GTK.*:true:" configure.ac
autoconf || die "autoconf failed"
libtoolize --copy --force
fi
}
src_compile() {
local myconf
if use ipv6; then
if use amd64; then
ewarn "ipv6 in GNUnet does not currently work with amd64 and has been disabled"
else
myconf="${myconf} --enable-ipv6"
fi
fi
use mysql || myconf="${myconf} --without-mysql"
econf \
$(use_with sqlite) \
$(use_enable nls) \
$(use_enable ncurses) \
$(use_enable guile) \
${myconf} || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
dodoc ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS PLATFORMS README README.fr UPDATING
insinto /etc
newins contrib/gnunet.root gnunet.conf
docinto contrib
dodoc contrib/*
exeinto /etc/init.d
newexe ${FILESDIR}/${PN}-2 gnunet
dodir /var/lib/GNUnet
chown gnunet:gnunet ${D}/var/lib/GNUnet
}
pkg_postinst() {
# make sure permissions are ok
chown -R gnunet:gnunet /var/lib/GNUnet
use ipv6 && ewarn "ipv6 support is -very- experimental and prone to bugs"
einfo
einfo "To configure"
einfo " 1) Add user(s) to the gnunet group"
einfo " 2) Run 'gnunet-setup' to generate your client config file"
einfo " 3) Run gnunet-setup -d to generate a server config file"
einfo " 4) Optionally copy the .gnunet/gnunetd.conf into /etc and"
einfo "\tuse as a global server config file:"
einfo "$ gnunet-setup -d"
einfo "# cp ~/.gnunet/gnunetd.conf /etc/"
einfo
}
|