diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-11-26 14:48:13 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-11-26 14:48:13 +0800 |
commit | 428aa7490e072db462cd273aa4787c477ef109d0 (patch) | |
tree | 3b4e91f2e75b27b030e184961d8988d0738fbbf4 /devel | |
parent | c3732b9a9ef576e5a4affba87738e032e911986e (diff) | |
download | marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar.gz marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar.bz2 marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar.lz marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar.xz marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.tar.zst marcuscom-ports-428aa7490e072db462cd273aa4787c477ef109d0.zip |
Update to 0.1.10.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11799 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gamin/Makefile | 56 | ||||
-rw-r--r-- | devel/gamin/distinfo | 3 | ||||
-rw-r--r-- | devel/gamin/files/patch-libgamin_gam_api.c | 119 | ||||
-rw-r--r-- | devel/gamin/files/patch-python_Makefile.in | 20 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_channel.c | 127 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_fs.c | 161 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_kqueue.c | 129 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_node.c | 10 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_poll_basic.c | 11 | ||||
-rw-r--r-- | devel/gamin/files/patch-server_gam_server.c | 20 | ||||
-rw-r--r-- | devel/gamin/files/patch-tests_testing.c | 27 | ||||
-rw-r--r-- | devel/gamin/pkg-descr | 8 | ||||
-rw-r--r-- | devel/gamin/pkg-message | 16 | ||||
-rw-r--r-- | devel/gamin/pkg-plist | 12 |
14 files changed, 719 insertions, 0 deletions
diff --git a/devel/gamin/Makefile b/devel/gamin/Makefile new file mode 100644 index 000000000..2fd9515fc --- /dev/null +++ b/devel/gamin/Makefile @@ -0,0 +1,56 @@ +# ports collection makefile for: gamin +# Date created: 24 March 2005 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/devel/gamin/Makefile,v 1.4 2008/01/09 19:55:24 marcus Exp $ +# + +PORTNAME= gamin +PORTVERSION= 0.1.10 +CATEGORIES?= devel +MASTER_SITES= http://www.gnome.org/~veillard/gamin/sources/ + +MAINTAINER?= gnome@FreeBSD.org +COMMENT?= A file and directory monitoring system + +USE_AUTOTOOLS= libtool:15 +USE_GMAKE= yes +USE_GNOME?= gnomehack _glib20 +USE_LDCONFIG= yes +CONFIGURE_ARGS?=--with-html-dir=${PREFIX}/share/doc \ + --without-python +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" +CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} + +CONFLICTS= fam-[0-9]* + +GNU_CONFIGURE= yes + +.if !defined(GAMIN_SLAVE) +OPTIONS= GAM_POLLER "Use gamin's poller instead of kqueue's" off +.endif + +.include <bsd.port.pre.mk> + +.if !defined(GAMIN_SLAVE) +.if defined(WITH_GAM_POLLER) +CPPFLAGS+= -DUSE_GAMIN_POLLER=1 +.endif +.endif + +post-patch: + @${REINPLACE_CMD} "s|/etc|${PREFIX}/etc|g" ${WRKSRC}/server/gam_conf.c + +.if !defined(GAMIN_SLAVE) +regression-test: build + @${ECHO_MSG} "===> Running gamin regression tests" + @(cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ + Makefile ${MAKE_ARGS} tests) + +post-install: + @${CAT} ${PKGMESSAGE} +.endif + +.include <bsd.port.post.mk> diff --git a/devel/gamin/distinfo b/devel/gamin/distinfo new file mode 100644 index 000000000..399e96288 --- /dev/null +++ b/devel/gamin/distinfo @@ -0,0 +1,3 @@ +MD5 (gamin-0.1.10.tar.gz) = b4ec549e57da470c04edd5ec2876a028 +SHA256 (gamin-0.1.10.tar.gz) = 28085f0ae8be10eab582ff186af4fb0be92cc6c62b5cc19cd09b295c7c2899a1 +SIZE (gamin-0.1.10.tar.gz) = 653392 diff --git a/devel/gamin/files/patch-libgamin_gam_api.c b/devel/gamin/files/patch-libgamin_gam_api.c new file mode 100644 index 000000000..7c46e9335 --- /dev/null +++ b/devel/gamin/files/patch-libgamin_gam_api.c @@ -0,0 +1,119 @@ +--- libgamin/gam_api.c.orig Tue Feb 7 17:49:07 2006 ++++ libgamin/gam_api.c Tue Feb 7 17:49:13 2006 +@@ -14,6 +14,7 @@ + #include <sys/socket.h> + #include <sys/un.h> + #include <sys/uio.h> ++#include <string.h> + #include "fam.h" + #include "gam_protocol.h" + #include "gam_data.h" +@@ -421,10 +422,10 @@ + { + char data[2] = { 0, 0 }; + int written; +-#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS) +- struct { ++#if defined(HAVE_CMSGCRED) && (!defined(LOCAL_CREDS) || defined(__FreeBSD__)) ++ union { + struct cmsghdr hdr; +- struct cmsgcred cred; ++ char cred[CMSG_SPACE (sizeof (struct cmsgcred))]; + } cmsg; + struct iovec iov; + struct msghdr msg; +@@ -436,16 +437,16 @@ + msg.msg_iov = &iov; + msg.msg_iovlen = 1; + +- msg.msg_control = &cmsg; +- msg.msg_controllen = sizeof (cmsg); ++ msg.msg_control = (caddr_t) &cmsg; ++ msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); + memset (&cmsg, 0, sizeof (cmsg)); +- cmsg.hdr.cmsg_len = sizeof (cmsg); ++ cmsg.hdr.cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); + cmsg.hdr.cmsg_level = SOL_SOCKET; + cmsg.hdr.cmsg_type = SCM_CREDS; + #endif + + retry: +-#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS) ++#if defined(HAVE_CMSGCRED) && (!defined(LOCAL_CREDS) || defined(__FreeBSD__)) + written = sendmsg(fd, &msg, 0); + #else + written = write(fd, &data[0], 1); +@@ -647,15 +648,16 @@ + gid_t c_gid; + + #ifdef HAVE_CMSGCRED +- struct { ++ struct cmsgcred *cred; ++ union { + struct cmsghdr hdr; +- struct cmsgcred cred; ++ char cred[CMSG_SPACE (sizeof (struct cmsgcred))]; + } cmsg; + #endif + + s_uid = getuid(); + +-#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) ++#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) && !defined(__FreeBSD__) + /* Set the socket to receive credentials on the next message */ + { + int on = 1; +@@ -676,8 +678,8 @@ + + #ifdef HAVE_CMSGCRED + memset(&cmsg, 0, sizeof(cmsg)); +- msg.msg_control = &cmsg; +- msg.msg_controllen = sizeof(cmsg); ++ msg.msg_control = (caddr_t) &cmsg; ++ msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); + #endif + + retry: +@@ -694,7 +696,7 @@ + goto failed; + } + #ifdef HAVE_CMSGCRED +- if (cmsg.hdr.cmsg_len < sizeof(cmsg) || cmsg.hdr.cmsg_type != SCM_CREDS) { ++ if (cmsg.hdr.cmsg_len < CMSG_LEN (sizeof (struct cmsgcred)) || cmsg.hdr.cmsg_type != SCM_CREDS) { + GAM_DEBUG(DEBUG_INFO, + "Message from recvmsg() was not SCM_CREDS\n"); + goto failed; +@@ -720,9 +722,10 @@ + goto failed; + } + #elif defined(HAVE_CMSGCRED) +- c_pid = cmsg.cred.cmcred_pid; +- c_uid = cmsg.cred.cmcred_euid; +- c_gid = cmsg.cred.cmcred_groups[0]; ++ cred = (struct cmsgcred *) CMSG_DATA (&cmsg); ++ c_pid = cred->cmcred_pid; ++ c_uid = cred->cmcred_euid; ++ c_gid = cred->cmcred_groups[0]; + #else /* !SO_PEERCRED && !HAVE_CMSGCRED */ + GAM_DEBUG(DEBUG_INFO, + "Socket credentials not supported on this OS\n"); +@@ -1283,14 +1286,17 @@ + + // FIXME: drop and reacquire lock while blocked? + gamin_data_lock(conn); +- if (!gamin_data_event_ready(conn)) { ++ while ((ret = gamin_data_event_ready(conn)) == 0) { + if (gamin_read_data(conn, fc->fd, 1) < 0) { + gamin_try_reconnect(conn, fc->fd); + FAMErrno = FAM_CONNECT; + return (-1); + } + } +- ret = gamin_data_read_event(conn, fe); ++ ++ if (ret > 0) ++ ret = gamin_data_read_event(conn, fe); ++ + gamin_data_unlock(conn); + + if (ret < 0) { diff --git a/devel/gamin/files/patch-python_Makefile.in b/devel/gamin/files/patch-python_Makefile.in new file mode 100644 index 000000000..24bbe73c6 --- /dev/null +++ b/devel/gamin/files/patch-python_Makefile.in @@ -0,0 +1,20 @@ +--- python/Makefile.in.orig 2008-11-26 01:42:29.000000000 -0500 ++++ python/Makefile.in 2008-11-26 01:43:26.000000000 -0500 +@@ -53,7 +53,7 @@ am__strip_dir = `echo $$p | sed -e 's|^. + am__installdirs = "$(DESTDIR)$(pythondir)" "$(DESTDIR)$(pythondir)" + pythonLTLIBRARIES_INSTALL = $(INSTALL) + LTLIBRARIES = $(python_LTLIBRARIES) +-_gamin_la_DEPENDENCIES = $(top_builddir)/libgamin/libgamin-1.la ++_gamin_la_DEPENDENCIES = -lgamin-1 + am__gamin_la_OBJECTS = gamin.lo + _gamin_la_OBJECTS = $(am__gamin_la_OBJECTS) + _gamin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ +@@ -228,7 +228,7 @@ INCLUDES = \ + + python_LTLIBRARIES = _gamin.la + _gamin_la_SOURCES = gamin.c +-_gamin_la_LIBADD = $(top_builddir)/libgamin/libgamin-1.la ++_gamin_la_LIBADD = -lgamin-1 + _gamin_la_LDFLAGS = -module -avoid-version + python_PYTHON = gamin.py + all: all-recursive diff --git a/devel/gamin/files/patch-server_gam_channel.c b/devel/gamin/files/patch-server_gam_channel.c new file mode 100644 index 000000000..7b5fb8aee --- /dev/null +++ b/devel/gamin/files/patch-server_gam_channel.c @@ -0,0 +1,127 @@ +--- server/gam_channel.c.orig Tue Aug 9 12:17:39 2005 ++++ server/gam_channel.c Fri Feb 10 01:22:46 2006 +@@ -7,6 +7,7 @@ + #include <sys/stat.h> + #include <sys/un.h> + #include <sys/uio.h> ++#include <string.h> + #include "gam_error.h" + #include "gam_connection.h" + #include "gam_channel.h" +@@ -30,10 +31,10 @@ gam_client_conn_send_cred(int fd) + { + char data[2] = { 0, 0 }; + int written; +-#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS) +- struct { ++#if defined(HAVE_CMSGCRED) && (!defined(LOCAL_CREDS) || defined(__FreeBSD__)) ++ union { + struct cmsghdr hdr; +- struct cmsgcred cred; ++ char cred[CMSG_SPACE (sizeof (struct cmsgcred))]; + } cmsg; + struct iovec iov; + struct msghdr msg; +@@ -45,16 +46,16 @@ gam_client_conn_send_cred(int fd) + msg.msg_iov = &iov; + msg.msg_iovlen = 1; + +- msg.msg_control = &cmsg; +- msg.msg_controllen = sizeof (cmsg); ++ msg.msg_control = (caddr_t) &cmsg; ++ msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); + memset (&cmsg, 0, sizeof (cmsg)); +- cmsg.hdr.cmsg_len = sizeof (cmsg); ++ cmsg.hdr.cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); + cmsg.hdr.cmsg_level = SOL_SOCKET; + cmsg.hdr.cmsg_type = SCM_CREDS; + #endif + + retry: +-#if defined(HAVE_CMSGCRED) && !defined(LOCAL_CREDS) ++#if defined(HAVE_CMSGCRED) && (!defined(LOCAL_CREDS) || defined(__FreeBSD__)) + written = sendmsg(fd, &msg, 0); + #else + written = write(fd, &data[0], 1); +@@ -95,15 +96,16 @@ gam_client_conn_check_cred(GIOChannel * + gid_t c_gid; + + #ifdef HAVE_CMSGCRED +- struct { ++ struct cmsgcred *cred; ++ union { + struct cmsghdr hdr; +- struct cmsgcred cred; ++ char cred[CMSG_SPACE (sizeof (struct cmsgcred))]; + } cmsg; + #endif + + s_uid = getuid(); + +-#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) ++#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) && !defined(__FreeBSD__) + /* Set the socket to receive credentials on the next message */ + { + int on = 1; +@@ -124,8 +126,8 @@ gam_client_conn_check_cred(GIOChannel * + + #ifdef HAVE_CMSGCRED + memset(&cmsg, 0, sizeof(cmsg)); +- msg.msg_control = &cmsg; +- msg.msg_controllen = sizeof(cmsg); ++ msg.msg_control = (caddr_t) &cmsg; ++ msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); + #endif + + retry: +@@ -142,7 +144,7 @@ gam_client_conn_check_cred(GIOChannel * + goto failed; + } + #ifdef HAVE_CMSGCRED +- if (cmsg.hdr.cmsg_len < sizeof(cmsg) || cmsg.hdr.cmsg_type != SCM_CREDS) { ++ if (cmsg.hdr.cmsg_len < CMSG_LEN (sizeof (struct cmsgcred)) || cmsg.hdr.cmsg_type != SCM_CREDS) { + GAM_DEBUG(DEBUG_INFO, + "Message from recvmsg() was not SCM_CREDS\n"); + goto failed; +@@ -168,9 +170,10 @@ gam_client_conn_check_cred(GIOChannel * + goto failed; + } + #elif defined(HAVE_CMSGCRED) +- c_pid = cmsg.cred.cmcred_pid; +- c_uid = cmsg.cred.cmcred_euid; +- c_gid = cmsg.cred.cmcred_groups[0]; ++ cred = (struct cmsgcred *) CMSG_DATA (&cmsg); ++ c_pid = cred->cmcred_pid; ++ c_uid = cred->cmcred_euid; ++ c_gid = cred->cmcred_groups[0]; + #else /* !SO_PEERCRED && !HAVE_CMSGCRED */ + GAM_DEBUG(DEBUG_INFO, + "Socket credentials not supported on this OS\n"); +@@ -620,6 +621,7 @@ gam_listen_unix_socket(const char *path) + { + int fd; + struct sockaddr_un addr; ++ struct stat st; + + fd = socket(PF_UNIX, SOCK_STREAM, 0); + if (fd < 0) { +@@ -640,8 +642,18 @@ gam_listen_unix_socket(const char *path) + * some extra protection checks. Also make sure the socket is created + * with restricted mode + */ +- if (!gam_check_secure_path(path)) { ++ if (!gam_check_secure_dir()) { ++ close(fd); + return (-1); ++ } ++ ++ if (stat(path, &st) == 0) { ++ /* bind() will fail if the socket already exists */ ++ if (unlink(path) < 0) { ++ GAM_DEBUG(DEBUG_INFO, "Failed to remove %s\n", path); ++ close(fd); ++ return (-1); ++ } + } + strncpy(&addr.sun_path[0], path, (sizeof(addr) - 4) - 1); + umask(0077); diff --git a/devel/gamin/files/patch-server_gam_fs.c b/devel/gamin/files/patch-server_gam_fs.c new file mode 100644 index 000000000..2fcc24209 --- /dev/null +++ b/devel/gamin/files/patch-server_gam_fs.c @@ -0,0 +1,161 @@ +--- server/gam_fs.c.orig 2007-07-04 09:36:49.000000000 -0400 ++++ server/gam_fs.c 2007-08-10 15:05:41.000000000 -0400 +@@ -7,6 +7,11 @@ + #include <string.h> + #include <errno.h> + #include <glib.h> ++#ifdef __FreeBSD__ ++#include <sys/param.h> ++#include <sys/ucred.h> ++#include <sys/mount.h> ++#endif + #include "gam_error.h" + #include "gam_fs.h" + +@@ -21,9 +26,13 @@ typedef struct _gam_fs_properties { + typedef struct _gam_fs { + char *path; + char *fsname; ++ guint64 flags; + } gam_fs; + + static gboolean initialized = FALSE; ++#ifdef __FreeBSD__ ++static gboolean initializing = FALSE; ++#endif + static GList *filesystems = NULL; + static GList *fs_props = NULL; + static struct stat mtab_sbuf; +@@ -110,6 +119,7 @@ gam_fs_filesystem_sort_cb (gconstpointer + return strlen(fsb->path) - strlen (fsa->path); + } + ++#ifdef __linux__ + static void + gam_fs_scan_mtab (void) + { +@@ -165,10 +175,41 @@ gam_fs_scan_mtab (void) + gam_fs_free_filesystems (); + filesystems = g_list_sort (new_filesystems, gam_fs_filesystem_sort_cb); + } ++#endif ++ ++#ifdef __FreeBSD__ ++static void ++gam_fs_getmntinfo (void) ++{ ++ struct statfs *stat; ++ GList *new_filesystems = NULL; ++ gam_fs *fs = NULL; ++ int i, n; ++ ++ n = getmntinfo(&stat, MNT_NOWAIT); ++ if (n == -1) ++ return; ++ ++ for (i = 0; i < n; i++) ++ { ++ fs = g_new0 (gam_fs, 1); ++ fs->path = g_strdup (stat[i].f_mntonname); ++ fs->fsname = g_strdup (stat[i].f_fstypename); ++ fs->flags = stat[i].f_flags; ++ ++ new_filesystems = g_list_prepend (new_filesystems, fs); ++ } ++ ++ /* Replace the old file systems list with the new one */ ++ gam_fs_free_filesystems (); ++ filesystems = g_list_sort (new_filesystems, gam_fs_filesystem_sort_cb); ++} ++#endif + + void + gam_fs_init (void) + { ++#if defined(__linux__) + if (initialized == FALSE) + { + initialized = TRUE; +@@ -181,6 +222,7 @@ gam_fs_init (void) + if (stat("/etc/mtab", &mtab_sbuf) != 0) + { + GAM_DEBUG(DEBUG_INFO, "Could not stat /etc/mtab\n"); ++ return; + } + gam_fs_scan_mtab (); + } else { +@@ -189,6 +231,7 @@ gam_fs_init (void) + if (stat("/etc/mtab", &sbuf) != 0) + { + GAM_DEBUG(DEBUG_INFO, "Could not stat /etc/mtab\n"); ++ return; + } + + /* /etc/mtab has changed */ +@@ -199,6 +242,54 @@ gam_fs_init (void) + + mtab_sbuf = sbuf; + } ++#elif defined(__FreeBSD__) ++ if (initialized == FALSE && initializing == FALSE) ++ { ++ GList *iterator = NULL; ++ GHashTable *fs_hash = NULL; ++ gam_fs *fs = NULL; ++ ++ initialized = TRUE; ++ initializing = TRUE; ++ ++ gam_fs_getmntinfo (); ++ ++ iterator = filesystems; ++ fs_hash = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); ++ ++ while (iterator) { ++ fs = iterator->data; ++ ++ if (!g_hash_table_lookup (fs_hash, fs->fsname)) { ++ if (fs->flags & MNT_LOCAL) ++ gam_fs_set (fs->fsname, GFS_MT_DEFAULT, 0); ++ else ++ gam_fs_set (fs->fsname, GFS_MT_POLL, 5); ++ ++ g_hash_table_insert (fs_hash, g_strdup (fs->fsname), GINT_TO_POINTER (1)); ++ } ++ ++ iterator = g_list_next (iterator); ++ } ++ ++ g_hash_table_destroy (fs_hash); ++ initializing = FALSE; ++ } else if (initializing == FALSE) { ++ struct stat sbuf; ++ ++ if (stat ("/etc/fstab", &sbuf) != 0) { ++ GAM_DEBUG(DEBUG_INFO, "Could not stat /etc/fstab\n"); ++ return; ++ } ++ ++ if (sbuf.st_mtime != mtab_sbuf.st_mtime) { ++ GAM_DEBUG(DEBUG_INFO, "Updating list of mounted filesystems\n"); ++ gam_fs_getmntinfo (); ++ } ++ ++ mtab_sbuf = sbuf; ++ } ++#endif + } + + gam_fs_mon_type +@@ -210,7 +301,11 @@ gam_fs_get_mon_type (const char *path) + props = gam_fs_find_fs_props (path); + + if (!props) ++#ifdef USE_GAMIN_POLLER ++ return GFS_MT_POLL; ++#else + return GFS_MT_DEFAULT; ++#endif + + return props->mon_type; + } diff --git a/devel/gamin/files/patch-server_gam_kqueue.c b/devel/gamin/files/patch-server_gam_kqueue.c new file mode 100644 index 000000000..df4437e31 --- /dev/null +++ b/devel/gamin/files/patch-server_gam_kqueue.c @@ -0,0 +1,129 @@ +--- server/gam_kqueue.c.orig 2007-07-04 09:50:41.000000000 -0400 ++++ server/gam_kqueue.c 2007-08-10 15:03:59.000000000 -0400 +@@ -10,9 +10,10 @@ + * FAM should do: we do not call g_dir_open() if the file is a + * symbolic link). + * +- * * kqueue cannot monitor files residing on anything but a UFS +- * file system. If kqueue cannot monitor a file, this backend +- * will poll it periodically. ++ * * While kqueue is no longer tied to the UFS file system, it is ++ * better to not use it for remote file systems (because for ++ * such file systems, only local changes are detected by ++ * the kernel). + * + * * Monitoring a file with kqueue prevents the file system it + * resides on from being unmounted, because kqueue can only +@@ -28,10 +29,9 @@ + * - kqueue needs to be augmented with a filename-based + * monitoring facility; + * +- * - kqueue needs to be moved out the UFS code. +- * + * Copyright (C) 2005 Joe Marcus Clarke <marcus@FreeBSD.org> +- * Copyright (C) 2005 Jean-Yves Lefort <jylefort@FreeBSD.org> ++ * Copyright (C) 2005, 2006 Jean-Yves Lefort <jylefort@FreeBSD.org> ++ * Copyright (C) 2006 Alex Dupre <ale@FreeBSD.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public +@@ -53,6 +53,9 @@ + #include <fcntl.h> + #include <unistd.h> + #include <sys/param.h> ++#ifndef USE_GAMIN_POLLER ++#include <sys/mount.h> ++#endif + #include <sys/types.h> + #include <sys/sysctl.h> + #include <sys/stat.h> +@@ -326,7 +329,7 @@ gam_kqueue_isdir (const char *pathname, + static gboolean + gam_kqueue_get_uint_sysctl (const char *name, unsigned int *value) + { +- unsigned int value_len = sizeof(*value); ++ size_t value_len = sizeof(*value); + + if (sysctlbyname(name, value, &value_len, (void *)NULL, 0) < 0) + { +@@ -509,6 +512,9 @@ static gboolean + gam_kqueue_monitor_enable_kqueue (Monitor *mon) + { + struct kevent ev[1]; ++#ifndef USE_GAMIN_POLLER ++ struct statfs sb; ++#endif + + if (open_files == max_open_files) + { +@@ -516,26 +522,36 @@ gam_kqueue_monitor_enable_kqueue (Monito + return FALSE; + } + +- mon->fd = open(mon->pathname, O_RDONLY | O_NOFOLLOW); ++ mon->fd = open(mon->pathname, O_RDONLY | O_NONBLOCK | O_NOFOLLOW); + if (mon->fd < 0) + { + GAM_DEBUG(DEBUG_INFO, "cannot open %s (%s), falling back to poll\n", mon->pathname, g_strerror(errno)); + return FALSE; + } + ++#ifndef USE_GAMIN_POLLER ++ if (fstatfs(mon->fd, &sb) == 0 && (sb.f_flags & MNT_LOCAL) == 0) ++ { ++ GAM_DEBUG(DEBUG_INFO, "%s resides on a remote file system, falling back to poll\n", mon->pathname); ++ goto poll; ++ } ++#endif ++ + EV_SET(ev, mon->fd, EVFILT_VNODE, EV_ADD | EV_ENABLE | EV_CLEAR, VN_NOTE_ALL, 0, mon); + if (kevent(kq, ev, G_N_ELEMENTS(ev), NULL, 0, NULL) < 0) + { + GAM_DEBUG(DEBUG_INFO, "cannot enable kqueue notification for %s (%s), falling back to poll\n", mon->pathname, g_strerror(errno)); +- +- close(mon->fd); +- mon->fd = -1; +- +- return FALSE; ++ goto poll; + } + + open_files++; + return TRUE; ++ ++ poll: ++ close(mon->fd); ++ mon->fd = -1; ++ ++ return FALSE; + } + + static void +@@ -840,6 +856,8 @@ gam_kqueue_sub_monitor_emit_event (SubMo + case GAMIN_EVENT_MOVED: + gam_kqueue_sub_monitor_set_missing(smon); + break; ++ default: ++ break; + } + + gam_server_emit_event(mon->pathname, isdir, event, smon->subs, 1); +@@ -981,6 +999,8 @@ gam_kqueue_file_monitor_emit_event (File + + gam_kqueue_hash_table_remove(fmon->smon->fmons, fmon); + break; ++ default: ++ break; + } + } + +@@ -1167,6 +1187,9 @@ gam_kqueue_init (void) + channel = g_io_channel_unix_new(kq); + g_io_add_watch(channel, G_IO_IN, gam_kqueue_kevent_cb, NULL); + ++#ifdef USE_GAMIN_POLLER ++ gam_poll_basic_init (); ++#endif + + gam_server_install_kernel_hooks(GAMIN_K_KQUEUE, + gam_kqueue_add_subscription, diff --git a/devel/gamin/files/patch-server_gam_node.c b/devel/gamin/files/patch-server_gam_node.c new file mode 100644 index 000000000..dbf7f638b --- /dev/null +++ b/devel/gamin/files/patch-server_gam_node.c @@ -0,0 +1,10 @@ +--- server/gam_node.c.orig Thu Feb 9 01:22:56 2006 ++++ server/gam_node.c Thu Feb 9 01:23:03 2006 +@@ -23,6 +23,7 @@ + #include "gam_event.h" + #include "gam_node.h" + #include "gam_error.h" ++#include "gam_server.h" + + /** + * Create a new node diff --git a/devel/gamin/files/patch-server_gam_poll_basic.c b/devel/gamin/files/patch-server_gam_poll_basic.c new file mode 100644 index 000000000..9a0333149 --- /dev/null +++ b/devel/gamin/files/patch-server_gam_poll_basic.c @@ -0,0 +1,11 @@ +--- server/gam_poll_basic.c.orig 2007-08-10 15:12:29.000000000 -0400 ++++ server/gam_poll_basic.c 2007-08-10 15:16:07.000000000 -0400 +@@ -345,7 +345,7 @@ gam_poll_basic_poll_file(GamNode * node) + #ifdef ST_MTIM_NSEC + GAM_DEBUG(DEBUG_INFO, "%d %d : %d %d\n", node->sbuf.st_mtim.tv_sec, node->sbuf.st_mtim.tv_nsec, sbuf.st_mtim.tv_sec, sbuf.st_mtim.tv_nsec); + #else +- GAM_DEBUG(DEBUG_INFO, "%d : %d\n", node->sbuf.st_mtime, sbuf.st_mtim.tv_nsec); ++ GAM_DEBUG(DEBUG_INFO, "%d : %d\n", node->sbuf.st_mtime, sbuf.st_mtime); + #endif /* ST_MTIM_NSEC */ + #endif /* VERBOSE_POLL */ + } diff --git a/devel/gamin/files/patch-server_gam_server.c b/devel/gamin/files/patch-server_gam_server.c new file mode 100644 index 000000000..282dc28f0 --- /dev/null +++ b/devel/gamin/files/patch-server_gam_server.c @@ -0,0 +1,20 @@ +--- server/gam_server.c.orig 2007-07-04 09:36:49.000000000 -0400 ++++ server/gam_server.c 2007-08-10 15:09:14.000000000 -0400 +@@ -32,7 +32,7 @@ + #include "gam_server.h" + #include "gam_channel.h" + #include "gam_subscription.h" +-#include "gam_poll_generic.h" ++#include "gam_poll_basic.h" + #ifdef ENABLE_INOTIFY + #include "gam_inotify.h" + #endif +@@ -438,7 +438,7 @@ gam_server_get_kernel_handler (void) + GamPollHandler + gam_server_get_poll_handler (void) + { +- return __gam_kernel_handler; ++ return __gam_poll_handler; + } + + gboolean diff --git a/devel/gamin/files/patch-tests_testing.c b/devel/gamin/files/patch-tests_testing.c new file mode 100644 index 000000000..35097790d --- /dev/null +++ b/devel/gamin/files/patch-tests_testing.c @@ -0,0 +1,27 @@ +--- tests/testing.c.orig Thu Oct 27 10:51:03 2005 ++++ tests/testing.c Tue Feb 14 17:46:01 2006 +@@ -376,11 +376,11 @@ processCommand(char *line, int no) + } + printf("chmod %s to %s\n", arg, arg2); + } else if (!strcmp(command, "chown")) { ++ struct stat sb; + if (args != 3) { + fprintf(stderr, "chown line %d: lacks path and owner\n", no); + return (-1); + } +- struct stat sb; + if (!lstat (arg, &sb)) { + ret = (S_ISLNK (sb.st_mode)) ? + lchown(arg, strtol(arg2, NULL, 10), -1) : +@@ -486,9 +486,9 @@ processCommand(char *line, int no) + return (-1); + } + /* +- * wait at most 3 secs before declaring failure ++ * wait at most 7 secs before declaring failure + */ +- while ((delay < 30) && (testState.nb_events < nb_events + count)) { ++ while ((delay < 70) && (testState.nb_events < nb_events + count)) { + debugLoop(100); + + /* printf("+"); fflush(stdout); */ diff --git a/devel/gamin/pkg-descr b/devel/gamin/pkg-descr new file mode 100644 index 000000000..7bac17f94 --- /dev/null +++ b/devel/gamin/pkg-descr @@ -0,0 +1,8 @@ +Gamin is a file and directory monitoring system defined to be a subset of the +FAM (File Alteration Monitor) system. This is a service provided by a library +which allows to detect when a file or a directory has been modified. + +Whereas the FreeBSD port of FAM polls files every few seconds, this port +includes a kqueue(2) backend for immediate notification of most alterations. + +WWW: http://www.gnome.org/~veillard/gamin/index.html diff --git a/devel/gamin/pkg-message b/devel/gamin/pkg-message new file mode 100644 index 000000000..1e1ea39bb --- /dev/null +++ b/devel/gamin/pkg-message @@ -0,0 +1,16 @@ +=============================================================================== + +Gamin will only provide realtime notification of changes for at most n files, +where n is the minimum value between (kern.maxfiles * 0.7) and +(kern.maxfilesperproc - 200). Beyond that limit, files will be polled. + +If you often open several large folders with Nautilus, you might want to +increase the kern.maxfiles tunable (you do not need to set +kern.maxfilesperproc, since it is computed at boot time from kern.maxfiles). + +For a typical desktop, add the following line to /boot/loader.conf, then +reboot the system: + + kern.maxfiles="25000" + +=============================================================================== diff --git a/devel/gamin/pkg-plist b/devel/gamin/pkg-plist new file mode 100644 index 000000000..008f29b34 --- /dev/null +++ b/devel/gamin/pkg-plist @@ -0,0 +1,12 @@ +include/fam.h +lib/libfam.a +lib/libfam.la +lib/libfam.so +lib/libfam.so.0 +lib/libgamin-1.a +lib/libgamin-1.la +lib/libgamin-1.so +lib/libgamin-1.so.1 +lib/libgamin_shared.a +libdata/pkgconfig/gamin.pc +libexec/gam_server |