From owner-svn-ports-all@freebsd.org Sat Apr 15 20:16:49 2017 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 78CBBD3FB4F; Sat, 15 Apr 2017 20:16:49 +0000 (UTC) (envelope-from philip@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 55DEAB66; Sat, 15 Apr 2017 20:16:49 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3FKGmdM007019; Sat, 15 Apr 2017 20:16:48 GMT (envelope-from philip@FreeBSD.org) Received: (from philip@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3FKGm44007015; Sat, 15 Apr 2017 20:16:48 GMT (envelope-from philip@FreeBSD.org) Message-Id: <201704152016.v3FKGm44007015@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: philip set sender to philip@FreeBSD.org using -f From: Philip Paeps Date: Sat, 15 Apr 2017 20:16:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438598 - in head/graphics: . dspdfviewer 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.23 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, 15 Apr 2017 20:16:49 -0000 Author: philip Date: Sat Apr 15 20:16:47 2017 New Revision: 438598 URL: https://svnweb.freebsd.org/changeset/ports/438598 Log: Dual-screen PDF viewer for LaTeX-beamer WWW: https://github.com/dannyedel/dspdfviewer Submitted by: Santhosh Raju Added: head/graphics/dspdfviewer/ head/graphics/dspdfviewer/Makefile (contents, props changed) head/graphics/dspdfviewer/distinfo (contents, props changed) head/graphics/dspdfviewer/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Apr 15 19:44:33 2017 (r438597) +++ head/graphics/Makefile Sat Apr 15 20:16:47 2017 (r438598) @@ -146,6 +146,7 @@ SUBDIR += dmtx-utils SUBDIR += dri SUBDIR += driconf + SUBDIR += dspdfviewer SUBDIR += duhdraw SUBDIR += dynamechs SUBDIR += easypaint Added: head/graphics/dspdfviewer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/dspdfviewer/Makefile Sat Apr 15 20:16:47 2017 (r438598) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= dspdfviewer +PORTVERSION= 1.15.1 +CATEGORIES= graphics + +MAINTAINER= santhosh.raju@gmail.com +COMMENT= Dual-screen PDF viewer for LaTeX-beamer + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 \ + libboost_program_options.so:devel/boost-libs + +BUILD_WRKSRC= ${WRKSRC}/build +CONFIGURE_WRKSRC= ${WRKSRC}/build +INSTALL_WRKSRC= ${WRKSRC}/build + +USES= cmake pkgconfig +USE_QT5= buildtools_build core gui qmake_build linguisttools widgets xml +CMAKE_ARGS= -DPOPPLER_LIBRARIES=${LOCALBASE}/lib/libpoppler-qt5.so -DBuildTests=OFF +USE_LDCONFIG= yes + +CMAKE_VERBOSE= yes + +USE_GITHUB= yes +GH_ACCOUNT= dannyedel +GH_PROJECT= dspdfviewer +GH_TAGNAME= v1.15.1 + +PLIST_FILES= bin/dspdfviewer \ + share/applications/dspdfviewer.desktop \ + share/man/man1/dspdfviewer.1 + +.include Added: head/graphics/dspdfviewer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/dspdfviewer/distinfo Sat Apr 15 20:16:47 2017 (r438598) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492284790 +SHA256 (dannyedel-dspdfviewer-1.15.1-v1.15.1_GH0.tar.gz) = c5b6f8c93d732e65a27810286d49a4b1c6f777d725e26a207b14f6b792307b03 +SIZE (dannyedel-dspdfviewer-1.15.1-v1.15.1_GH0.tar.gz) = 165202 Added: head/graphics/dspdfviewer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/dspdfviewer/pkg-descr Sat Apr 15 20:16:47 2017 (r438598) @@ -0,0 +1,9 @@ +dspdfviewer a simple viewer for latex-beamer presentations that are built with +the show notes on second screen option of latex-beamer. It will take your PDF +file, split it in a left and right half and render the two halves individually +to the screens. + +In addition, your laptop screen will contain some counters and a wall-clock, +which may help you time your presentation right. + +WWW: https://github.com/dannyedel/dspdfviewer