Date: Mon, 20 Aug 2012 22:20:29 GMT From: Artis Caune <Artis.Caune@gmail.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/170805: [PATCH] x11/xlockmore: fix TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option Message-ID: <201208202220.q7KMKTbC019829@red.freebsd.org> Resent-Message-ID: <201208202230.q7KMUB6l044209@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 170805 >Category: ports >Synopsis: [PATCH] x11/xlockmore: fix TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Aug 20 22:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Artis Caune >Release: stable/9 >Organization: >Environment: FreeBSD freebsd 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE r239148: Fri Aug 10 00:00:00 UTC 2012 root@freebsd:/usr/obj/usr/src/sys/GENERIC amd64 >Description: There is a typo in Makefile for TIME_BOMB, CUSTOMIZATION, DISABLE_ALLOW_ROOT ports option. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2012-08-21 10:17:35.190179134 +1200 +++ Makefile 2012-08-21 10:18:31.980179345 +1200 @@ -119,19 +119,19 @@ 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 >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208202220.q7KMKTbC019829>