Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2019 06:59:45 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493411 - head/graphics/xpdf4
Message-ID:  <201902200659.x1K6xjRB010647@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902200659.x1K6xjRB010647>