From owner-svn-ports-all@freebsd.org Sat Jan 16 20:13:12 2016 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 11A8BA853B1; Sat, 16 Jan 2016 20:13:12 +0000 (UTC) (envelope-from rakuco@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 D48EB1FB0; Sat, 16 Jan 2016 20:13:11 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0GKDA06097180; Sat, 16 Jan 2016 20:13:10 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0GKDA7m097179; Sat, 16 Jan 2016 20:13:10 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601162013.u0GKDA7m097179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 16 Jan 2016 20:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406271 - head/print/qt5-printsupport X-SVN-Group: ports-head 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.20 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: Sat, 16 Jan 2016 20:13:12 -0000 Author: rakuco Date: Sat Jan 16 20:13:10 2016 New Revision: 406271 URL: https://svnweb.freebsd.org/changeset/ports/406271 Log: Turn print/cups-client into a LIB_DEPENDency. The CUPS plugin in src/plugins/printsupport/cups actually links against libcups.so, so cups-client needs to be more than a build-time dependency. This is part of Yuri Victorovich's Qt 5.5.1 patch set (which he submitted without knowing kde@ was already working on the update). This bug fix is orthogonal to the 5.5.1 update and we had not spotted this before, so I am landing this separately. PR: 205805 Submitted by: Yuri Victorovich Modified: head/print/qt5-printsupport/Makefile Modified: head/print/qt5-printsupport/Makefile ============================================================================== --- head/print/qt5-printsupport/Makefile Sat Jan 16 19:25:48 2016 (r406270) +++ head/print/qt5-printsupport/Makefile Sat Jan 16 20:13:10 2016 (r406271) @@ -2,6 +2,7 @@ PORTNAME= printsupport DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= print PKGNAMEPREFIX= qt5- @@ -20,9 +21,9 @@ OPTIONS_DEFINE= CUPS OPTIONS_DEFAULT=CUPS OPTIONS_SUB= yes -CUPS_BUILD_DEPENDS= ${LOCALBASE}/include/cups/cups.h:${PORTSDIR}/print/cups-client CUPS_CONFIGURE_ON= -cups CUPS_CONFIGURE_OFF= -no-cups +CUPS_LIB_DEPENDS= libcups.so:${PORTSDIR}/print/cups-client .include