From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 28 17:50:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4174D106566C for ; Tue, 28 Aug 2012 17:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF8278FC1A for ; Tue, 28 Aug 2012 17:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7SHo1vj012958 for ; Tue, 28 Aug 2012 17:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7SHo1DY012957; Tue, 28 Aug 2012 17:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 28 Aug 2012 17:50:01 GMT Resent-Message-Id: <201208281750.q7SHo1DY012957@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Mikhail T." Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 589021065673 for ; Tue, 28 Aug 2012 17:49:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 449F78FC0C for ; Tue, 28 Aug 2012 17:49:52 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q7SHnq0a060354 for ; Tue, 28 Aug 2012 17:49:52 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q7SHnq9v060353; Tue, 28 Aug 2012 17:49:52 GMT (envelope-from nobody) Message-Id: <201208281749.q7SHnq9v060353@red.freebsd.org> Date: Tue, 28 Aug 2012 17:49:52 GMT From: "Mikhail T." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/171146: [patch] emulators/wine: fix GNUTLS option typo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Aug 2012 17:50:02 -0000 >Number: 171146 >Category: ports >Synopsis: [patch] emulators/wine: fix GNUTLS option typo >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: Tue Aug 28 17:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mikhail T. >Release: >Organization: >Environment: >Description: Option is named GNUTLS. but later in the Makefile we have: if ${PORT_OPTIONS:MGNU_TLS} resulting expression to be always false, so gnutls is never installed regardless of option value. >How-To-Repeat: just run make config, check gnutls on, try to install wine and make sure that gnutls is not installed >Fix: Trivial: Index: Makefile =================================================================== --- Makefile (revision 303152) +++ Makefile (working copy) @@ -8,6 +8,7 @@ PORTNAME= wine DISTVERSION= 1.4.1 PORTEPOCH= 1 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ http://ibiblio.org/pub/linux/system/emulators/wine/ @@ -85,7 +86,7 @@ RUN_DEPENDS+= dosbox:${PORTSDIR}/emulators/dosbox .endif -.if ${PORT_OPTIONS:MGNU_TLS} +.if ${PORT_OPTIONS:MGNUTLS} CONFIGURE_ARGS+= --with-gnutls LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls .else >Release-Note: >Audit-Trail: >Unformatted: