From owner-svn-ports-all@freebsd.org Mon Dec 14 14:32:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD432A47837; Mon, 14 Dec 2015 14:32:29 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AEB7D1F1B; Mon, 14 Dec 2015 14:32:29 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBEEWSmI015369; Mon, 14 Dec 2015 14:32:28 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBEEWSmu015368; Mon, 14 Dec 2015 14:32:28 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201512141432.tBEEWSmu015368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 14 Dec 2015 14:32:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403725 - head/sysutils/watchman X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Dec 2015 14:32:30 -0000 Author: mat Date: Mon Dec 14 14:32:28 2015 New Revision: 403725 URL: https://svnweb.freebsd.org/changeset/ports/403725 Log: Fix build as a user, and while there, fix the more /var/run/watchman should have. Sponsored by: Absolight Modified: head/sysutils/watchman/Makefile Modified: head/sysutils/watchman/Makefile ============================================================================== --- head/sysutils/watchman/Makefile Mon Dec 14 14:22:08 2015 (r403724) +++ head/sysutils/watchman/Makefile Mon Dec 14 14:32:28 2015 (r403725) @@ -3,6 +3,7 @@ PORTNAME= watchman PORTVERSION= 4.2.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -25,7 +26,7 @@ CONFIGURE_ARGS+= --disable-silent-rules .endif PLIST_FILES= bin/${PORTNAME} \ - "@dir(,,777) /var/run/${PORTNAME}" + "@dir(,,2777) /var/run/${PORTNAME}" PORTDOCS= README.markdown OPTIONS_DEFINE= BACKTRACE PCRE @@ -46,7 +47,7 @@ post-patch: -e '\,/etc, { s//$$sysconfdir/; /=/s/^/eval /; }' \ ${WRKSRC}/configure.ac @${REINPLACE_CMD} -e '/^docdir = /d' \ - -e '/not-empty/d' \ + -e '/not-empty/d; /chmod g+s/d;' \ ${WRKSRC}/Makefile.am .include