blob: 1ff9713851573564329ad180a539e3e6fea8697a (
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
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= gnunet
PORTVERSION= 0.10.1
CATEGORIES= net-p2p ipv6 security
MASTER_SITES= GNU
MAINTAINER= ports@FreeBSD.org
COMMENT= Anonymous, distributed, reputation-based network
LICENSE= GPLv3
LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \
libopus.so:${PORTSDIR}/audio/opus \
libpulse.so:${PORTSDIR}/audio/pulseaudio \
libltdl.so:${PORTSDIR}/devel/libltdl \
libunistring.so:${PORTSDIR}/devel/libunistring \
libidn.so:${PORTSDIR}/dns/libidn \
libglpk.so:${PORTSDIR}/math/glpk \
libgmp.so:${PORTSDIR}/math/gmp \
libgnutls.so:${PORTSDIR}/security/gnutls \
libgcrypt.so:${PORTSDIR}/security/libgcrypt \
libextractor.so:${PORTSDIR}/textproc/libextractor
USES= gmake iconv libtool pathfix pkgconfig
USE_GNOME= glib20
USE_GSTREAMER1= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-silent-rules \
--with-extractor=${LOCALBASE} \
--with-gnutls=${LOCALBASE} \
--with-libgcrypt-prefix=${LOCALBASE} \
--with-libunistring-prefix=${LOCALBASE} \
--with-ltdl=${LOCALBASE} \
--with-nssdir=no
INSTALL_TARGET= install-strip
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
GROUPS= gnunet
USERS= gnunet
SUB_FILES= pkg-install pkg-deinstall pkg-message
SUB_LIST= GNUNET_DAEMON_DIR="${GNUNET_DAEMON_DIR}"
PLIST_SUB= GNUNET_DAEMON_DIR="${GNUNET_DAEMON_DIR}"
OPTIONS_DEFINE= DOCS EXAMPLES HTTP NLS
OPTIONS_MULTI= DB
OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE
OPTIONS_DEFAULT= SQLITE
OPTIONS_SUB= yes
HTTP_DESC= Enable HTTP transport via libmicrohttpd
HTTP_LIB_DEPENDS= libmicrohttpd.so:${PORTSDIR}/www/libmicrohttpd
HTTP_CONFIGURE_ON= --with-microhttpd=${LOCALBASE}
HTTP_CONFIGURE_OFF= --without-microhttpd
MYSQL_DESC= Use MySQL for the data store and cache
MYSQL_USE= mysql=yes
MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE}
MYSQL_CONFIGURE_OFF= --without-mysql
NLS_USES= gettext
NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE}
NLS_CONFIGURE_OFF= --disable-nls
PGSQL_DESC= Use PostgreSQL for the data store and cache
PGSQL_USES= pgsql
PGSQL_CONFIGURE_ON= --with-postgres=${LOCALBASE}
PGSQL_CONFIGURE_OFF= --without-postgres
SQLITE_DESC= Use SQLite for the data store and cache
SQLITE_USE= sqlite=yes
SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE}
SQLITE_CONFIGURE_OFF= --without-sqlite
#If a non-default GNUNET_DAEMON_DIR is defined, the home directory
#of the gnunet user may need to be adjusted -- e.g., via:
#pw usermod gnunet -d $GNUNET_DAEMON_DIR
GNUNET_DAEMON_DIR?= /var/lib/gnunet
post-patch:
@${REINPLACE_CMD} -e \
'/^install-data-am/s|install-docDATA||' ${WRKSRC}/Makefile.in
.for i in configure gnunet_config.h \
src/datacache/plugin_datacache_postgres.c \
src/datastore/plugin_datastore_postgres.c \
src/include/gnunet_postgres_lib.h
@${REINPLACE_CMD} -e \
's|postgresql/||g' ${WRKSRC}/${i}
.endfor
post-build:
@${PRINTF} "%s\n%s\n%s\n" "[PATHS]" \
"SERVICEHOME = ${GNUNET_DAEMON_DIR}" \
"DEFAULTCONFIG = ${PREFIX}/etc/gnunet.conf" \
> ${WRKDIR}/gnunet.conf.sample
post-install:
(cd ${WRKSRC}/contrib && ${INSTALL_PROGRAM} timeout_watchdog \
${STAGEDIR}${PREFIX}/bin)
(cd ${WRKDIR} && ${INSTALL_DATA} gnunet.conf.sample \
${STAGEDIR}${PREFIX}/etc)
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in AUTHORS ChangeLog NEWS README
(cd ${WRKSRC} && ${INSTALL_DATA} ${i} \
${STAGEDIR}${DOCSDIR})
.endfor
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for i in gnunet_janitor.py gnunet_pyexpect.py report.sh
(cd ${WRKSRC}/contrib && ${INSTALL_DATA} ${i} \
${STAGEDIR}${EXAMPLESDIR})
.endfor
.include <bsd.port.mk>
|