pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/print/ghostscript (1) Bump version 8.71 to 9.05 (impor...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5842602b7a76
branches:  trunk
changeset: 609615:5842602b7a76
user:      mef <mef%pkgsrc.org@localhost>
date:      Sun Oct 07 14:19:18 2012 +0000

description:
(1) Bump version 8.71 to 9.05 (importing from wip/ghostscript).
  For the Changes: See
    share/ghostscript/9.05/doc/History9.htm
  Or
    work/ghostscript-9.05/doc/History9.htm
  Upstream releases and their date are:
        Version 9.05 (2012-02-08)
        Version 9.04 (2011-08-05)
        Version 9.02 (2011-03-30)
        Version 9.01 (2011-02-07)
        Version 9.00 (2010-09-14)

(2) Resolve pkg PR/44400.
options.mk:
  - Have new option disable-compile-inits
Makefile
  - rename cidfmap to cidfmap-dist (post-extract:)

(3) Have new file Makefile.common to share with
    fonts/ghostscript-cidfonts
    fonts/ghostscript-cidfonts-ryumin
  to set ${GS_VERSION}, and then ${GS_RESOURCEDIR}.

(4) options.mk
 - Add new options,
   disable-compile-inits
 - Add following line for non X11 installation
   CONFIGURE_ARGS+=       --disable-freetype
 - Name change
   pstorater.convs -> gstoraster.convs

(5) PLIST
  So many changes, but just a note:
  -share/ghostscript/${PKGVERSION}/doc/README
   share/ghostscript/${PKGVERSION}/doc/Readme.htm

(6)
patches directory:
Removed, for upstream included.
------
patch-aa   9.00 base/gsnogc.c
patch-ab   9.05 base/unixinst.mak
patch-ac   9.00 ase/gdevpx.c
patch-ad   9.04 lib/pv.sh
patch-ae   9.00 psi/zfile.c
patch-ag   9.00 cups/cups.mak

patch-ak   9.04 ->  a part left in patch-base_gdevpng.c
patch-am   9.00 lib/pdf2dsc.ps

patch-ba   9.00 psi/idosave.h
patch-bb   9.00 psi/isave.c     (CVS-2010-1628)
patch-bc   9.00 psi/ialloc.c    (CVS-2010-1628)

patch-bd   9.00 (1) bug #691029 and #691108
           9.00 (2) arrayoption() macro
           9.00 (3) silence compiler warning

Modified, or unchanged
------
patch-af  (Add comments from former commit log, and adjust)
patch-ah  (Add comments from former commit log, and adjust)
patch-ai  (Add comments from former commit log, and adjust)
patch-aj  (unchanged)
patch-al  (unchanged)
patch-an  (Add comments from former commit log, and adjust)

Added
--------
patch-base_gdevpng.c    (a part of previous patch-ak)
patch-base_gserrors_h   (silence compile warning)
patch-configure.ac      (For just a record, see patch-ah (configure))
patch-freetype_include_freetype_internal_t1types_h (To avoid redifintion of T1_EncodingType_ )
patch-openjpeg_libopenjpeg_opj_malloc_h (To avoid undefined ref. to memalign)

OK'ed by wiz@, thanks a lot.

diffstat:

 print/ghostscript/Makefile                                                   |   27 +-
 print/ghostscript/PLIST                                                      |  691 ++++-----
 print/ghostscript/distinfo                                                   |   35 +-
 print/ghostscript/options.mk                                                 |   20 +-
 print/ghostscript/patches/patch-CVE-2012-4405                                |   14 +-
 print/ghostscript/patches/patch-af                                           |   46 +-
 print/ghostscript/patches/patch-ah                                           |   76 +-
 print/ghostscript/patches/patch-ai                                           |   12 +-
 print/ghostscript/patches/patch-an                                           |   24 +-
 print/ghostscript/patches/patch-base_gdevpng.c                               |   25 +
 print/ghostscript/patches/patch-base_gserrors_h                              |   15 +
 print/ghostscript/patches/patch-configure.ac                                 |   15 +
 print/ghostscript/patches/patch-freetype_include_freetype_internal_t1types_h |   26 +
 print/ghostscript/patches/patch-openjpeg_libopenjpeg_opj_malloc_h            |   19 +
 14 files changed, 531 insertions(+), 514 deletions(-)

diffs (truncated from 1324 to 300 lines):

diff -r 71fa3335ae8a -r 5842602b7a76 print/ghostscript/Makefile
--- a/print/ghostscript/Makefile        Sun Oct 07 12:31:13 2012 +0000
+++ b/print/ghostscript/Makefile        Sun Oct 07 14:19:18 2012 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.88 2012/10/03 21:57:17 wiz Exp $
+# $NetBSD: Makefile,v 1.89 2012/10/07 14:19:18 mef Exp $
 
-DISTNAME=      ghostscript-8.71
-PKGREVISION=   11
+DISTNAME=      ghostscript-${GS_VERSION}
 CATEGORIES=    print
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=ghostscript/}
 MASTER_SITES+= http://ghostscript.com/releases/
