View | Details | Raw Unified | Return to bug 273864 | Differences between
and this patch

Collapse All | Expand All

(-)b/Mk/Uses/ghostscript.mk (-5 / +5 lines)
Lines 5-15 Link Here
5
# Valid ARGS:	<version>, build, lib, run, test, x11
5
# Valid ARGS:	<version>, build, lib, run, test, x11
6
#
6
#
7
# version 	The chooseable versions are 9, agpl and 10. If no version is
7
# version 	The chooseable versions are 9, agpl and 10. If no version is
8
#		specified version agpl is selected. 9 and agpl are synonymous.
8
#		specified version 10 is selected. 9 and agpl are synonymous.
9
#
9
#
10
#		USES=ghostscript:9	# Use Ghostscript 9
10
#		USES=ghostscript:10	    # Use Ghostscript 10
11
#		USES=ghostscript:run	# Use the set default Ghostscript as a run dependency
11
#		USES=ghostscript:run	# Use to set default Ghostscript as a run dependency
12
#		USES=ghostscript:9,build # Use ghostscript 9 as a build dependency.
12
#		USES=ghostscript:9,build # Use Ghostscript 9 as a build dependency.
13
#
13
#
14
# build		Ghostscript is used as BUILD_DEPENDS
14
# build		Ghostscript is used as BUILD_DEPENDS
15
# lib		Ghostscript is used as LIB_DEPENDS
15
# lib		Ghostscript is used as LIB_DEPENDS
Lines 86-92 _GS_STATIC= yes Link Here
86
86
87
# Resolve minor version number for X11.so library.
87
# Resolve minor version number for X11.so library.
88
.  if !empty(_GS_SELECTED:M10)
88
.  if !empty(_GS_SELECTED:M10)
89
_GS_VERSION_MINOR=	10.01.2
89
_GS_VERSION_MINOR=	10.02.0
90
.  elif !empty(_GS_SELECTED:M9-agpl)
90
.  elif !empty(_GS_SELECTED:M9-agpl)
91
_GS_VERSION_MINOR=	9.56.1
91
_GS_VERSION_MINOR=	9.56.1
92
.  endif
92
.  endif
(-)b/Mk/bsd.default-versions.mk (-1 / +1 lines)
Lines 60-66 GCC_DEFAULT?= 8 Link Here
60
GCC_DEFAULT?=		12
60
GCC_DEFAULT?=		12
61
.  endif
61
.  endif
62
# Possible values: 9, agpl, 10
62
# Possible values: 9, agpl, 10
63
GHOSTSCRIPT_DEFAULT?=	agpl
63
GHOSTSCRIPT_DEFAULT?=	10
64
# Possible values: mesa-libs, mesa-devel
64
# Possible values: mesa-libs, mesa-devel
65
GL_DEFAULT?=		mesa-libs
65
GL_DEFAULT?=		mesa-libs
66
# Possible values: 1.19, 1.20, 1.21, 1.22-devel
66
# Possible values: 1.19, 1.20, 1.21, 1.22-devel
(-)b/UPDATING (-1 / +24 lines)
Lines 5-10 they are unavoidable. Link Here
5
You should get into the habit of checking this file for changes each time
5
You should get into the habit of checking this file for changes each time
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20230322:
9
  AFFECTS: users of print/ghostscript9*
10
  AUTHOR: michael.osipov@siemens.com
11
12
  The default ghostscript version has been updated from 9 to 10.
13
14
  If you compile your own ports you may keep 9 as the default version by
15
  adding the following lines to your /etc/make.conf file:
16
17
  #
18
  # Keep ghostscript 9 as default version
19
  #
20
  DEFAULT_VERSIONS+=ghostscript=9
21
22
  If you wish to update to the new default version, you need to first stop any
23
  software that uses ghostscript. Then, you will need to follow these steps,
24
  depending upon how you manage your system.
25
26
  If you use pkg, simply upgrade:
27
  # pkg upgrade
28
29
  Please note that print/ghostcript9* will be removed in the future since it is
30
  not supported by upstream anymore.
31
8
20230915:
32
20230915:
9
  AFFECTS: users of print/ghostscript10
33
  AFFECTS: users of print/ghostscript10
10
  AUTHOR: michael.osipov@siemens.com
34
  AUTHOR: michael.osipov@siemens.com
11
- 

Return to bug 273864