diff options
author | miwi <miwi@FreeBSD.org> | 2010-01-05 07:14:16 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-01-05 07:14:16 +0800 |
commit | 73cd9da2c3620a58acbfe06804d41e0fc3f8128b (patch) | |
tree | 344c3ecd24db6e304101fc247ae4089a1ac58b56 /net-p2p/gnunet/Makefile | |
parent | f1cd84a2ca0659c6608fdabc38a5bd7fdd9ec98f (diff) | |
download | freebsd-ports-gnome-73cd9da2c3620a58acbfe06804d41e0fc3f8128b.tar.gz freebsd-ports-gnome-73cd9da2c3620a58acbfe06804d41e0fc3f8128b.tar.zst freebsd-ports-gnome-73cd9da2c3620a58acbfe06804d41e0fc3f8128b.zip |
- Update to 0.8.1
PR: 142315
Submitted by: Ports Fury
Diffstat (limited to 'net-p2p/gnunet/Makefile')
-rw-r--r-- | net-p2p/gnunet/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/net-p2p/gnunet/Makefile b/net-p2p/gnunet/Makefile index 57fafa084537..f20977f0d383 100644 --- a/net-p2p/gnunet/Makefile +++ b/net-p2p/gnunet/Makefile @@ -7,7 +7,7 @@ # PORTNAME= gnunet -PORTVERSION= 0.8.0c +PORTVERSION= 0.8.1 CATEGORIES= net-p2p ipv6 MASTER_SITES= GNU \ http://gnunet.org/download/ @@ -30,30 +30,33 @@ OPTIONS= MYSQL "Enable MySQL support" on \ PGSQL "Enable PostgreSQL support" off \ SQLITE "Enable SQLite support" off -USE_BZIP2= yes USE_GNOME= gnomehack libglade2 USE_GETTEXT= yes USE_GMAKE= yes USE_AUTOTOOLS= libltdl:22 libtool:22 CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -CONFIGURE_ARGS= --disable-ltdl-install \ - --without-dialog \ - --without-cdialog \ - --without-qt +CONFIGURE_ARGS= --with-dialog=no \ + --with-cdialog=no \ + --with-qt=no \ + --with-daemon-home-dir=${DBDIR} \ + --with-daemon-config-dir=${PREFIX}/etc USE_LDCONFIG= yes +PLIST_SUB= DBDIR="${DBDIR}" + MAN1= gnunet-auto-share.1 gnunet-chat.1 gnunet-directory.1 \ - gnunet-download-manager.1 gnunet-download.1 gnunet-insert.1 \ - gnunet-peer-info.1 gnunet-pseudonym.1 gnunet-search.1 \ - gnunet-setup.1 gnunet-stats.1 gnunet-tbench.1 \ - gnunet-testbed.1 gnunet-tracekit.1 gnunet-transport-check.1 \ - gnunet-unindex.1 gnunet-update.1 gnunet-vpn.1 \ - gnunetd.1 + gnunet-download.1 gnunet-insert.1 gnunet-peer-info.1 \ + gnunet-pseudonym.1 gnunet-search.1 gnunet-setup.1 \ + gnunet-stats.1 gnunet-tbench.1 gnunet-testbed.1 \ + gnunet-tracekit.1 gnunet-transport-check.1 gnunet-unindex.1 \ + gnunet-update.1 gnunet-vpn.1 gnunetd.1 MAN5= gnunet.conf.5 gnunetd.conf.5 CPPFLAGS= -I${LOCALBASE}/include LDFLAGS= -L${LOCALBASE}/lib +DBDIR= /var/db/${PORTNAME} + .include <bsd.port.pre.mk> .if defined(WITHOUT_MYSQL) @@ -90,6 +93,7 @@ post-patch: .endfor post-install: + @${MKDIR} ${DBDIR} .for i in gnunet.conf gnunetd.conf ${INSTALL_DATA} ${WRKSRC}/contrib/${i} ${PREFIX}/etc/${i}-dist .endfor |