From owner-svn-ports-all@freebsd.org Wed Sep 27 18:01:25 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BCCEE0A1AF; Wed, 27 Sep 2017 18:01:25 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC222807E6; Wed, 27 Sep 2017 18:01:24 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8RI1N5t076673; Wed, 27 Sep 2017 18:01:23 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8RI1NvV076671; Wed, 27 Sep 2017 18:01:23 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201709271801.v8RI1NvV076671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Wed, 27 Sep 2017 18:01:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450773 - in head/net-im: finch libpurple X-SVN-Group: ports-head X-SVN-Commit-Author: marcus X-SVN-Commit-Paths: in head/net-im: finch libpurple X-SVN-Commit-Revision: 450773 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2017 18:01:25 -0000 Author: marcus Date: Wed Sep 27 18:01:23 2017 New Revision: 450773 URL: https://svnweb.freebsd.org/changeset/ports/450773 Log: Make sure we do not include gconf2 when we're not using the GTK+ UI. PR: 208733 Submitted by: cyberleo@cyberleo.net Modified: head/net-im/finch/Makefile head/net-im/libpurple/Makefile Modified: head/net-im/finch/Makefile ============================================================================== --- head/net-im/finch/Makefile Wed Sep 27 17:50:51 2017 (r450772) +++ head/net-im/finch/Makefile Wed Sep 27 18:01:23 2017 (r450773) @@ -3,7 +3,7 @@ # $MCom: ports-stable/net-im/gaim-consoleui-devel/Makefile,v 1.2 2006/10/29 18:55:28 marcus Exp $ PORTNAME= finch -PORTREVISION= 1 +PORTREVISION= 2 MAINTAINER= marcus@FreeBSD.org COMMENT= Finch multi-protocol messaging client (Console UI) Modified: head/net-im/libpurple/Makefile ============================================================================== --- head/net-im/libpurple/Makefile Wed Sep 27 17:50:51 2017 (r450772) +++ head/net-im/libpurple/Makefile Wed Sep 27 18:01:23 2017 (r450773) @@ -121,7 +121,7 @@ PLIST_SUB+= PERL:="@comment not installed: " \ PERLMAN:="@comment not installed: " .endif -.if !defined(PIDGIN_SLAVE) +.if defined(WITH_GTKUI) && !defined(PIDGIN_SLAVE) USE_GNOME+= gconf2 GCONF_SCHEMAS= purple.schemas .endif