Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Jan 2015 20:39:46 +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: r377535 - in head/graphics/xpdf: . files
Message-ID:  <201501202039.t0KKdkjG016632@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Tue Jan 20 20:39:45 2015
New Revision: 377535
URL: https://svnweb.freebsd.org/changeset/ports/377535
QAT: https://qat.redports.org/buildarchive/r377535/

Log:
  3.04 builds pdftopng and pdftohtml but does not instll them. Fix this.

Modified:
  head/graphics/xpdf/Makefile
  head/graphics/xpdf/files/patch-Makefile.in
  head/graphics/xpdf/files/patch-xpdf__Makefile.in
  head/graphics/xpdf/pkg-plist

Modified: head/graphics/xpdf/Makefile
==============================================================================
--- head/graphics/xpdf/Makefile	Tue Jan 20 20:23:18 2015	(r377534)
+++ head/graphics/xpdf/Makefile	Tue Jan 20 20:39:45 2015	(r377535)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xpdf
 PORTVERSION=	3.04
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics print
 MASTER_SITES=	http://mirrors.rit.edu/zi/ \
 		ftp://ftp.foolabs.com/pub/xpdf/ \

Modified: head/graphics/xpdf/files/patch-Makefile.in
==============================================================================
--- head/graphics/xpdf/files/patch-Makefile.in	Tue Jan 20 20:23:18 2015	(r377534)
+++ head/graphics/xpdf/files/patch-Makefile.in	Tue Jan 20 20:39:45 2015	(r377535)
@@ -1,18 +1,23 @@
-Index: Makefile.in
-@@ -89,7 +89,7 @@
+--- Makefile.in.orig	2014-05-28 11:50:50.000000000 -0700
++++ Makefile.in	2015-01-20 11:21:34.614223754 -0800
+@@ -89,7 +89,9 @@
  	$(INSTALL_PROGRAM) xpdf/pdfinfo$(EXE) $(DESTDIR)@bindir@/pdfinfo$(EXE)
  	$(INSTALL_PROGRAM) xpdf/pdffonts$(EXE) $(DESTDIR)@bindir@/pdffonts$(EXE)
  	$(INSTALL_PROGRAM) xpdf/pdfdetach$(EXE) $(DESTDIR)@bindir@/pdfdetach$(EXE)
 -@X@	$(INSTALL_PROGRAM) xpdf/pdftoppm$(EXE) $(DESTDIR)@bindir@/pdftoppm$(EXE)
++	$(INSTALL_PROGRAM) xpdf/pdftohtml$(EXE) $(DESTDIR)@bindir@/pdftohtml$(EXE)
++	$(INSTALL_PROGRAM) xpdf/pdftopng$(EXE) $(DESTDIR)@bindir@/pdftopng$(EXE)
 +	$(INSTALL_PROGRAM) xpdf/pdftoppm$(EXE) $(DESTDIR)@bindir@/pdftoppm$(EXE)
  	$(INSTALL_PROGRAM) xpdf/pdfimages$(EXE) $(DESTDIR)@bindir@/pdfimages$(EXE)
  	-mkdir -p $(DESTDIR)@mandir@/man1
  @X@	$(INSTALL_DATA) $(srcdir)/doc/xpdf.1 $(DESTDIR)@mandir@/man1/xpdf.1
-@@ -98,7 +98,7 @@
+@@ -98,7 +100,9 @@
  	$(INSTALL_DATA) $(srcdir)/doc/pdfinfo.1 $(DESTDIR)@mandir@/man1/pdfinfo.1
  	$(INSTALL_DATA) $(srcdir)/doc/pdffonts.1 $(DESTDIR)@mandir@/man1/pdffonts.1
  	$(INSTALL_DATA) $(srcdir)/doc/pdfdetach.1 $(DESTDIR)@mandir@/man1/pdfdetach.1
 -@X@	$(INSTALL_DATA) $(srcdir)/doc/pdftoppm.1 $(DESTDIR)@mandir@/man1/pdftoppm.1
++	$(INSTALL_DATA) $(srcdir)/doc/pdftohtml.1 $(DESTDIR)@mandir@/man1/pdftohtml.1
++	$(INSTALL_DATA) $(srcdir)/doc/pdftopng.1 $(DESTDIR)@mandir@/man1/pdftopng.1
 +	$(INSTALL_DATA) $(srcdir)/doc/pdftoppm.1 $(DESTDIR)@mandir@/man1/pdftoppm.1
  	$(INSTALL_DATA) $(srcdir)/doc/pdfimages.1 $(DESTDIR)@mandir@/man1/pdfimages.1
  	-mkdir -p $(DESTDIR)@mandir@/man5

Modified: head/graphics/xpdf/files/patch-xpdf__Makefile.in
==============================================================================
--- head/graphics/xpdf/files/patch-xpdf__Makefile.in	Tue Jan 20 20:23:18 2015	(r377534)
+++ head/graphics/xpdf/files/patch-xpdf__Makefile.in	Tue Jan 20 20:39:45 2015	(r377535)
@@ -1,11 +1,12 @@
 --- xpdf/Makefile.in.orig	2014-05-28 11:50:50.000000000 -0700
-+++ xpdf/Makefile.in	2015-01-20 08:19:38.054680354 -0800
-@@ -122,7 +122,7 @@
++++ xpdf/Makefile.in	2015-01-20 11:19:11.373669249 -0800
+@@ -122,7 +122,8 @@
  	pdftopng$(EXE) pdfimages$(EXE)
  
  all-no-x: pdftops$(EXE) pdftotext$(EXE) pdftohtml$(EXE) pdfinfo$(EXE) \
 -	pdffonts$(EXE) pdfdetach$(EXE) pdfimages$(EXE)
-+	pdffonts$(EXE) pdfdetach$(EXE) pdftoppm$(EXE) pdfimages$(EXE)
++	pdffonts$(EXE) pdfdetach$(EXE) pdftoppm$(EXE) pdftopng$(EXE) \
++	pdfimages$(EXE)
  
  #------------------------------------------------------------------------
  

Modified: head/graphics/xpdf/pkg-plist
==============================================================================
--- head/graphics/xpdf/pkg-plist	Tue Jan 20 20:23:18 2015	(r377534)
+++ head/graphics/xpdf/pkg-plist	Tue Jan 20 20:39:45 2015	(r377535)
@@ -2,6 +2,8 @@ libexec/xpdf/pdffonts
 libexec/xpdf/pdfimages
 libexec/xpdf/pdfinfo
 libexec/xpdf/pdfdetach
+libexec/xpdf/pdftohtml
+libexec/xpdf/pdftopng
 libexec/xpdf/pdftoppm
 libexec/xpdf/pdftops
 libexec/xpdf/pdftotext
@@ -12,6 +14,8 @@ etc/xpdfrc
 %%DATADIR%%/man/man1/pdffonts.1.gz
 %%DATADIR%%/man/man1/pdfimages.1.gz
 %%DATADIR%%/man/man1/pdfinfo.1.gz
+%%DATADIR%%/man/man1/pdftohtml.1.gz
+%%DATADIR%%/man/man1/pdftopng.1.gz
 %%DATADIR%%/man/man1/pdftoppm.1.gz
 %%DATADIR%%/man/man1/pdftops.1.gz
 %%DATADIR%%/man/man1/pdftotext.1.gz



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