From owner-svn-ports-head@FreeBSD.ORG Sat Aug 24 18:30:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D331553B; Sat, 24 Aug 2013 18:30:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C07C82C9C; Sat, 24 Aug 2013 18:30:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OIUalj083689; Sat, 24 Aug 2013 18:30:36 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7OIUaYI083655; Sat, 24 Aug 2013 18:30:36 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201308241830.r7OIUaYI083655@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Aug 2013 18:30:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325305 - head/devel/gflags X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 18:30:36 -0000 Author: sunpoet Date: Sat Aug 24 18:30:36 2013 New Revision: 325305 URL: http://svnweb.freebsd.org/changeset/ports/325305 Log: - Add missing tab in USES=pathfix - Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo) Modified: head/devel/gflags/Makefile Modified: head/devel/gflags/Makefile ============================================================================== --- head/devel/gflags/Makefile Sat Aug 24 17:00:48 2013 (r325304) +++ head/devel/gflags/Makefile Sat Aug 24 18:30:36 2013 (r325305) @@ -15,8 +15,8 @@ OPTIONS_DEFINE= DOCS GNU_CONFIGURE= yes USE_AUTOTOOLS= libtool -USES= pathfix USE_LDCONFIG= yes +USES= pathfix PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README_windows.txt \ designstyle.css gflags.html @@ -28,7 +28,7 @@ post-patch: -e 's|^\(docdir = \).*|\1${DOCSDIR}|' \ -e 's|^\(pkgconfigdir = \).*|\1$$(DESTDIR)$$(prefix)/libdata/pkgconfig|' \ ${WRKSRC}/Makefile.in -.if empty(PORT_OPTIONS:MDOCS) +.if !${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} -e '/^install-data-am: / s| install-dist_docDATA||' ${WRKSRC}/Makefile.in .endif