From owner-svn-ports-head@FreeBSD.ORG Thu Jul 24 07:32:57 2014 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 ESMTPS id B54CA502; Thu, 24 Jul 2014 07:32:57 +0000 (UTC) Received: from mail-yk0-x22c.google.com (mail-yk0-x22c.google.com [IPv6:2607:f8b0:4002:c07::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5BCC42ECA; Thu, 24 Jul 2014 07:32:57 +0000 (UTC) Received: by mail-yk0-f172.google.com with SMTP id 10so1540247ykt.31 for ; Thu, 24 Jul 2014 00:32:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=yLaoru8glMwRjJf79Lea2I3G1z21Oh7X2CzObY0Ty1w=; b=O/N7/pPdsZg6e0CfKDT73MfC6AB6JrM3V+jKSTWjcUaK0jAXjkOGOsHNgRsD93YeLL ltwabFZWUSmaI3H1pP5MKzcIjv7G1CcFkc//H8wChp9+A710uANVSSHR4rN2RjW9gj1E RPPNKvJsqXFG4Ct6CVl+rdV3gAr3YlaMdTLXRxKsEv3bh+3nj/RgVc0e0vIbfmef3Ww1 jVwnoRpQYPkAOj1A4Gp/xPq5YmLy4p+6JjLRH6ZpHoD/1LhNdnEF2Kx1E4dGZC1u54eZ 7OzvucUDim/8ijiADxisvoN9EYm3Ebw15l+oFwNfCpvnjsNqk062EVS2Y/uFw4omKZ0+ 0IhQ== MIME-Version: 1.0 X-Received: by 10.236.231.178 with SMTP id l48mr10057297yhq.143.1406187176540; Thu, 24 Jul 2014 00:32:56 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.164.197 with HTTP; Thu, 24 Jul 2014 00:32:56 -0700 (PDT) In-Reply-To: <53D0ABD1.8080402@rainbow-runner.nl> References: <201407240554.s6O5soQ5029516@svn.freebsd.org> <53D0ABD1.8080402@rainbow-runner.nl> Date: Thu, 24 Jul 2014 09:32:56 +0200 X-Google-Sender-Auth: BJHck9-B3402Iy1jwrmx_eHf4Ng Message-ID: Subject: Re: svn commit: r362766 - head/graphics/ImageMagick From: Antoine Brodin To: Koop Mast Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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: Thu, 24 Jul 2014 07:32:57 -0000 On Thu, Jul 24, 2014 at 8:46 AM, Koop Mast wrote: > On 24-7-2014 7:54, Antoine Brodin wrote: >> >> Author: antoine >> Date: Thu Jul 24 05:54:50 2014 >> New Revision: 362766 >> URL: http://svnweb.freebsd.org/changeset/ports/362766 >> QAT: https://qat.redports.org/buildarchive/r362766/ >> >> Log: >> Fix another (harmless) bug in OPTIONS conversion >> >> Modified: >> head/graphics/ImageMagick/Makefile >> >> Modified: head/graphics/ImageMagick/Makefile >> >> ============================================================================== >> --- head/graphics/ImageMagick/Makefile Thu Jul 24 05:50:19 2014 >> (r362765) >> +++ head/graphics/ImageMagick/Makefile Thu Jul 24 05:54:50 2014 >> (r362766) >> @@ -388,7 +388,7 @@ pre-configure: >> @${ECHO_CMD} >> '###################################################################' >> .endif >> -.if ${PORT_OPTIONS:MSVG} && ${PORT_OPTIONS:NX11} >> +.if ${PORT_OPTIONS:MSVG} && ! ${PORT_OPTIONS:NX11} >> @${ECHO_CMD} NOTICE: SVG format support disabled, requires X11 >> .endif >> > > Actually I used N here instead of M, so it should work. Thanks for fixing > the other one though. Oops I misread. So there is another bug, PORT_OPTIONS:NX11 will provide all other options Antoine