+EXTRACT_SUFX=  .tar.bz2
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://ghostscript.sourceforge.net/
@@ -13,15 +13,16 @@
 # Plus adobe verbatim for Resources/CMap.
 LICENSE=       gnu-gpl-v3
 
+.include       "Makefile.common"
+
 DEPENDS+=              ghostscript-fonts>=6.0:../../fonts/ghostscript-fonts
 
 CONFLICTS+=            ghostscript-afpl-[0-9]*
 CONFLICTS+=            ghostscript-esp{,-nox11}-[0-9]*
 CONFLICTS+=            ghostscript-gnu{,-nox11,-x11}-[0-9]*
 
-PKG_DESTDIR_SUPPORT=   user-destdir
-
 USE_TOOLS+=            gmake perl:run lex pkg-config
+USE_LANGUAGES+=                c c++
 GNU_CONFIGURE=         yes
 UNLIMIT_RESOURCES+=    datasize        # gsromfs1.c
 
@@ -32,6 +33,8 @@
 REPLACE_PERL+=         lib/fixmswrd.pl
 
 GS_RESOURCEDIR=                ${PREFIX}/share/ghostscript/${PKGVERSION}/Resource
+# MESSAGE file substitution
+MESSAGE_SUBST+=                GS_RESOURCEDIR=${GS_RESOURCEDIR}
 
 # XXX make sure the local jpeg headers are found before those pulled
 # in indirectly by cups bl3
@@ -69,21 +72,27 @@
 BUILDLINK_TRANSFORM+=  l:fontconfig:fontconfig:iconv
 .endif
 
-CONFIGURE_ENV+=        LPLIBDIR=${LOCALBASE}/lib
+CONFIGURE_ENV+=        LPLIBDIR=${PREFIX}/lib
+
+.include "options.mk"
 
 post-extract:
        ${MKDIR} ${WRKSRC}/bin
        ${MKDIR} ${WRKSRC}/obj
 #      ${RM} -rf ${WRKSRC}/jasper
        ${RM} -rf ${WRKSRC}/libpng
-       ${RM} -rf ${WRKSRC}/tiff
+#      ${RM} -rf ${WRKSRC}/tiff
 #      ${RM} -rf ${WRKSRC}/zlib
+#
+#  To allow outside customization, rename cidfmap
+#       (if you look at inside of the file, it is logically empty)
+.if !empty(PKG_OPTIONS:Mdisable-compile-inits)
+       (cd  ${WRKSRC}/Resource/Init/; ${MV} cidfmap cidfmap.dist)
+.endif
 
 post-install:
        ${LN} -sf gsc ${DESTDIR}${PREFIX}/bin/gs
 
-.include "options.mk"
-
 .include "../../print/libpaper/buildlink3.mk"
 .include "../../graphics/png/buildlink3.mk"
 .include "../../graphics/tiff/buildlink3.mk"
diff -r 71fa3335ae8a -r 5842602b7a76 print/ghostscript/PLIST
--- a/print/ghostscript/PLIST   Sun Oct 07 12:31:13 2012 +0000
+++ b/print/ghostscript/PLIST   Sun Oct 07 14:19:18 2012 +0000
@@ -1,9 +1,7 @@
-@comment $NetBSD: PLIST,v 1.16 2010/02/23 20:31:26 drochner Exp $
-bin/bdftops
+@comment $NetBSD: PLIST,v 1.17 2012/10/07 14:19:18 mef Exp $
 bin/dumphint
 bin/dvipdf
 bin/eps2eps
-bin/fixmswrd.pl
 bin/font2c
 bin/gs
 bin/gsbj
@@ -20,6 +18,7 @@
 bin/pdfopt
 bin/pf2afm
 bin/pfbtopfa
+bin/pphs
 bin/printafm
 bin/ps2ascii
 bin/ps2epsi
