From owner-freebsd-ports@FreeBSD.ORG Sat Aug 4 22:12:33 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id F35AA1065670; Sat, 4 Aug 2012 22:12:32 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id C944514DF64; Sat, 4 Aug 2012 22:12:32 +0000 (UTC) Message-ID: <501D9E50.6050302@FreeBSD.org> Date: Sat, 04 Aug 2012 15:12:32 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:14.0) Gecko/20120728 Thunderbird/14.0 MIME-Version: 1.0 To: David Demelier References: <501D8DF4.4020801@gmail.com> <501D9565.1090704@FreeBSD.org> <501D9A8D.1090804@gmail.com> In-Reply-To: <501D9A8D.1090804@gmail.com> X-Enigmail-Version: 1.4.2 OpenPGP: id=1A1ABC84 Content-Type: multipart/mixed; boundary="------------040904010707070308050303" Cc: freebsd-ports@freebsd.org Subject: Re: Can't get gvim working 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: Sat, 04 Aug 2012 22:12:33 -0000 This is a multi-part message in MIME format. --------------040904010707070308050303 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 08/04/2012 14:56, David Demelier wrote: > I finally found the problem: at the configure target see, > > checking for GTK - version >= 2.2.0... Package glproto was not found in the > pkg-config search path. > Perhaps you should add the directory containing `glproto.pc' > to the PKG_CONFIG_PATH environment variable > No package 'glproto' found > no > > x11/glproto was not installed, I think we could add a dependency on it. Seems to apply only to the gnome define, as I can build and run gvim without it. David, what do you think of the attached? Doug -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) --------------040904010707070308050303 Content-Type: text/plain; charset=UTF-8; name="vim.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="vim.diff" Index: Makefile =================================================================== --- Makefile (revision 302028) +++ Makefile (working copy) @@ -156,7 +156,7 @@ PKGNAMESUFFIX= -gnome2 MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=gnome2" ${I18N} MAKE_ARGS+= X_LIBS="$(X_LIBS) -lXt" -USE_XORG+= xt +USE_XORG+= glproto xt . elif defined(WITH_MOTIF) USE_MOTIF= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" MOTIFHOME=${LOCALBASE} ${I18N} --------------040904010707070308050303--