Date: Sun, 12 Apr 2020 16:12:07 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r531529 - branches/2020Q2/editors/vim Message-ID: <202004121612.03CGC77g078230@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Sun Apr 12 16:12:07 2020 New Revision: 531529 URL: https://svnweb.freebsd.org/changeset/ports/531529 Log: MFH: r531528 Approved by: portmgr (with hat) vim: Fix environment contamination from libcanberra Vim will link against libcanberra if it's present, leading to an undeclared link and breakage risk if canberra is removed. It only really makes sense for it to do this during a gnome build, so explicitly enable it there and disable it elsewhere. PR: 245460 Reported by: Andy Mender Modified: branches/2020Q2/editors/vim/Makefile Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/editors/vim/Makefile ============================================================================== --- branches/2020Q2/editors/vim/Makefile Sun Apr 12 16:10:58 2020 (r531528) +++ branches/2020Q2/editors/vim/Makefile Sun Apr 12 16:12:07 2020 (r531529) @@ -3,6 +3,7 @@ PORTNAME= vim PORTVERSION= 8.2.0491 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= editors @@ -95,6 +96,8 @@ CONSOLE_CONFIGURE_OFF= --enable-xim --enable-fontset CONSOLE_PLIST_SUB= GUI="@comment " DESKTOP="@comment " CONSOLE_VARS= GUI=no +GNOME_CONFIGURE_ENABLE= canberra +GNOME_LIB_DEPENDS= libcanberra.so:audio/libcanberra GNOME_PLIST_SUB= GUI="" DESKTOP="" GNOME_IMPLIES= NLS GNOME_USE= GNOME=gdkpixbuf2,libgnomeui XORG=ice,sm,xorgproto,x11,xpm,xt
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004121612.03CGC77g078230>