Bug 170805 - [PATCH] x11/xlockmore: fix TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option
Summary: [PATCH] x11/xlockmore: fix TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-20 23:30 UTC by Artis Caune
Modified: 2012-08-21 07:00 UTC (History)
0 users

See Also:


Attachments
file.diff (636 bytes, patch)
2012-08-20 23:30 UTC, Artis Caune
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Artis Caune 2012-08-20 23:30:11 UTC
There is a typo in Makefile for TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option.

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-20 23:30:41 UTC
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
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-20 23:30:43 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 06:48:15 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take it.
Comment 4 dfilter service freebsd_committer freebsd_triage 2012-08-21 06:53:59 UTC
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"
Comment 5 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 06:54:48 UTC
State Changed
From-To: feedback->closed

Commited. Thanks! I broke on previous commit, this was implicit for 
breakage.