svn commit: r493411 - head/graphics/xpdf4

Cy Schubert cy at FreeBSD.org
Wed Feb 20 06:59:47 UTC 2019


Author: cy
Date: Wed Feb 20 06:59:45 2019
New Revision: 493411
URL: https://svnweb.freebsd.org/changeset/ports/493411

Log:
  Properly specify USE_QT. This has been broken since this port was
  created.
  
  While here pet portlint.
  
  Reported by:	koobs@, tobik@
  Point hat to:	cy@

Modified:
  head/graphics/xpdf4/Makefile

Modified: head/graphics/xpdf4/Makefile
==============================================================================
--- head/graphics/xpdf4/Makefile	Wed Feb 20 06:51:49 2019	(r493410)
+++ head/graphics/xpdf4/Makefile	Wed Feb 20 06:59:45 2019	(r493411)
@@ -7,9 +7,6 @@ CATEGORIES=	graphics print
 MASTER_SITES=	https://xpdfreader-dl.s3.amazonaws.com/
 .if !defined(MASTERDIR)
 PKGNAMESUFFIX=	4
-CONFLICTS_INSTALL=	xpdf3-* xpdf-*
-.else
-CONFLICTS_INSTALL=	xpdf3-*	xpdf4-*
 .endif
 
 MAINTAINER=	cy at FreeBSD.org
@@ -17,17 +14,21 @@ COMMENT=	Display PDF files and convert them to other f
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	libfreetype.so:print/freetype2 \
-		libpng.so:graphics/png
-
 CONFLICTS_INSTALL=	xpdf
+.if !defined(MASTERDIR)
+CONFLICTS_INSTALL+=	xpdf3-* xpdf-*
+.else
+CONFLICTS_INSTALL+=	xpdf3-*	xpdf4-*
+.endif
 
-MANPREFIX=	${PREFIX}/share/xpdf
-SUB_FILES=	xpdf-man.conf
-
 USES=		compiler:c++11-lang cmake localbase:ldflags \
 		desktop-file-utils qt:5
-USE_QT=		buildtools_build,concurrent,core,gui,network,printsupport,qmake_build,svg,widgets
+LIB_DEPENDS=	libfreetype.so:print/freetype2 \
+		libpng.so:graphics/png
+MANPREFIX=	${PREFIX}/share/xpdf
+SUB_FILES=	xpdf-man.conf
+USE_QT=		buildtools_build concurrent core gui network printsupport \
+		qmake_build svg widgets
 CMAKE_ARGS+=	-DOPI_SUPPORT:BOOL=ON -DCMAKE_DISABLE_FIND_PACKAGE_Qt4:BOOL=ON \
 		-DUSE_LCMS:BOOL=OFF -DSYSTEM_XPDFRC=${PREFIX}/etc/xpdfrc \
 		-DCMAKE_INSTALL_PREFIX=${PREFIX} \


More information about the svn-ports-head mailing list