There is a typo in Makefile for TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option. Fix: Patch attached with submission follows:
Maintainer of x11/xlockmore, Please note that PR ports/170805 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170805 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->jgh I'll take it.
Author: jgh Date: Tue Aug 21 05:53:51 2012 New Revision: 302846 URL: http://svn.freebsd.org/changeset/ports/302846 Log: - fix typo on TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports options introduced by r301477 PR: 170805 Submitted by: Artis.Caune@gmail.com Approved by: maintainer, marius@nuenneri.ch (implicit) Modified: head/x11/xlockmore/Makefile Modified: head/x11/xlockmore/Makefile ============================================================================== --- head/x11/xlockmore/Makefile Tue Aug 21 05:44:16 2012 (r302845) +++ head/x11/xlockmore/Makefile Tue Aug 21 05:53:51 2012 (r302846) @@ -119,19 +119,19 @@ CONFIGURE_ARGS+= --without-gtk2 CONFIGURE_ARGS+= --enable-xlock-group .endif -.if ${PORT_OPTIONS:MTIME_BOMB) +.if ${PORT_OPTIONS:MTIME_BOMB} CONFIGURE_ARGS+= --enable-bomb .else CONFIGURE_ARGS+= --disable-bomb .endif -.if ${PORT_OPTIONS:MCUSTOMIZATION) +.if ${PORT_OPTIONS:MCUSTOMIZATION} CONFIGURE_ARGS+= --enable-customization .endif CONFIGURE_ENV+= XLOCKLIBS="${KRB5LIB} ${KRB4LIB} ${MESALIB}" -.if ${PORT_OPTIONS:MDISABLE_ALLOW_ROOT) +.if ${PORT_OPTIONS:MDISABLE_ALLOW_ROOT} CONFIGURE_ARGS+= --disable-allow-root .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Commited. Thanks! I broke on previous commit, this was implicit for breakage.