diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-01-04 23:14:16 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-01-04 23:14:16 +0000 |
commit | 1e342c6976d57bb1619e7a6b79f5d2a3e12a27d8 (patch) | |
tree | 6c2762ce1416e466828c2963d28958db1ff0df7a /net-p2p/gnunet/Makefile | |
parent | 119c0720e58269230f7591f6bd859e4910e88303 (diff) |
Notes
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 |