aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2003-07-01 07:17:58 +0000
committerDoug Barton <dougb@FreeBSD.org>2003-07-01 07:17:58 +0000
commitb3622a850cd57e16cf9bf0cfa308d241ab98aff5 (patch)
tree4801b91058fc01585a1a3054bdac1053a12601d2
parent28c552592b191360d41a24a04385a6075ebf86d2 (diff)
downloadports-b3622a850cd57e16cf9bf0cfa308d241ab98aff5.tar.gz
ports-b3622a850cd57e16cf9bf0cfa308d241ab98aff5.zip
Notes
-rw-r--r--graphics/xpdf/Makefile4
-rw-r--r--graphics/xpdf/distinfo2
-rw-r--r--graphics/xpdf/files/patch-aa19
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 *).