svn commit: r406271 - head/print/qt5-printsupport

Raphael Kubo da Costa rakuco at FreeBSD.org
Sat Jan 16 20:13:12 UTC 2016


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 <yuri at rawbw.com>

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 <bsd.port.options.mk>
 


More information about the svn-ports-head mailing list