diff options
author | Doug Barton <dougb@FreeBSD.org> | 2003-07-01 07:17:58 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2003-07-01 07:17:58 +0000 |
commit | b3622a850cd57e16cf9bf0cfa308d241ab98aff5 (patch) | |
tree | 4801b91058fc01585a1a3054bdac1053a12601d2 /graphics/xpdf | |
parent | 28c552592b191360d41a24a04385a6075ebf86d2 (diff) | |
download | ports-b3622a850cd57e16cf9bf0cfa308d241ab98aff5.tar.gz ports-b3622a850cd57e16cf9bf0cfa308d241ab98aff5.zip |
Notes
Diffstat (limited to 'graphics/xpdf')
-rw-r--r-- | graphics/xpdf/Makefile | 4 | ||||
-rw-r--r-- | graphics/xpdf/distinfo | 2 | ||||
-rw-r--r-- | graphics/xpdf/files/patch-aa | 19 |
3 files changed, 4 insertions, 21 deletions
diff --git a/graphics/xpdf/Makefile b/graphics/xpdf/Makefile index bc8bd4d981d4..495c87703e5f 100644 --- a/graphics/xpdf/Makefile +++ b/graphics/xpdf/Makefile @@ -6,11 +6,12 @@ # PORTNAME= xpdf -PORTVERSION= 2.02 +PORTVERSION= 2.02.1 CATEGORIES= graphics print MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ \ ${MASTER_SITE_TEX_CTAN} MASTER_SITE_SUBDIR= support/xpdf +DISTNAME= ${PORTNAME}-${PORTVERSION:R}pl${PORTVERSION:E} MAINTAINER= DougB@FreeBSD.org COMMENT= Display PDF files, and convert them to other formats @@ -24,6 +25,7 @@ USE_MOTIF= yes USE_GMAKE= yes GNU_CONFIGURE= yes +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-gzip --enable-opi --with-x \ diff --git a/graphics/xpdf/distinfo b/graphics/xpdf/distinfo index bce879edaf3d..d1a16bf7699e 100644 --- a/graphics/xpdf/distinfo +++ b/graphics/xpdf/distinfo @@ -1 +1 @@ -MD5 (xpdf-2.02.tar.gz) = fb54402d98fb834e5778163cfc238b44 +MD5 (xpdf-2.02pl1.tar.gz) = e2932bb0f844d8318c940350c2aa2eb6 diff --git a/graphics/xpdf/files/patch-aa b/graphics/xpdf/files/patch-aa deleted file mode 100644 index 9eb2e67d6f80..000000000000 --- a/graphics/xpdf/files/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ ---- configure.in.orig Fri Feb 1 15:15:45 2002 -+++ configure.in Sun Feb 10 17:42:52 2002 -@@ -193,6 +193,16 @@ - if test "$xpdf_cv_func_mkstemp" = yes; then - AC_DEFINE(HAVE_MKSTEMP) - fi -+dnl # Ditto mkstemps() -+AC_CACHE_CHECK([for mkstemps], -+xpdf_cv_func_mkstemps, -+[AC_TRY_LINK([#include <stdlib.h> -+#include <unistd.h>], -+[mkstemps("foo", 0);], -+xpdf_cv_func_mkstemps=yes, xpdf_cv_func_mkstemps=no)]) -+if test "$xpdf_cv_func_mkstemps" = yes; then -+ AC_DEFINE(HAVE_MKSTEMPS) -+fi - - dnl ##### Check select argument type: on HP-UX before version 10, select - dnl ##### takes (int *) instead of (fd_set *). |