Index: Makefile =================================================================== RCS file: /space/cvs/marcuscom-cvs/ports/devel/dconf/Makefile,v retrieving revision 1.6 diff -a -u -r1.6 Makefile --- Makefile 13 Jul 2010 08:07:04 -0000 1.6 +++ Makefile 21 Oct 2010 12:23:02 -0000 @@ -7,7 +7,7 @@ # PORTNAME= dconf -PORTVERSION= 0.4.2 +PORTVERSION= 0.5.1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -22,7 +22,7 @@ USE_BZIP2= yes USE_GMAKE= yes #USE_GETTEXT= yes -USE_GNOME= gnomehack glib20 +USE_GNOME= gnomehack gtk20 USE_LDCONFIG= yes GNU_CONFIGURE= yes Index: distinfo =================================================================== RCS file: /space/cvs/marcuscom-cvs/ports/devel/dconf/distinfo,v retrieving revision 1.4 diff -a -u -r1.4 distinfo --- distinfo 13 Jul 2010 08:07:04 -0000 1.4 +++ distinfo 21 Oct 2010 12:23:02 -0000 @@ -1,3 +1,3 @@ -MD5 (gnome3/dconf-0.4.2.tar.bz2) = 599bdaa3b91eff3a69c6307a39d9bc37 -SHA256 (gnome3/dconf-0.4.2.tar.bz2) = 81ad18eff80eea5ad3e612e3164d42a5a9989c499a61a5536197107d0b05afa1 -SIZE (gnome3/dconf-0.4.2.tar.bz2) = 322396 +MD5 (gnome3/dconf-0.5.1.tar.bz2) = c905497d0255fe2ba58564f9655908ab +SHA256 (gnome3/dconf-0.5.1.tar.bz2) = 0083d70e1b5e540d8d4b3f04fa5d17dff4c574136682fe3bdd9b5ecc196ec4f6 +SIZE (gnome3/dconf-0.5.1.tar.bz2) = 251287 Index: files/patch-common_shmdir.c =================================================================== RCS file: files/patch-common_shmdir.c diff -N files/patch-common_shmdir.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-common_shmdir.c 21 Oct 2010 12:23:02 -0000 @@ -0,0 +1,16 @@ +--- common/dconf-shmdir.c.orig 2010-10-21 13:46:17.000000000 +0200 ++++ common/dconf-shmdir.c 2010-10-21 13:47:46.000000000 +0200 +@@ -21,8 +21,13 @@ + + #include "dconf-shmdir.h" + ++#ifdef __linux__ + #include + #include ++#elif __FreeBSD__ ++#include ++#include ++#endif + #include + + #ifndef NFS_SUPER_MAGIC Index: files/patch-engine_dconf-engine.c =================================================================== RCS file: files/patch-engine_dconf-engine.c diff -N files/patch-engine_dconf-engine.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-engine_dconf-engine.c 21 Oct 2010 12:23:02 -0000 @@ -0,0 +1,19 @@ +--- engine/dconf-engine.c.orig 2010-10-21 13:49:19.000000000 +0200 ++++ engine/dconf-engine.c 2010-10-21 14:16:31.000000000 +0200 +@@ -144,6 +144,7 @@ dconf_engine_setup_user (DConfEngine *en + + if (fd >= 0) + { ++/* + if (posix_fallocate (fd, 0, 1) == 0) + { + engine->shm = mmap (NULL, 1, PROT_READ, MAP_SHARED, fd, 0); +@@ -151,7 +152,7 @@ dconf_engine_setup_user (DConfEngine *en + if (engine->shm == MAP_FAILED) + engine->shm = NULL; + } +- ++*/ + close (fd); + } + }