From owner-svn-ports-all@FreeBSD.ORG Fri Dec 28 21:21:19 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 971A574C; Fri, 28 Dec 2012 21:21:19 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7C1E48FC08; Fri, 28 Dec 2012 21:21:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBSLLJuM005876; Fri, 28 Dec 2012 21:21:19 GMT (envelope-from mezz@svn.freebsd.org) Received: (from mezz@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBSLLJUg005875; Fri, 28 Dec 2012 21:21:19 GMT (envelope-from mezz@svn.freebsd.org) Message-Id: <201212282121.qBSLLJUg005875@svn.freebsd.org> From: Jeremy Messenger Date: Fri, 28 Dec 2012 21:21:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309588 - head/devel/gnome-vfs 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.14 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: Fri, 28 Dec 2012 21:21:19 -0000 Author: mezz Date: Fri Dec 28 21:21:18 2012 New Revision: 309588 URL: http://svnweb.freebsd.org/changeset/ports/309588 Log: Always disable inotify no matter what if even you have devel/libinotify installed. We are using our own, kevent. PR: ports/173884 Reported by: Petr Bohac Modified: head/devel/gnome-vfs/Makefile (contents, props changed) Modified: head/devel/gnome-vfs/Makefile ============================================================================== --- head/devel/gnome-vfs/Makefile Fri Dec 28 21:18:10 2012 (r309587) +++ head/devel/gnome-vfs/Makefile Fri Dec 28 21:21:18 2012 (r309588) @@ -88,8 +88,9 @@ post-patch: s|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/libgnomevfs/xdgmime.c \ ${WRKSRC}/libgnomevfs/gnome-vfs-hal-mounts.c - @${REINPLACE_CMD} -e 's|-lacl||g' \ - ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-lacl||g ; \ + s|inotify_support=yes|inotify_support=no|g' \ + ${WRKSRC}/configure @${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ < ${MASTERDIR}/pkg-install.in > ${PKGINSTALL} @${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \