From 56315375f0b91b64d8e29b54b0ddbf758b9578de Mon Sep 17 00:00:00 2001 From: Greg Larkin Date: Tue, 23 Feb 2010 21:53:05 +0000 Subject: [PATCH] - 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 Feature safe: yes --- print/pdftk/Makefile | 6 +++--- 1 file 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