diff options
author | Cy Schubert <cy@FreeBSD.org> | 2015-01-20 19:14:06 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2015-01-20 19:14:06 +0000 |
commit | 1c9c1644c2089ff32732ad4eee3bc6a1efe664e5 (patch) | |
tree | 70f0bbfa30b1463b92b3dfe640c1c212c16fcd12 /graphics | |
parent | Fix depends (diff) |
pdftoppm was not built in all-no-x target. Fix this.
PR: PR/196932
Notes
Notes:
svn path=/head/; revision=377531
Diffstat (limited to 'graphics')
-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) + + #------------------------------------------------------------------------ + |