From owner-freebsd-ports@FreeBSD.ORG Thu Sep 13 12:27:19 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2EC716A419 for ; Thu, 13 Sep 2007 12:27:19 +0000 (UTC) (envelope-from Gergely_Santa@tempest.sk) Received: from igw1.tempest.sk (proxy.dgrp.sk [195.28.127.2]) by mx1.freebsd.org (Postfix) with ESMTP id B37AA13C494 for ; Thu, 13 Sep 2007 12:27:19 +0000 (UTC) (envelope-from Gergely_Santa@tempest.sk) Received: from localhost (localhost.localdomain [127.0.0.1]) by igw1.tempest.sk (Postfix) with ESMTP id 6BB5E1014B for ; Thu, 13 Sep 2007 14:01:15 +0200 (CEST) X-Virus-Scanned: amavisd-new at tempest.sk Received: from igw1.tempest.sk ([127.0.0.1]) by localhost (igw1.tempest.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z7n+mMCEtCPD for ; Thu, 13 Sep 2007 14:01:13 +0200 (CEST) Received: from mail.tempest.sk (unknown [195.28.100.45]) by igw1.tempest.sk (Postfix) with ESMTP for ; Thu, 13 Sep 2007 14:01:13 +0200 (CEST) Received: from ed.tempest.sk ([195.28.100.82]) by mail.tempest.sk (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007)) with ESMTPSA id <0JOB00NZU2Q03H70@mail.tempest.sk> for freebsd-ports@freebsd.org; Thu, 13 Sep 2007 14:01:13 +0200 (CEST) Date: Thu, 13 Sep 2007 14:01:22 +0200 From: =?ISO-8859-1?Q?Gergely_S=E1nta?= To: freebsd-ports@freebsd.org Message-id: <46E92692.7020202@tempest.sk> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT User-Agent: Thunderbird 2.0.0.6 (X11/20070816) Subject: configure editors/vim X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2007 12:27:20 -0000 Hi! I'm a developer using gvim with it's tagging through exctags (somehow ctags never worked for me). As vim port have no configuration options, it can't be configured easyly through 'make config'. I'm too lazy for digging Makefile for options every time I compile new version of vim, I added configuration options to Makefile. I'm new to FreeBSD, also to it's Ports, so maybe I don't see the reasons, these options aren't in the Makefile, but maybe they should be there. Anyway, I attach my change, maybe it will be acceptable to have it's way to ports. And if not, maybe it will help for someone else too :) EdE [root@ed /usr/ports/editors/vim]# diff -u Makefile.orig Makefile --- Makefile.orig Thu Sep 13 13:52:20 2007 +++ Makefile Thu Sep 13 13:52:27 2007 @@ -29,6 +29,17 @@ SLAVEDIRS= editors/vim-lite +OPTIONS= PERL "Enable Perl interpreter" off \ + PYTHON "Enable Python interpreter" off \ + RUBY "Enable Ruby interpreter" off \ + CSCOPE "Enable cscope" off \ + EXUBERANT_CTAGS "Use exctags instead of ctags" off \ + ATHENA "Athena GUI" off \ + GTK2 "GTK2 GUI" off \ + GNOME "Gnome1 GUI" off \ + MOTIF "Motif GUI" off \ + XTERM_SAVE "" off + .if defined(PACKAGE_BUILDING) && !defined(LITE) #WITH_TCL= yes WITH_PERL= yes