diff options
author | mandree <mandree@FreeBSD.org> | 2014-12-24 07:04:34 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2014-12-24 07:04:34 +0800 |
commit | 577f0c554b943a7b6dfd102ec21cd70f372bf823 (patch) | |
tree | d52e3f1fe1a63e3a1fd0d175da8fd9095a2de8b9 /dns | |
parent | d1fddbdbc2c94e6a1c62afb02354f5b1f3a32437 (diff) | |
download | freebsd-ports-gnome-577f0c554b943a7b6dfd102ec21cd70f372bf823.tar.gz freebsd-ports-gnome-577f0c554b943a7b6dfd102ec21cd70f372bf823.tar.zst freebsd-ports-gnome-577f0c554b943a7b6dfd102ec21cd70f372bf823.zip |
Package 2.73test2, with one additional patch to make it build
(also reported upstream).
CHANGELOG at:
<http://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=blob_plain;f=CHANGELOG;hb=fbc5205702c7f6f431d9f1043c553d7fb62ddfdb>
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnsmasq-devel/Makefile | 7 | ||||
-rw-r--r-- | dns/dnsmasq-devel/distinfo | 4 | ||||
-rw-r--r-- | dns/dnsmasq-devel/files/patch-src_inotify.c | 13 |
3 files changed, 19 insertions, 5 deletions
diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index 035989726eda..0a7038b981e4 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -2,9 +2,10 @@ # $FreeBSD$ PORTNAME= dnsmasq -DISTVERSION= 2.72rc2 +PORTVERSION= 2.73.0t2 +DISTVERSION= 2.73test2 CATEGORIES= dns ipv6 -MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/release-candidates/ +MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/test-releases/ PKGNAMESUFFIX= -devel MAINTAINER= mandree@FreeBSD.org @@ -12,7 +13,7 @@ COMMENT= Lightweight DNS forwarder, DHCP, and TFTP server LICENSE= GPLv2 -IGNORE= build stable version instead, it is newer than this release candidate +#IGNORE= build stable version instead, it is newer than this release candidate CONFLICTS_INSTALL=dnsmasq-2* PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html diff --git a/dns/dnsmasq-devel/distinfo b/dns/dnsmasq-devel/distinfo index 968d366f763d..a6253d5f74e8 100644 --- a/dns/dnsmasq-devel/distinfo +++ b/dns/dnsmasq-devel/distinfo @@ -1,2 +1,2 @@ -SHA256 (dnsmasq-2.72rc2.tar.xz) = 23d464dec8b8d16f3a2fe86b99fa71908a8347ad9e426212b5bb020c048bddc5 -SIZE (dnsmasq-2.72rc2.tar.xz) = 469732 +SHA256 (dnsmasq-2.73test2.tar.xz) = 12479e475aab7a33764aba526b7554365400606026f1c9aa0784dfb4573f38b2 +SIZE (dnsmasq-2.73test2.tar.xz) = 472184 diff --git a/dns/dnsmasq-devel/files/patch-src_inotify.c b/dns/dnsmasq-devel/files/patch-src_inotify.c new file mode 100644 index 000000000000..f3f8df41b4d2 --- /dev/null +++ b/dns/dnsmasq-devel/files/patch-src_inotify.c @@ -0,0 +1,13 @@ +--- src/inotify.c.orig 2014-12-23 15:46:08 UTC ++++ src/inotify.c +@@ -15,9 +15,9 @@ + */ + + #include "dnsmasq.h" +-#include <sys/inotify.h> + + #ifdef HAVE_LINUX_NETWORK ++#include <sys/inotify.h> + + /* the strategy is to set a inotify on the directories containing + resolv files, for any files in the directory which are close-write |