aboutsummaryrefslogtreecommitdiff
path: root/net-misc/gnunet/gnunet-9999.ebuild
blob: 1bacd5f90c0105cb894fc26474dabac8ca3e60d8 (plain) (blame)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
#
# taken from https://338909.bugs.gentoo.org/attachment.cgi?id=381924
# referenced at https://bugs.gentoo.org/show_bug.cgi?id=338909
# merged with 9999 variant from emery overlay
# refined 2015-07 by carlo von lynX of youbroketheinternet.org
# tweaks, complete rewrite since 2015-07 by ng0

EAPI=6

DESCRIPTION="Cryptographic GNU Mesh/Underlay Network Routing Layer"
HOMEPAGE="https://gnunet.org/"
LICENSE="GPL-3"
PYTHON_COMPAT=( python2_7 ) #rest needs to be tested

if [[ "${PV}" == "9999" ]]; then
	inherit eutils autotools subversion user python-any-r1
	ESVN_REPO_URI="https://gnunet.org/svn/gnunet"
	ESVN_PROJECT="gnunet"
	WANT_AUTOCONF="2.59"
	WANT_AUTOMAKE="1.11"
	WANT_LIBTOOL="2.2"
	AUTOTOOLS_AUTORECONF=1
else
	inherit eutils autotools subversion user python-any-r1
	WANT_AUTOCONF="2.59"
	WANT_AUTOMAKE="1.11"
	WANT_LIBTOOL="2.2"
	AUTOTOOLS_AUTORECONF=1
	SRC_URI="mirror://gentoo/${P}.tar.gz
			https://libertad.pw/static/${PN}-${PV}.tar.gz"
	#intended temporary place, also later moved to code.*
	#old/upstream: mirror://gnu/${PN}/${P}.tar.gz
fi
AUTOTOOLS_IN_SOURCE_BUILD=1
KEYWORDS="~amd64"
SLOT="0"
IUSE="+httpd +sqlite postgresql mysql nls nss +X +gnutls +dane +bluetooth ssl experimental extra conversation pulseaudio gstreamer qr tex test"
# With current svn numbers this is no longer needed.
#if [[ ${PV} != "9999" ]] ; then
#	PATCHES=( "${FILESDIR}"/install.diff )
#fi
RESTRICT="test" # how is running tests handled in this case in gentoo?
REQUIRED_USE="?? ( mysql postgresql sqlite )
			  ?? ( pulseaudio gstreamer )"

# note for gentoo-hardened:
# might be possible to build with
# "--with-gcc-hardening" and "--with-linker-hardening"

RDEPEND="
	mysql? ( >=virtual/mysql-5.1 )
	postgresql? ( >=dev-db/postgresql-8.3:= )
	sqlite? ( >=dev-db/sqlite-3.0 )
	>=net-misc/curl-7.21.0
	>=media-libs/libextractor-0.6.1
	>=dev-libs/libgcrypt-1.7
	>=dev-libs/libunistring-0.9.3
	>=net-misc/gnurl-7.34.0
	gnutls? ( net-libs/gnutls )
	dane? ( net-libs/gnutls[dane] )
	ssl? ( dev-libs/openssl:0= )
	net-dns/libidn
	sys-libs/ncurses:0
	sys-libs/zlib
	httpd? ( >=net-libs/libmicrohttpd-0.9.42[messages] )
	nls? ( >=sys-devel/gettext-0.18.1 )
	nss? ( dev-libs/nss )
	dev-libs/gmp:0=
	X? (
	   x11-libs/libXt
	   x11-libs/libXext
	   x11-libs/libX11
	   x11-libs/libXrandr
	)
	dev-libs/jansson
	>=sci-mathematics/glpk-4.43
	extra? (
		qr? ( >=media-gfx/zbar-0.10[python] )
		tex? ( >=app-text/texlive-2012 )
		conversation? (
				gstreamer? (
					   media-libs/gstreamer:1.0
					   dev-libs/glib:2 )
				pulseaudio? ( >=media-sound/pulseaudio-2.0 )
				>=media-libs/opus-1.0.1
				>=media-libs/libogg-1.3.0
		)
	)
	bluetooth? ( net-wireless/bluez )
	test? ( ${PYTHON_DEPS} )"
#test? ( >=dev-lang/python-2.7:2.7 )

DEPEND="
	${RDEPEND}"
	#sys-devel/automake:1.14"

MAKEOPTS="${MAKEOPTS} -j1"

pkg_setup() {
	enewgroup gnunet
	enewuser "gnunet" -1 -1 /var/lib/gnunet "gnunet"
	esethome "gnunet" /var/lib/gnunet
}

# Technically it is a svn checkout, just to be sure
# we run what ./bootstrap would do.
src_prepare() {
	if [[ "${PV}" == "9999" ]]; then
		subversion_src_prepare
		rm -rf libltdl || die
		eautoreconf
		./contrib/pogen.sh || die
		default
	else
		rm -rf libltdl || die
		eautoreconf
		./contrib/pogen.sh || die
		default
	fi
}

src_configure() {
	econf \
		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
		$(use_enable nls) \
		$(use_enable experimental) \
		$(use_with httpd microhttpd) \
		$(use_with mysql) \
		$(use_with postgresql) \
		$(use_with sqlite) \
		$(use_with X x) \
		$(use_with gnutls) \
		$(use_with bluetooth) \
		--with-libextractor
}
# debug those:
#$(use_with ssl) \

src_install() {
	default
	#newinitd "${FILESDIR}/gnunet.initd" gnunet
	newinitd "${FILESDIR}"/gnunet.initd gnunet
	insinto /etc/gnunet
	doins "${FILESDIR}"/gnunet.conf
	keepdir /var/{lib,log}/gnunet
	fowners gnunet:gnunet /var/lib/gnunet /var/log/gnunet
}

pkg_postinst() {
	einfo "Updating GTK icon cache"
	gtk-update-icon-cache #does not work somehow.
	elog "To configure"
	elog "	 1) Add desired user(s) to the 'gnunet' group"
	elog "	 2) Edit the system-wide config file '/etc/gnunet/gnunet.conf'"
	elog "	    preferably using 'gnunet-setup -c /etc/gnunet/gnunet.conf'"
	elog "	    ('gnunet-setup' is part of the gnunet-gtk package)"
	elog "	 3) You may want to choose other bootstrap nodes than the ones"
	elog "	    provided in /usr/share/gnunet/hellos or remove them if you"
	elog "	    want to run GNUnet another way."
	elog "   4) Certain services will require '/dev/net/tun' to exist,"
	elog "      which you must enable in your kernel."
	elog ""
	elog "   For further troubleshooting and info, take a look at the wiki"
	elog "   page about gnunet."
}