pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk The lists of ghostscript version patterns should ma...
details: https://anonhg.NetBSD.org/pkgsrc/rev/d480d6f402b4
branches: trunk
changeset: 488706:d480d6f402b4
user: jlam <jlam%pkgsrc.org@localhost>
date: Mon Feb 07 07:18:40 2005 +0000
description:
The lists of ghostscript version patterns should match all ghostscript
versions (minus any PKGREVISIONs) less than or equal to the latest
version of each ghostscript available in pkgsrc (minus any PKGREVISIONs).
For example, if the print/ghostscript-esp is at 7.10, then the list of
patterns for ghostscript-esp should match all versions <=7.10, which is
[0-6].* 7.[0-9]* 7.10
diffstat:
mk/ghostscript.mk | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diffs (47 lines):
diff -r 0a954d74fdb8 -r d480d6f402b4 mk/ghostscript.mk
--- a/mk/ghostscript.mk Mon Feb 07 04:27:27 2005 +0000
+++ b/mk/ghostscript.mk Mon Feb 07 07:18:40 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ghostscript.mk,v 1.12 2004/03/10 16:53:50 jmmv Exp $
+# $NetBSD: ghostscript.mk,v 1.13 2005/02/07 07:18:40 jlam Exp $
#
# This Makefile fragment is included by packages that require a run-time
# dependency on a ghostscript Postscript interpreter.
@@ -32,11 +32,9 @@
_VALID_GS= # empty
-# ghostscript-esp{,-x11,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=7.05.5
+# ghostscript-esp{,-x11,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=7.07.1
#
-.for _gs_pattern_ in \
- [0-6].* 7.0 7.0nb* 7.0[0-4] 7.0[0-4]nb* 7.05 7.05nb1 \
- 7.05.[1-4] 7.05.[1-4]nb* 7.05.5
+.for _gs_pattern_ in [0-6].* 7.0 7.0[1-6]* 7.07 7.07.1
. if !empty(GHOSTSCRIPT_REQD:M${_gs_pattern_})
. if defined(USE_X11)
_VALID_GS+= ghostscript-esp>=${GHOSTSCRIPT_REQD}
@@ -47,9 +45,9 @@
. endif
.endfor
-# ghostscript-gnu{,-x11,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=7.05nb1
+# ghostscript-gnu{,-x11,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=7.07
#
-.for _gs_pattern_ in [0-6].* 7.0 7.0nb* 7.0[0-4] 7.0[0-4]nb* 7.05 7.05nb1
+.for _gs_pattern_ in [0-6].* 7.0 7.0[1-6]* 7.07
. if !empty(GHOSTSCRIPT_REQD:M${_gs_pattern_})
. if defined(USE_X11)
_VALID_GS+= ghostscript-gnu>=${GHOSTSCRIPT_REQD}
@@ -62,9 +60,9 @@
. endif
.endfor
-# ghostscript{,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=6.01nb4.
+# ghostscript{,-nox11} satisfies ${GHOSTSCRIPT_REQD}<=6.01
#
-.for _gs_pattern_ in [0-5].* 6.0 6.0nb* 6.01 6.01nb[1-4]
+.for _gs_pattern_ in [0-5].* 6.0 6.01
. if !empty(GHOSTSCRIPT_REQD:M${_gs_pattern_})
. if defined(USE_X11)
_VALID_GS+= ghostscript>=${GHOSTSCRIPT_REQD}
Home |
Main Index |
Thread Index |
Old Index