From owner-svn-ports-head@FreeBSD.ORG Thu Feb 20 15:05:45 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 78520AE9 for ; Thu, 20 Feb 2014 15:05:45 +0000 (UTC) Received: from mail-la0-f50.google.com (mail-la0-f50.google.com [209.85.215.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EBC341B10 for ; Thu, 20 Feb 2014 15:05:44 +0000 (UTC) Received: by mail-la0-f50.google.com with SMTP id ec20so1383083lab.23 for ; Thu, 20 Feb 2014 07:05:37 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=mIirYPNC+m8jpQul5wqwXsD0F07imm7p41mnc5KLw1U=; b=RHpowB0zt7eCbVmMWMzIB/C94xu0xeICjt4uNWag0bz/Wq3cCajMzgYD4/tftNrosd TQBqfNTsjDHb5CCQg0GdjUbTbTEG+8uCurBdpQ0BMOEsjYQ1W4+FVj9OSXrVDZcu3br1 FxlnVxtsa7yM1FiNBeZPUvlm6J9+465kd1Gw4eS6pzT41yzoxnz6P8lwLDAYmZq+k0Rn B8AmFnvjJ9puG5763ycClWUIsgUK72krVLI8J0bTT0jo49Q4zWs3mzol0ZYFemsLWWGq fYnFtRc+FyDvi1Jk1wS+kqzrS44mJeCOTKAkPrRAfPmXHyKjPoQmCZRhZe97/REAz2lj 5+yQ== X-Gm-Message-State: ALoCoQnX2mY7MO8GgjEs/jdhOqplPiA38a+5kpVibVd0Bia+CZpp9lMR0CU0RGC9QmPdTNLyy9qm X-Received: by 10.112.55.65 with SMTP id q1mr1362671lbp.11.1392908737053; Thu, 20 Feb 2014 07:05:37 -0800 (PST) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.112.2.200 with HTTP; Thu, 20 Feb 2014 07:05:16 -0800 (PST) In-Reply-To: <530614EB.9070302@FreeBSD.org> References: <201402201420.s1KEKbVw086176@svn.freebsd.org> <530614EB.9070302@FreeBSD.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Feb 2014 23:05:16 +0800 X-Google-Sender-Auth: xjLvLcwgDvrzmx6XoFQ1C1z3Tt0 Message-ID: Subject: Re: svn commit: r345230 - head/editors/vim To: Bryan Drewery Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Feb 2014 15:05:45 -0000 On Thu, Feb 20, 2014 at 10:44 PM, Bryan Drewery wrote: > On 2/20/2014 8:20 AM, Sunpoet Po-Chuan Hsieh wrote: > > Author: sunpoet > > Date: Thu Feb 20 14:20:36 2014 > > New Revision: 345230 > > URL: http://svnweb.freebsd.org/changeset/ports/345230 > > QAT: https://qat.redports.org/buildarchive/r345230/ > > > > Log: > > - Fix type of option group: it was RADIO but it should be SINGLE now > (with the addition of CONSOLE) > > > > Modified: > > head/editors/vim/Makefile > > > > Modified: head/editors/vim/Makefile > > > ============================================================================== > > --- head/editors/vim/Makefile Thu Feb 20 14:17:54 2014 (r345229) > > +++ head/editors/vim/Makefile Thu Feb 20 14:20:36 2014 (r345230) > > @@ -19,8 +19,8 @@ MAINTAINER?= sunpoet@FreeBSD.org > > COMMENT?= Vi "workalike", with many additional features > > > > OPTIONS_DEFINE= CSCOPE EXUBERANT_CTAGS LUA NLS PERL PYTHON RUBY > TCL XTERM_SAVE > > -OPTIONS_RADIO= UI > > -OPTIONS_RADIO_UI= ATHENA CONSOLE GNOME GTK2 MOTIF X11 > > +OPTIONS_SINGLE= UI > > +OPTIONS_SINGLE_UI= ATHENA CONSOLE GNOME GTK2 MOTIF X11 > > OPTIONS_SUB= yes > > ATHENA_DESC= Athena GUI toolkit > > CSCOPE_DESC= cscope support > > > > Just to be sure. (Assuming no default) You *MUST* select one to have vim > build or can it build without picking one? > > -- > Regards, > Bryan Drewery > > The UI group was RADIO, including ATHENA, GNOME, GTK2 (default on), MOTIF and X11. I added CONSOLE option to this group for users who do not need GUI support. Thus it should be SINGLE now. :) Regards, sunpoet