diff --git a/print/ghostscript9-agpl-base/Makefile b/print/ghostscript9-agpl-base/Makefile index 69943dddaf2e..f80aeca8d2d7 100644 --- a/print/ghostscript9-agpl-base/Makefile +++ b/print/ghostscript9-agpl-base/Makefile @@ -1,96 +1,95 @@ PORTNAME= ghostscript -PORTVERSION= 9.55.0 -PORTREVISION= 1 +PORTVERSION= 9.56.1 CATEGORIES= print MASTER_SITES= https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PORTVERSION:S/.//g}/ PKGNAMESUFFIX= 9-agpl-base MAINTAINER= hrs@FreeBSD.org COMMENT= PostScript and PDF interpreter LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= jbig2dec>=0.17:graphics/jbig2dec LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libidn.so:dns/libidn \ libjbig2dec.so:graphics/jbig2dec \ libopenjp2.so:graphics/openjpeg \ libpaper.so:print/libpaper \ libpng.so:graphics/png \ libtiff.so:graphics/tiff RUN_DEPENDS= poppler-data>=0.4.9:graphics/poppler-data USES= cpe gmake iconv jpeg localbase pkgconfig tar:xz USE_LDCONFIG= yes CONFLICTS_INSTALL= \ ghostscript[789] \ ghostscript[789]-nox11 \ ghostscript9-agpl \ ghostscript9-agpl-nox11 CPE_VENDOR= artifex DATADIR= ${PREFIX}/share/${PORTNAME}/${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}/${PORTVERSION} EXTRACT_AFTER_ARGS= \ --exclude cups/libs \ --exclude freetype \ --exclude ijs \ --exclude jbig2dec \ --exclude jpeg \ --exclude libpng \ --exclude openjpeg \ --exclude zlib GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-compile-inits \ --disable-dbus \ --disable-gtk \ --enable-contrib \ --enable-dynamic \ --enable-fontconfig \ --enable-freetype \ --enable-openjpeg \ --with-drivers=ALL \ --with-fontpath=${LOCALBASE}/share/fonts \ --with-jbig2dec \ --with-libiconv=maybe \ --with-libidn \ --with-libpaper \ --with-system-libtiff \ --without-x ALL_TARGET= so INSTALL_TARGET= soinstall -PLIST_SUB= GS_VERSION="${PORTVERSION:S/.0$//}" \ +PLIST_SUB= GS_VERSION="${PORTVERSION:C/.[0-9]$//}" \ PORTVERSION="${PORTVERSION}" OPTIONS_DEFINE= DOCS CUPS IJS OPTIONS_DEFAULT=DOCS CUPS OPTIONS_SUB= yes CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS= libcupsimage.so:print/cups IJS_CONFIGURE_WITH= ijs IJS_DESC= Support libijs based Ghostscript devices IJS_LIB_DEPENDS= libijs.so:print/libijs post-install: ${MV} ${STAGEDIR}${PREFIX}/bin/gsc ${STAGEDIR}${PREFIX}/bin/gs ${RM} ${STAGEDIR}${PREFIX}/bin/gsx ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gs ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgs.so ${MKDIR} ${STAGEDIR}${PREFIX}/share/color/icc ${MV} ${STAGEDIR}${DATADIR}/iccprofiles \ ${STAGEDIR}${PREFIX}/share/color/icc/ghostscript ${RLN} ${STAGEDIR}${PREFIX}/share/color/icc/ghostscript \ ${STAGEDIR}${DATADIR}/iccprofiles ${RLN} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DATADIR}/doc ${MKDIR} ${STAGEDIR}${PREFIX}/share/cmap ${MV} ${STAGEDIR}${DATADIR}/Resource/CMap/Identity* \ ${STAGEDIR}${PREFIX}/share/cmap ${RM} -r ${STAGEDIR}${DATADIR}/Resource/CMap ${RLN} ${STAGEDIR}${PREFIX}/share/cmap \ ${STAGEDIR}${DATADIR}/Resource/CMap .include diff --git a/print/ghostscript9-agpl-base/distinfo b/print/ghostscript9-agpl-base/distinfo index 7ecba27459e1..059ca5ac3fd7 100644 --- a/print/ghostscript9-agpl-base/distinfo +++ b/print/ghostscript9-agpl-base/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634973195 -SHA256 (ghostscript-9.55.0.tar.xz) = 6ee3057773646d6a2c6d117eb53a17d6752feadc513828e4322f68b7b7789ff6 -SIZE (ghostscript-9.55.0.tar.xz) = 67417724 +TIMESTAMP = 1651717085 +SHA256 (ghostscript-9.56.1.tar.xz) = d43406805650009b42c3d5f6dc535233454533c1e27c13a77dd1d462a056b8e4 +SIZE (ghostscript-9.56.1.tar.xz) = 62589232 diff --git a/print/ghostscript9-agpl-base/files/patch-Resource-Init-gs_ttf.ps b/print/ghostscript9-agpl-base/files/patch-Resource-Init-gs_ttf.ps index abc7117049f9..3d33ef6f3137 100644 --- a/print/ghostscript9-agpl-base/files/patch-Resource-Init-gs_ttf.ps +++ b/print/ghostscript9-agpl-base/files/patch-Resource-Init-gs_ttf.ps @@ -1,24 +1,24 @@ ---- Resource/Init/gs_ttf.ps.orig 2020-03-12 12:26:37 UTC +--- Resource/Init/gs_ttf.ps.orig 2022-04-04 13:48:49 UTC +++ Resource/Init/gs_ttf.ps -@@ -1082,10 +1082,17 @@ mark +@@ -1116,10 +1116,17 @@ mark } ifelse % Stack: ... /FontInfo mark key1 value1 ... post //null ne { - /ItalicAngle first_post_string 4 gets32 65536.0 div - /isFixedPitch first_post_string 12 getu32 0 ne - /UnderlinePosition first_post_string 8 gets16 upem div - /UnderlineThickness first_post_string 10 gets16 upem div + post type /arraytype eq { + % this post table is a big table. /post should be [(...) ...] + % data we actually need here should be first one in array. + /posttable post 1 get def + } { + /posttable post def + } ifelse + /ItalicAngle posttable 4 gets32 65536.0 div + /isFixedPitch posttable 12 getu32 0 ne + /UnderlinePosition posttable 8 gets16 upem div + /UnderlineThickness posttable 10 gets16 upem div } if counttomark 0 ne { .dicttomark } { pop pop } ifelse /XUID [orgXUID 42 curxuid] diff --git a/print/ghostscript9-agpl-base/files/patch-Resource-Init-pdf_font.ps b/print/ghostscript9-agpl-base/files/patch-Resource-Init-pdf_font.ps index 31fade204c07..57342870bd41 100644 --- a/print/ghostscript9-agpl-base/files/patch-Resource-Init-pdf_font.ps +++ b/print/ghostscript9-agpl-base/files/patch-Resource-Init-pdf_font.ps @@ -1,15 +1,15 @@ ---- Resource/Init/pdf_font.ps.orig 2020-03-12 12:26:37 UTC +--- Resource/Init/pdf_font.ps.orig 2022-04-04 13:48:49 UTC +++ Resource/Init/pdf_font.ps -@@ -2180,10 +2180,12 @@ currentdict /CMap_read_dict undef +@@ -2231,10 +2231,12 @@ currentdict /CMap_read_dict undef /buildCIDType0 { % buildCIDType0 dup /BaseFont get findCIDFont exch pop + addCIDmetrics /CIDFont defineresource } bind executeonly def /buildCIDType2 { % buildCIDType2 dup /BaseFont get findCIDFont exch pop + addCIDmetrics /CIDFont defineresource } bind executeonly def /processCIDToGIDMap { % processCIDToGIDMap diff --git a/print/ghostscript9-agpl-base/files/patch-Resource_Init_cidfmap b/print/ghostscript9-agpl-base/files/patch-Resource_Init_cidfmap index 4269e879be5a..847087759049 100644 --- a/print/ghostscript9-agpl-base/files/patch-Resource_Init_cidfmap +++ b/print/ghostscript9-agpl-base/files/patch-Resource_Init_cidfmap @@ -1,70 +1,67 @@ ---- Resource/Init/cidfmap.orig 2020-03-12 12:26:37 UTC +--- Resource/Init/cidfmap.orig 2022-04-04 13:48:49 UTC +++ Resource/Init/cidfmap -@@ -37,6 +37,67 @@ - % /ShinGo-Bold /HeiseiKakuGo-W5 ; - % /Ryumin-Medium << /FileType /TrueType /Path (H:/AuxFiles/Fonts/BATANG.TTC) /SubfontID 3 /CSI [(Japan1) 2] >> ; - % /Ryumin-Medium << /FileType /TrueType /Path (windir) getenv not {(c:/windows)}if (/Fonts/BATANG.TTC)concatstrings /SubfontID 3 /CSI [(Japan1) 2] >> ; +@@ -46,3 +46,64 @@ + % + % Note the use of a string to cope with the name containing a space. + % +/Ryumin-Light << /FileType /TrueType /Path (std.ja_JP/Ryumin-Light) /SubfontID 0 /CSI [(Japan1) 6] >> ; +/GothicBBB-Medium << /FileType /TrueType /Path (std.ja_JP/GothicBBB-Medium) /SubfontID 0 /CSI [(Japan1) 6] >> ; + +/Ryumin-Medium /Ryumin-Light ; +/Ryumin-Regular /Ryumin-Light ; +/RyuminPro-Light /Ryumin-Light ; + +/GothicBBBPro-Medium /GothicBBB-Medium ; + +/KozGoPro-Bold /GothicBBB-Medium ; +/KozGoPro-Heavy /GothicBBB-Medium ; +/KozGoPro-Medium /GothicBBB-Medium ; +/KozGoPro-Regular /GothicBBB-Medium ; + +/KozMinPro-Bold /Ryumin-Light ; +/KozMinPro-Light /Ryumin-Light ; +/KozMinPro-Medium /Ryumin-Light ; +/KozMinPro-Regular /Ryumin-Light ; + +/HiraKakuPro-W3 /GothicBBB-Medium ; +/HiraKakuPro-W6 /GothicBBB-Medium ; +/HiraKakuStd-W8 /GothicBBB-Medium ; + +/HiraMaruPro-W4 /GothicBBB-Medium ; + +/HiraMinPro-W3 /Ryumin-Light ; + +/HeiseiMin-W3 /Ryumin-Light ; +/HeiseiKakuGo-W5 /GothicBBB-Medium ; + +/FutoMinA101-Bold /Ryumin-Light ; +/FutoMinA101Pro-Bold /Ryumin-Light ; +/FutoGoB101-Bold /GothicBBB-Medium ; +/FutoGoB101Pro-Bold /GothicBBB-Medium ; + +/Jun101-Light /Ryumin-Light ; +/Jun101Pro-Light /Ryumin-Light ; + +/MidashiGo-MB31 /GothicBBB-Medium ; +/MidashiGoPro-MB31 /GothicBBB-Medium ; + +/MidashiMinPro-MA31 /Ryumin-Light ; + +/MS-Mincho /Ryumin-Light ; +/MS-PMincho /Ryumin-Light ; +/MS-Gothic /GothicBBB-Medium ; +/MS-PGothic /GothicBBB-Medium ; + +%/Munhwa-Regular /Munhwa-Regular ; +%/MunhwaGothic-Regular /MunhwaGothic-Regular ; +%/Munhwa-Bold /Munhwa-Bold ; +%/MunhwaGothic-Bold /MunhwaGothic-Bold ; + +/HYGoThic-Medium /MunhwaGothic-Regular ; +/HYSMyeongJo-Medium /Munhwa-Regular ; +/HYRGoThic-Medium /MunhwaGothic-Bold ; + +/STHeiti-Regular << /FileType /TrueType /Path (std.zh_CN/STHeiti-Regular) /SubfontID 0 /CSI [(CNS1) 5] >> ; +/STSong-Light << /FileType /TrueType /Path (std.zh_CN/STSong-Light) /SubfontID 0 /CSI [(GB1) 5] >> ; +/MSung-Light << /FileType /TrueType /Path (std.zh_CN/MSung-Light) /SubfontID 0 /CSI [(CNS1) 5] >> ; +/MHei-Medium << /FileType /TrueType /Path (std.zh_CN/MHei-Medium) /SubfontID 0 /CSI [(GB1) 5] >> ; - % - % NOTE: getenv returns a boolean to indicate success of or failure, as well as the value on success. In the example, it uses this - % to include a default value should getenv fail. diff --git a/print/ghostscript9-agpl-base/files/patch-configure b/print/ghostscript9-agpl-base/files/patch-configure index 73d694ba2be5..9f99249c05b1 100644 --- a/print/ghostscript9-agpl-base/files/patch-configure +++ b/print/ghostscript9-agpl-base/files/patch-configure @@ -1,76 +1,16 @@ ---- configure.orig 2021-09-27 07:44:02 UTC +--- configure.orig 2022-04-04 13:48:49 UTC +++ configure -@@ -5539,7 +5539,7 @@ if test "${enable_threadsafe+set}" = set; then : - fi - - if test x$enable_threadsafe = xyes ; then -- CFLAGS="-DGS_THREADSAFE" -+ CFLAGS="$CFLAGS -DGS_THREADSAFE" - fi - - -@@ -11352,42 +11352,42 @@ if test x$enable_threadsafe = xyes; then - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$P_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- P_DEVS0=`echo $P_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ P_DEVS0=`echo $P_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$F_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- F_DEVS0=`echo $F_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ F_DEVS0=`echo $F_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$CUPS_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- CUPS_DEVS0=`echo $CUPS_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ CUPS_DEVS0=`echo $CUPS_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$XPS_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- XPS_DEVS0=`echo $XPS_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ XPS_DEVS0=`echo $XPS_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$IJS_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- IJS_DEVS0=`echo $IJS_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ IJS_DEVS0=`echo $IJS_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$PNG_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- PNG_DEVS0=`echo $PNG_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ PNG_DEVS0=`echo $PNG_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$X11_DEVS0{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- X11_DEVS0=`echo $X11_DEVS0 | sed "s/\b$ntsdev\b//g"` -+ X11_DEVS0=`echo $X11_DEVS0 | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - for ntsdev in $NTS_DEVS ; do - NTS_EXCLUDES="$(echo \"$JBIG2_DEVS{@:0}\" | grep -o $ntsdev) $NTS_EXCLUDES" -- JBIG2_DEVS=`echo $JBIG2_DEVS | sed "s/\b$ntsdev\b//g"` -+ JBIG2_DEVS=`echo $JBIG2_DEVS | sed "s/[[:<:]]$ntsdev[[:>:]]//g"` - done - - NTS_EXCLUDES=`echo "$NTS_EXCLUDES" | tr " " "\n" | sort | uniq | tr "\n" " "` -@@ -11686,7 +11686,12 @@ if test "${enable_dynamic+set}" = set; then : +@@ -11629,7 +11629,12 @@ if test "${enable_dynamic+set}" = set; then : DBG_CFLAGS="$DYNAMIC_CFLAGS $DBG_CFLAGS" ;; *bsd*) - DYNAMIC_DEVS="\$(GLOBJDIR)/X11.so" + INSTALL_SHARED="install-shared" + if test "x$X_DEVS" != x; then + DYNAMIC_DEVS="\$(GLOBJDIR)/X11.so" + else + DYNAMIC_DEVS="" + fi DYNAMIC_FLAGS="-DGS_DEVS_SHARED -DGS_DEVS_SHARED_DIR=\\\"\$(gssharedir)\\\"" X11_DEVS="" OPT_CFLAGS="$DYNAMIC_CFLAGS $OPT_CFLAGS" diff --git a/print/ghostscript9-agpl-base/pkg-plist b/print/ghostscript9-agpl-base/pkg-plist index 41a9c125e09d..bef358fd452d 100644 --- a/print/ghostscript9-agpl-base/pkg-plist +++ b/print/ghostscript9-agpl-base/pkg-plist @@ -1,406 +1,402 @@ bin/dvipdf bin/eps2eps bin/gs bin/gsbj bin/gsdj bin/gsdj500 bin/gslj bin/gslp bin/gsnd bin/lprsetup.sh bin/pdf2dsc bin/pdf2ps bin/pf2afm bin/pfbtopfa bin/pphs bin/printafm bin/ps2ascii bin/ps2epsi bin/ps2pdf bin/ps2pdf12 bin/ps2pdf13 bin/ps2pdf14 bin/ps2pdfwr bin/ps2ps bin/ps2ps2 bin/unix-lpr.sh include/ghostscript/gdevdsp.h include/ghostscript/gserrors.h include/ghostscript/iapi.h include/ghostscript/ierrors.h lib/libgs.so lib/libgs.so.9 lib/libgs.so.%%GS_VERSION%% man/de/man1/dvipdf.1.gz man/de/man1/eps2eps.1.gz man/de/man1/gsnd.1.gz man/de/man1/pdf2dsc.1.gz man/de/man1/pdf2ps.1.gz man/de/man1/printafm.1.gz man/de/man1/ps2ascii.1.gz man/de/man1/ps2pdf.1.gz man/de/man1/ps2pdf12.1.gz man/de/man1/ps2pdf13.1.gz man/de/man1/ps2pdf14.1.gz man/de/man1/ps2ps.1.gz man/man1/dvipdf.1.gz man/man1/eps2eps.1.gz man/man1/gs.1.gz man/man1/gsbj.1.gz man/man1/gsdj.1.gz man/man1/gsdj500.1.gz man/man1/gslj.1.gz man/man1/gslp.1.gz man/man1/gsnd.1.gz man/man1/pdf2dsc.1.gz man/man1/pdf2ps.1.gz man/man1/pf2afm.1.gz man/man1/pfbtopfa.1.gz man/man1/printafm.1.gz man/man1/ps2ascii.1.gz man/man1/ps2epsi.1.gz man/man1/ps2pdf.1.gz man/man1/ps2pdf12.1.gz man/man1/ps2pdf13.1.gz man/man1/ps2pdf14.1.gz man/man1/ps2pdfwr.1.gz man/man1/ps2ps.1.gz share/cmap/Identity-H share/cmap/Identity-UTF16-H share/cmap/Identity-V share/color/icc/ghostscript/a98.icc share/color/icc/ghostscript/default_cmyk.icc share/color/icc/ghostscript/default_gray.icc share/color/icc/ghostscript/default_rgb.icc share/color/icc/ghostscript/esrgb.icc share/color/icc/ghostscript/gray_to_k.icc share/color/icc/ghostscript/lab.icc share/color/icc/ghostscript/ps_cmyk.icc share/color/icc/ghostscript/ps_gray.icc share/color/icc/ghostscript/ps_rgb.icc share/color/icc/ghostscript/rommrgb.icc share/color/icc/ghostscript/scrgb.icc share/color/icc/ghostscript/sgray.icc share/color/icc/ghostscript/srgb.icc %%PORTDOCS%%%%DOCSDIR%%/API.htm %%PORTDOCS%%%%DOCSDIR%%/C-style.htm %%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/Commprod.htm %%PORTDOCS%%%%DOCSDIR%%/DLL.htm %%PORTDOCS%%%%DOCSDIR%%/Deprecated.htm %%PORTDOCS%%%%DOCSDIR%%/Develop.htm %%PORTDOCS%%%%DOCSDIR%%/Devices.htm %%PORTDOCS%%%%DOCSDIR%%/Drivers.htm %%PORTDOCS%%%%DOCSDIR%%/Fonts.htm %%PORTDOCS%%%%DOCSDIR%%/GS9_Color_Management.pdf %%PORTDOCS%%%%DOCSDIR%%/History9.htm %%PORTDOCS%%%%DOCSDIR%%/Install.htm %%PORTDOCS%%%%DOCSDIR%%/Language.htm %%PORTDOCS%%%%DOCSDIR%%/Lib.htm %%PORTDOCS%%%%DOCSDIR%%/Make.htm %%PORTDOCS%%%%DOCSDIR%%/News.htm %%PORTDOCS%%%%DOCSDIR%%/Ps-style.htm %%PORTDOCS%%%%DOCSDIR%%/Ps2epsi.htm %%PORTDOCS%%%%DOCSDIR%%/Psfiles.htm %%PORTDOCS%%%%DOCSDIR%%/Readme.htm %%PORTDOCS%%%%DOCSDIR%%/Release.htm %%PORTDOCS%%%%DOCSDIR%%/SavedPages.htm %%PORTDOCS%%%%DOCSDIR%%/Source.htm %%PORTDOCS%%%%DOCSDIR%%/Unix-lpr.htm %%PORTDOCS%%%%DOCSDIR%%/Use.htm %%PORTDOCS%%%%DOCSDIR%%/VectorDevices.htm %%PORTDOCS%%%%DOCSDIR%%/WhatIsGS.htm %%PORTDOCS%%%%DOCSDIR%%/gdevds32.c -%%PORTDOCS%%%%DOCSDIR%%/gs-style.css %%PORTDOCS%%%%DOCSDIR%%/images/Artifex_logo.png %%PORTDOCS%%%%DOCSDIR%%/images/favicon.png %%PORTDOCS%%%%DOCSDIR%%/images/ghostscript_logo.png %%PORTDOCS%%%%DOCSDIR%%/images/hamburger-light.png %%PORTDOCS%%%%DOCSDIR%%/images/x-light.png %%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/index.js %%PORTDOCS%%%%DOCSDIR%%/pscet_status.txt %%PORTDOCS%%%%DOCSDIR%%/sample_downscale_device.htm -%%PORTDOCS%%%%DOCSDIR%%/style.css %%PORTDOCS%%%%DOCSDIR%%/subclass.htm %%PORTDOCS%%%%DOCSDIR%%/thirdparty.htm %%DATADIR%%/Resource/CIDFSubst/DroidSansFallback.ttf %%DATADIR%%/Resource/CIDFont/ArtifexBullet %%DATADIR%%/Resource/CMap %%DATADIR%%/Resource/ColorSpace/DefaultCMYK %%DATADIR%%/Resource/ColorSpace/DefaultGray %%DATADIR%%/Resource/ColorSpace/DefaultRGB %%DATADIR%%/Resource/ColorSpace/TrivialCMYK %%DATADIR%%/Resource/ColorSpace/sGray %%DATADIR%%/Resource/ColorSpace/sRGB %%DATADIR%%/Resource/Decoding/FCO_Dingbats %%DATADIR%%/Resource/Decoding/FCO_Symbol %%DATADIR%%/Resource/Decoding/FCO_Unicode %%DATADIR%%/Resource/Decoding/FCO_Wingdings %%DATADIR%%/Resource/Decoding/Latin1 %%DATADIR%%/Resource/Decoding/StandardEncoding %%DATADIR%%/Resource/Decoding/Unicode %%DATADIR%%/Resource/Encoding/CEEncoding %%DATADIR%%/Resource/Encoding/ExpertEncoding %%DATADIR%%/Resource/Encoding/ExpertSubsetEncoding %%DATADIR%%/Resource/Encoding/NotDefEncoding %%DATADIR%%/Resource/Encoding/Wingdings %%DATADIR%%/Resource/Font/C059-BdIta %%DATADIR%%/Resource/Font/C059-Bold %%DATADIR%%/Resource/Font/C059-Italic %%DATADIR%%/Resource/Font/C059-Roman %%DATADIR%%/Resource/Font/D050000L %%DATADIR%%/Resource/Font/NimbusMonoPS-Bold %%DATADIR%%/Resource/Font/NimbusMonoPS-BoldItalic %%DATADIR%%/Resource/Font/NimbusMonoPS-Italic %%DATADIR%%/Resource/Font/NimbusMonoPS-Regular %%DATADIR%%/Resource/Font/NimbusRoman-Bold %%DATADIR%%/Resource/Font/NimbusRoman-BoldItalic %%DATADIR%%/Resource/Font/NimbusRoman-Italic %%DATADIR%%/Resource/Font/NimbusRoman-Regular %%DATADIR%%/Resource/Font/NimbusSans-Bold %%DATADIR%%/Resource/Font/NimbusSans-BoldItalic %%DATADIR%%/Resource/Font/NimbusSans-Italic %%DATADIR%%/Resource/Font/NimbusSans-Regular %%DATADIR%%/Resource/Font/NimbusSansNarrow-Bold %%DATADIR%%/Resource/Font/NimbusSansNarrow-BoldOblique %%DATADIR%%/Resource/Font/NimbusSansNarrow-Oblique %%DATADIR%%/Resource/Font/NimbusSansNarrow-Regular %%DATADIR%%/Resource/Font/P052-Bold %%DATADIR%%/Resource/Font/P052-BoldItalic %%DATADIR%%/Resource/Font/P052-Italic %%DATADIR%%/Resource/Font/P052-Roman %%DATADIR%%/Resource/Font/StandardSymbolsPS %%DATADIR%%/Resource/Font/URWBookman-Demi %%DATADIR%%/Resource/Font/URWBookman-DemiItalic %%DATADIR%%/Resource/Font/URWBookman-Light %%DATADIR%%/Resource/Font/URWBookman-LightItalic %%DATADIR%%/Resource/Font/URWGothic-Book %%DATADIR%%/Resource/Font/URWGothic-BookOblique %%DATADIR%%/Resource/Font/URWGothic-Demi %%DATADIR%%/Resource/Font/URWGothic-DemiOblique %%DATADIR%%/Resource/Font/Z003-MediumItalic %%DATADIR%%/Resource/IdiomSet/Pscript5Idiom %%DATADIR%%/Resource/IdiomSet/PPI_CUtils %%DATADIR%%/Resource/Init/FAPIcidfmap %%DATADIR%%/Resource/Init/FAPIconfig %%DATADIR%%/Resource/Init/FAPIfontmap %%DATADIR%%/Resource/Init/FCOfontmap-PCLPS2 %%DATADIR%%/Resource/Init/Fontmap %%DATADIR%%/Resource/Init/Fontmap.GS %%DATADIR%%/Resource/Init/cidfmap %%DATADIR%%/Resource/Init/gs_agl.ps %%DATADIR%%/Resource/Init/gs_btokn.ps %%DATADIR%%/Resource/Init/gs_cet.ps %%DATADIR%%/Resource/Init/gs_cff.ps %%DATADIR%%/Resource/Init/gs_cidcm.ps %%DATADIR%%/Resource/Init/gs_ciddc.ps %%DATADIR%%/Resource/Init/gs_cidfm.ps %%DATADIR%%/Resource/Init/gs_cidfn.ps %%DATADIR%%/Resource/Init/gs_cidtt.ps %%DATADIR%%/Resource/Init/gs_cmap.ps %%DATADIR%%/Resource/Init/gs_cspace.ps %%DATADIR%%/Resource/Init/gs_dbt_e.ps %%DATADIR%%/Resource/Init/gs_diskn.ps %%DATADIR%%/Resource/Init/gs_dps1.ps %%DATADIR%%/Resource/Init/gs_dps2.ps %%DATADIR%%/Resource/Init/gs_dscp.ps %%DATADIR%%/Resource/Init/gs_epsf.ps %%DATADIR%%/Resource/Init/gs_fapi.ps %%DATADIR%%/Resource/Init/gs_fntem.ps %%DATADIR%%/Resource/Init/gs_fonts.ps %%DATADIR%%/Resource/Init/gs_frsd.ps %%DATADIR%%/Resource/Init/gs_icc.ps %%DATADIR%%/Resource/Init/gs_il1_e.ps %%DATADIR%%/Resource/Init/gs_img.ps %%DATADIR%%/Resource/Init/gs_init.ps %%DATADIR%%/Resource/Init/gs_lev2.ps %%DATADIR%%/Resource/Init/gs_ll3.ps %%DATADIR%%/Resource/Init/gs_mex_e.ps %%DATADIR%%/Resource/Init/gs_mgl_e.ps %%DATADIR%%/Resource/Init/gs_mro_e.ps %%DATADIR%%/Resource/Init/gs_pdf_e.ps %%DATADIR%%/Resource/Init/gs_pdfwr.ps %%DATADIR%%/Resource/Init/gs_res.ps %%DATADIR%%/Resource/Init/gs_resmp.ps %%DATADIR%%/Resource/Init/gs_setpd.ps %%DATADIR%%/Resource/Init/gs_statd.ps %%DATADIR%%/Resource/Init/gs_std_e.ps %%DATADIR%%/Resource/Init/gs_sym_e.ps %%DATADIR%%/Resource/Init/gs_trap.ps %%DATADIR%%/Resource/Init/gs_ttf.ps %%DATADIR%%/Resource/Init/gs_typ32.ps %%DATADIR%%/Resource/Init/gs_typ42.ps %%DATADIR%%/Resource/Init/gs_type1.ps %%DATADIR%%/Resource/Init/gs_wan_e.ps %%DATADIR%%/Resource/Init/pdf_base.ps %%DATADIR%%/Resource/Init/pdf_draw.ps %%DATADIR%%/Resource/Init/pdf_font.ps %%DATADIR%%/Resource/Init/pdf_main.ps %%DATADIR%%/Resource/Init/pdf_ops.ps %%DATADIR%%/Resource/Init/pdf_rbld.ps %%DATADIR%%/Resource/Init/pdf_sec.ps %%DATADIR%%/Resource/Init/xlatmap %%DATADIR%%/Resource/SubstCID/CNS1-WMode %%DATADIR%%/Resource/SubstCID/GB1-WMode %%DATADIR%%/Resource/SubstCID/Japan1-WMode %%DATADIR%%/Resource/SubstCID/Korea1-WMode %%DATADIR%%/doc %%DATADIR%%/iccprofiles %%DATADIR%%/lib/PDFA_def.ps %%DATADIR%%/lib/PDFX_def.ps %%DATADIR%%/lib/PM760p.upp %%DATADIR%%/lib/PM760pl.upp %%DATADIR%%/lib/PM820p.upp %%DATADIR%%/lib/PM820pl.upp %%DATADIR%%/lib/Stc670p.upp %%DATADIR%%/lib/Stc670pl.upp %%DATADIR%%/lib/Stc680p.upp %%DATADIR%%/lib/Stc680pl.upp %%DATADIR%%/lib/Stc740p.upp %%DATADIR%%/lib/Stc740pl.upp %%DATADIR%%/lib/Stc760p.upp %%DATADIR%%/lib/Stc760pl.upp %%DATADIR%%/lib/Stc777p.upp %%DATADIR%%/lib/Stc777pl.upp %%DATADIR%%/lib/Stp720p.upp %%DATADIR%%/lib/Stp720pl.upp %%DATADIR%%/lib/Stp870p.upp %%DATADIR%%/lib/Stp870pl.upp %%DATADIR%%/lib/acctest.ps %%DATADIR%%/lib/align.ps %%DATADIR%%/lib/bj8.rpd %%DATADIR%%/lib/bj8gc12f.upp %%DATADIR%%/lib/bj8hg12f.upp %%DATADIR%%/lib/bj8oh06n.upp %%DATADIR%%/lib/bj8pa06n.upp %%DATADIR%%/lib/bj8pp12f.upp %%DATADIR%%/lib/bj8ts06n.upp %%DATADIR%%/lib/bjc6000a1.upp %%DATADIR%%/lib/bjc6000b1.upp %%DATADIR%%/lib/bjc610a0.upp %%DATADIR%%/lib/bjc610a1.upp %%DATADIR%%/lib/bjc610a2.upp %%DATADIR%%/lib/bjc610a3.upp %%DATADIR%%/lib/bjc610a4.upp %%DATADIR%%/lib/bjc610a5.upp %%DATADIR%%/lib/bjc610a6.upp %%DATADIR%%/lib/bjc610a7.upp %%DATADIR%%/lib/bjc610a8.upp %%DATADIR%%/lib/bjc610b1.upp %%DATADIR%%/lib/bjc610b2.upp %%DATADIR%%/lib/bjc610b3.upp %%DATADIR%%/lib/bjc610b4.upp %%DATADIR%%/lib/bjc610b6.upp %%DATADIR%%/lib/bjc610b7.upp %%DATADIR%%/lib/bjc610b8.upp %%DATADIR%%/lib/caption.ps %%DATADIR%%/lib/cbjc600.ppd %%DATADIR%%/lib/cbjc800.ppd %%DATADIR%%/lib/cdj550.upp %%DATADIR%%/lib/cdj690.upp %%DATADIR%%/lib/cdj690ec.upp %%DATADIR%%/lib/cid2code.ps %%DATADIR%%/lib/dnj750c.upp %%DATADIR%%/lib/dnj750m.upp %%DATADIR%%/lib/docie.ps %%DATADIR%%/lib/font2pcl.ps %%DATADIR%%/lib/ghostpdf.ppd %%DATADIR%%/lib/gs_ce_e.ps %%DATADIR%%/lib/gs_css_e.ps %%DATADIR%%/lib/gs_il2_e.ps %%DATADIR%%/lib/gs_kanji.ps %%DATADIR%%/lib/gs_ksb_e.ps %%DATADIR%%/lib/gs_l.xbm %%DATADIR%%/lib/gs_l.xpm %%DATADIR%%/lib/gs_l_m.xbm %%DATADIR%%/lib/gs_lgo_e.ps %%DATADIR%%/lib/gs_lgx_e.ps %%DATADIR%%/lib/gs_m.xbm %%DATADIR%%/lib/gs_m.xpm %%DATADIR%%/lib/gs_m_m.xbm %%DATADIR%%/lib/gs_s.xbm %%DATADIR%%/lib/gs_s.xpm %%DATADIR%%/lib/gs_s_m.xbm %%DATADIR%%/lib/gs_t.xbm %%DATADIR%%/lib/gs_t.xpm %%DATADIR%%/lib/gs_t_m.xbm %%DATADIR%%/lib/gs_wl1_e.ps %%DATADIR%%/lib/gs_wl2_e.ps %%DATADIR%%/lib/gs_wl5_e.ps %%DATADIR%%/lib/gslp.ps %%DATADIR%%/lib/gsnup.ps %%DATADIR%%/lib/ht_ccsto.ps %%DATADIR%%/lib/image-qa.ps %%DATADIR%%/lib/jispaper.ps %%DATADIR%%/lib/landscap.ps %%DATADIR%%/lib/lines.ps %%DATADIR%%/lib/mkcidfm.ps %%DATADIR%%/lib/necp2x.upp %%DATADIR%%/lib/necp2x6.upp %%DATADIR%%/lib/pdf_info.ps %%DATADIR%%/lib/pdf2dsc.ps %%DATADIR%%/lib/pf2afm.ps %%DATADIR%%/lib/pfbtopfa.ps %%DATADIR%%/lib/ppath.ps %%DATADIR%%/lib/pphs.ps %%DATADIR%%/lib/prfont.ps %%DATADIR%%/lib/printafm.ps %%DATADIR%%/lib/ps2ai.ps %%DATADIR%%/lib/ps2epsi.ps %%DATADIR%%/lib/ras1.upp %%DATADIR%%/lib/ras24.upp %%DATADIR%%/lib/ras3.upp %%DATADIR%%/lib/ras32.upp %%DATADIR%%/lib/ras4.upp %%DATADIR%%/lib/ras8m.upp %%DATADIR%%/lib/rollconv.ps %%DATADIR%%/lib/s400a1.upp %%DATADIR%%/lib/s400b1.upp %%DATADIR%%/lib/sharp.upp %%DATADIR%%/lib/sipixa6.upp %%DATADIR%%/lib/st640ih.upp %%DATADIR%%/lib/st640ihg.upp %%DATADIR%%/lib/st640p.upp %%DATADIR%%/lib/st640pg.upp %%DATADIR%%/lib/st640pl.upp %%DATADIR%%/lib/st640plg.upp %%DATADIR%%/lib/stc.upp %%DATADIR%%/lib/stc1520h.upp %%DATADIR%%/lib/stc2.upp %%DATADIR%%/lib/stc200_h.upp %%DATADIR%%/lib/stc2_h.upp %%DATADIR%%/lib/stc2s_h.upp %%DATADIR%%/lib/stc300.upp %%DATADIR%%/lib/stc300bl.upp %%DATADIR%%/lib/stc300bm.upp %%DATADIR%%/lib/stc500p.upp %%DATADIR%%/lib/stc500ph.upp %%DATADIR%%/lib/stc600ih.upp %%DATADIR%%/lib/stc600p.upp %%DATADIR%%/lib/stc600pl.upp %%DATADIR%%/lib/stc640p.upp %%DATADIR%%/lib/stc740ih.upp %%DATADIR%%/lib/stc800ih.upp %%DATADIR%%/lib/stc800p.upp %%DATADIR%%/lib/stc800pl.upp %%DATADIR%%/lib/stc_h.upp %%DATADIR%%/lib/stc_l.upp %%DATADIR%%/lib/stcany.upp %%DATADIR%%/lib/stcany_h.upp %%DATADIR%%/lib/stcinfo.ps %%DATADIR%%/lib/stcolor.ps %%DATADIR%%/lib/stocht.ps %%DATADIR%%/lib/traceimg.ps %%DATADIR%%/lib/traceop.ps %%DATADIR%%/lib/uninfo.ps %%DATADIR%%/lib/viewcmyk.ps %%DATADIR%%/lib/viewgif.ps %%DATADIR%%/lib/viewjpeg.ps %%DATADIR%%/lib/viewmiff.ps %%DATADIR%%/lib/viewpbm.ps %%DATADIR%%/lib/viewpcx.ps %%DATADIR%%/lib/viewps2a.ps %%DATADIR%%/lib/winmaps.ps %%DATADIR%%/lib/zeroline.ps @dir lib/ghostscript/%%PORTVERSION%% diff --git a/print/ghostscript9-agpl-x11/Makefile b/print/ghostscript9-agpl-x11/Makefile index aa38239f2fe2..acc64206ffc8 100644 --- a/print/ghostscript9-agpl-x11/Makefile +++ b/print/ghostscript9-agpl-x11/Makefile @@ -1,71 +1,71 @@ PORTNAME= ghostscript -PORTVERSION= 9.55.0 +PORTVERSION= 9.56.1 CATEGORIES= print MASTER_SITES= https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PORTVERSION:S/.//g}/ PKGNAMESUFFIX= 9-agpl-x11 MAINTAINER= hrs@FreeBSD.org COMMENT= PostScript and PDF interpreter, X11 support LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= jbig2dec>=0.17:graphics/jbig2dec LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libidn.so:dns/libidn \ libjbig2dec.so:graphics/jbig2dec \ libopenjp2.so:graphics/openjpeg \ libpaper.so:print/libpaper \ libpng.so:graphics/png \ libtiff.so:graphics/tiff RUN_DEPENDS= ghostscript9-agpl-base>=${PORTVERSION}:print/ghostscript9-agpl-base USES= cpe gmake iconv localbase pkgconfig tar:xz xorg USE_LDCONFIG= yes USE_XORG= ice sm x11 xext xt CONFLICTS_INSTALL= \ ghostscript[789] \ ghostscript[789]-nox11 \ ghostscript9-agpl \ ghostscript9-agpl-nox11 DISTINFO_FILE= ${.CURDIR:H}/ghostscript9-agpl-base/distinfo PATCHDIR= ${.CURDIR:H}/ghostscript9-agpl-base/files CPE_VENDOR= artifex EXTRACT_AFTER_ARGS= \ --exclude freetype \ --exclude ijs \ --exclude jbig2dec \ --exclude jpeg \ --exclude libpng \ --exclude openjpeg \ --exclude zlib GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-compile-inits \ --disable-cups \ --disable-dbus \ --disable-gtk \ --disable-openjpeg \ --enable-contrib \ --enable-dynamic \ --enable-fontconfig \ --enable-freetype \ --enable-openjpeg \ --with-drivers=ALL \ --with-fontpath=${LOCALBASE}/share/fonts \ --with-jbig2dec \ --with-libiconv=maybe \ --with-libidn \ --with-libpaper \ --with-system-libtiff \ --with-x \ --without-ijs ALL_TARGET= ./obj/X11.so INSTALL_TARGET= install-shared PLIST_FILES= lib/${PORTNAME}/${PORTVERSION}/X11.so post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/X11.so .include