svn commit: r334853 - head/print/qpdfview

Max Brazhnikov makc at FreeBSD.org
Mon Nov 25 14:38:48 UTC 2013


Author: makc
Date: Mon Nov 25 14:38:47 2013
New Revision: 334853
URL: http://svnweb.freebsd.org/changeset/ports/334853

Log:
  - Convert to USES=qmake
  - Use options helpers
  - Add stage support
  - Update port comment/description
  - Fix PDF option, add CUPS option
  
  Approved  by:	vg (maintainer)

Modified:
  head/print/qpdfview/Makefile
  head/print/qpdfview/pkg-descr
  head/print/qpdfview/pkg-plist

Modified: head/print/qpdfview/Makefile
==============================================================================
--- head/print/qpdfview/Makefile	Mon Nov 25 14:21:29 2013	(r334852)
+++ head/print/qpdfview/Makefile	Mon Nov 25 14:38:47 2013	(r334853)
@@ -7,59 +7,40 @@ CATEGORIES=	print
 MASTER_SITES=	https://launchpadlibrarian.net/140746246/
 
 MAINTAINER=	vg at FreeBSD.org
-COMMENT=	Tabbed PDF viewer using the poppler library
+COMMENT=	Tabbed DjVu/PDF/PS document viewer
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \
-		cups:${PORTSDIR}/print/cups-client
-
-USES=		pkgconfig
-USE_QT4=	corelib dbus gui imageformats linguist_build moc_build \
-		qmake_build rcc_build sql sql-sqlite3_run svg xml
-QMAKEFLAGS+=	QMAKE_CFLAGS_RELEASE="" QMAKE_CXXFLAGS_RELEASE=""
+USES=		desktop-file-utils pkgconfig qmake
+USE_QT4=	corelib dbus gui imageformats_run linguist_build moc_build \
+		rcc_build sql sql-sqlite3_run svg xml
+QMAKE_ARGS+=	QMAKE_CFLAGS_RELEASE="" QMAKE_CXXFLAGS_RELEASE=""
+QMAKE_SOURCE_PATH=	${PORTNAME}.pro
 
 DATADIR=	${PREFIX}/share/${PORTNAME}
 
-MAN1=		${PORTNAME}.1
+OPTIONS_DEFINE=	CUPS
+OPTIONS_MULTI=	BACKEND
+OPTIONS_MULTI_BACKEND=	DJVU PDF PS
+BACKEND_DESC=	Documents support
+OPTIONS_DEFAULT=	CUPS PDF
+OPTIONS_SUB=	yes
+
+CUPS_QMAKE_OFF=	"CONFIG+=without_cups"
+CUPS_LIB_DEPENDS=	libcups.so:${PORTSDIR}/print/cups-client
+
+DJVU_LIB_DEPENDS=	libdjvulibre.so:${PORTSDIR}/graphics/djvulibre
+DJVU_QMAKE_OFF=	"CONFIG+=without_djvu"
 
-OPTIONS_DEFINE=	DJVU PDF PS
-DJVU_DESC=	DjVu support
-PS_DESC=	PostScript support
-OPTIONS_DEFAULT=	PDF
-
-NO_STAGE=	yes
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MDJVU}
-PLIST_SUB+=	DJVU=""
-LIB_DEPENDS+=	djvulibre:${PORTSDIR}/graphics/djvulibre
-.else
-QMAKEFLAGS+=	"CONFIG+=without_djvu"
-PLIST_SUB+=	DJVU="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MPDF}
-PLIST_SUB+=	PDF=""
-.else
-QMAKEFLAGS+=	"CONFIG+=without_pdf"
-PLIST_SUB+=	PDF="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MPS}
-PLIST_SUB+=	PS=""
-LIB_DEPENDS+=	spectre:${PORTSDIR}/print/libspectre
-.else
-QMAKEFLAGS+=	"CONFIG+=without_ps"
-PLIST_SUB+=	PS="@comment "
-.endif
+PDF_LIB_DEPENDS=	libpoppler-qt4.so:${PORTSDIR}/graphics/poppler-qt4
+PDF_QMAKE_OFF=	"CONFIG+=without_pdf"
+
+PS_LIB_DEPENDS=	libspectre.so:${PORTSDIR}/print/libspectre
+PS_QMAKE_OFF=	"CONFIG+=without_ps"
 
 pre-configure:
 	${REINPLACE_CMD} -e 's#/usr#${PREFIX}#g;s#${PREFIX}/share/man#${PREFIX}/man#g' \
 		${WRKSRC}/${PORTNAME}.pri
-
-do-configure:
-	cd ${WRKSRC} && lrelease-qt4 ${PORTNAME}.pro
-	cd ${WRKSRC} && ${QMAKE} ${QMAKEFLAGS} ${PORTNAME}.pro
+	cd ${WRKSRC} && ${LRELEASE} ${PORTNAME}.pro
 
 .include <bsd.port.mk>

Modified: head/print/qpdfview/pkg-descr
==============================================================================
--- head/print/qpdfview/pkg-descr	Mon Nov 25 14:21:29 2013	(r334852)
+++ head/print/qpdfview/pkg-descr	Mon Nov 25 14:38:47 2013	(r334853)
@@ -1,3 +1,5 @@
-qpdfview is a tabbed PDF viewer using the poppler library.
+qpdfview is a tabbed document viewer.  It uses Poppler for PDF
+support, libspectre for PS support, DjVuLibre for DjVu support,
+CUPS for printing support and the Qt toolkit for its interface.
 
 WWW: https://launchpad.net/qpdfview

Modified: head/print/qpdfview/pkg-plist
==============================================================================
--- head/print/qpdfview/pkg-plist	Mon Nov 25 14:21:29 2013	(r334852)
+++ head/print/qpdfview/pkg-plist	Mon Nov 25 14:38:47 2013	(r334853)
@@ -2,6 +2,7 @@ bin/qpdfview
 %%DJVU%%lib/qpdfview/libqpdfview_djvu.so
 %%PDF%%lib/qpdfview/libqpdfview_pdf.so
 %%PS%%lib/qpdfview/libqpdfview_ps.so
+man/man1/qpdfview.1.gz
 share/applications/qpdfview.desktop
 %%DATADIR%%/help.html
 %%DATADIR%%/qpdfview.svg


More information about the svn-ports-head mailing list