@@ -30,18 +29,16 @@
 bin/ps2pdfwr
 bin/ps2ps
 bin/ps2ps2
-bin/pv.sh
 bin/unix-lpr.sh
 bin/wftopfa
 include/ghostscript/gdevdsp.h
 include/ghostscript/iapi.h
 include/ghostscript/ierrors.h
 lib/libgs.so
-lib/libgs.so.8
+lib/libgs.so.9
 lib/libgs.so.${PKGVERSION}
-${PLIST.cups}libexec/cups/filter/pdftoraster
-${PLIST.cups}libexec/cups/filter/pstopxl
-${PLIST.cups}libexec/cups/filter/pstoraster
+${PLIST.cups}libexec/cups/filter/gstopxl
+${PLIST.cups}libexec/cups/filter/gstoraster
 man/de/man1/dvipdf.1
 man/de/man1/eps2eps.1
 man/de/man1/font2c.1
@@ -54,6 +51,7 @@
 man/de/man1/ps2pdf.1
 man/de/man1/ps2pdf12.1
 man/de/man1/ps2pdf13.1
+man/de/man1/ps2pdf14.1
 man/de/man1/ps2ps.1
 man/de/man1/wftopfa.1
 man/man1/dvipdf.1
@@ -77,371 +75,301 @@
 man/man1/ps2pdf.1
 man/man1/ps2pdf12.1
 man/man1/ps2pdf13.1
+man/man1/ps2pdf14.1
 man/man1/ps2pdfwr.1
 man/man1/ps2ps.1
 man/man1/wftopfa.1
 ${PLIST.cups}share/cups/model/pxlcolor.ppd
 ${PLIST.cups}share/cups/model/pxlmono.ppd
-${PLIST.cups}share/examples/cups/pdftoraster.convs
-${PLIST.cups}share/examples/cups/pstoraster.convs
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/78-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/78ms-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/78ms-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/83pv-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/90ms-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/90ms-RKSJ-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/90ms-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/90msp-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/90msp-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/90pv-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/90pv-RKSJ-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/90pv-RKSJ-UCS2C
-share/ghostscript/${PKGVERSION}/Resource/CMap/90pv-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Add-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Add-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Add-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Add-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-0
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-1
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-3
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-4
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-5
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-6
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-B5pc
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-ETenms-B5
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-H-CID
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-H-Host
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-H-Mac
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-CNS1-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-0
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-1
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-3
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-4
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-5
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-GBK-EUC
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-GBpc-EUC
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-H-CID
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-H-Host
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-H-Mac
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-GB1-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-0
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-1
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-3
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-4
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-5
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-6
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-90ms-RKSJ
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-90pv-RKSJ
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-H-CID
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-H-Host
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-H-Mac
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-PS-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-PS-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan1-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Japan2-0
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-0
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-1
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-2
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-H-CID
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-H-Host
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-H-Mac
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-KSCms-UHC
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-KSCpc-EUC
-share/ghostscript/${PKGVERSION}/Resource/CMap/Adobe-Korea1-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5pc-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5pc-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5pc-UCS2C
-share/ghostscript/${PKGVERSION}/Resource/CMap/B5pc-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS01-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS02-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS03-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS04-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS05-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS06-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS07-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS1-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS1-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS15-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS2-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/CNS2-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETHK-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETHK-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETen-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETen-B5-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETen-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETenms-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/ETenms-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Ext-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Ext-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Ext-RKSJ-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Ext-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GB-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GB-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GB-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GB-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GB-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBK-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBK-EUC-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBK-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBK2K-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBK2K-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBKp-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBKp-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBT-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBT-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBT-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBT-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBT-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBTpc-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBTpc-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBpc-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBpc-EUC-UCS2
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBpc-EUC-UCS2C
-share/ghostscript/${PKGVERSION}/Resource/CMap/GBpc-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HK-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKdla-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKdla-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKdlb-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKdlb-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKgccs-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKgccs-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKm314-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKm314-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKm471-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKm471-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKscs-B5-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/HKscs-B5-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hankaku
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hiragana
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hojo-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hojo-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hojo-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hojo-RKSJ-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Hojo-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Identity-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Identity-UTF16-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/Identity-UTF16-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/Identity-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-EUC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-EUC-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-Johab-H
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-Johab-V
-share/ghostscript/${PKGVERSION}/Resource/CMap/KSC-RKSJ-H



Home | Main Index | Thread Index | Old Index