diff options
author | cy <cy@FreeBSD.org> | 2015-01-21 03:14:06 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2015-01-21 03:14:06 +0800 |
commit | be656b88a249ec879e7f3509307ddc21b6494ce4 (patch) | |
tree | 70f0bbfa30b1463b92b3dfe640c1c212c16fcd12 | |
parent | fd579a6b7f4dabdc477d799762700a2be1d21f1a (diff) | |
download | freebsd-ports-gnome-be656b88a249ec879e7f3509307ddc21b6494ce4.tar.gz freebsd-ports-gnome-be656b88a249ec879e7f3509307ddc21b6494ce4.tar.zst freebsd-ports-gnome-be656b88a249ec879e7f3509307ddc21b6494ce4.zip |
pdftoppm was not built in all-no-x target. Fix this.
PR: PR/196932
-rw-r--r-- | graphics/xpdf/Makefile | 1 | ||||
-rw-r--r-- | graphics/xpdf/files/patch-xpdf__Makefile.in | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/graphics/xpdf/Makefile b/graphics/xpdf/Makefile index 236281689abf..802a932965a6 100644 --- a/graphics/xpdf/Makefile +++ b/graphics/xpdf/Makefile @@ -2,6 +2,7 @@ PORTNAME= xpdf PORTVERSION= 3.04 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= http://mirrors.rit.edu/zi/ \ ftp://ftp.foolabs.com/pub/xpdf/ \ diff --git a/graphics/xpdf/files/patch-xpdf__Makefile.in b/graphics/xpdf/files/patch-xpdf__Makefile.in new file mode 100644 index 000000000000..53bb511850ee --- /dev/null +++ b/graphics/xpdf/files/patch-xpdf__Makefile.in @@ -0,0 +1,11 @@ +--- 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 @@ + 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) + + #------------------------------------------------------------------------ + |