diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2010-02-24 05:53:05 +0800 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2010-02-24 05:53:05 +0800 |
commit | 56315375f0b91b64d8e29b54b0ddbf758b9578de (patch) | |
tree | a1f46be478f73acb8f06039673e3c4eec74479aa /print | |
parent | 4f0acc7cacd27a4144e035ed2a9f0a60f0dab03e (diff) | |
download | freebsd-ports-gnome-56315375f0b91b64d8e29b54b0ddbf758b9578de.tar.gz freebsd-ports-gnome-56315375f0b91b64d8e29b54b0ddbf758b9578de.tar.zst freebsd-ports-gnome-56315375f0b91b64d8e29b54b0ddbf758b9578de.zip |
- Restrict the gcc version to 4.2, not 4.2+, since 4.2 is the only
version that includes gcj42 at the moment.
PR: ports/143093
Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Feature safe: yes
Diffstat (limited to 'print')
-rw-r--r-- | print/pdftk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/pdftk/Makefile b/print/pdftk/Makefile index 73821db01d56..a24a690c5b1b 100644 --- a/print/pdftk/Makefile +++ b/print/pdftk/Makefile @@ -7,7 +7,7 @@ PORTNAME= pdftk PORTVERSION= 1.41 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= http://www.pdfhacks.com/pdftk/ \ http://www.accesspdf.com/pdftk/ @@ -17,14 +17,14 @@ MAINTAINER= glarkin@FreeBSD.org COMMENT= A simple tool for doing everyday things with PDF documents # Make this explicit for all OS versions. For __FreeBSD_version < 700042, -# we need to build gcc 4.2+ to get gcj42, and for OS versions with gcc 4.2+ +# we need to build gcc 4.2 to get gcj42, and for OS versions with gcc 4.2+ # in the base system, we need to build the port anyway to get gcj42. BUILD_DEPENDS= gcj${CSUFF}:${PORTSDIR}/lang/gcc${CSUFF} # Get gcc version suffix without the dot in USE_GCC CSUFF= ${_USE_GCC:S/.//} -USE_GCC= 4.2+ +USE_GCC= 4.2 USE_GMAKE= yes USE_ICONV= yes |