ghostscript-vl.spec 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  1. %bcond_with versioned_dir
  2. %if %{with versioned_dir}
  3. %global gsdatadir %{_datadir}/%{name}/%{version}
  4. %global gslibdir %{_libdir}/%{name}/%{version}
  5. %global gsconfdir %{_sysconfdir}/%{name}/%{version}
  6. %else
  7. %global gsdatadir %{_datadir}/%{name}
  8. %global gslibdir %{_libdir}/%{name}
  9. %global gsconfdir %{_sysconfdir}/%{name}
  10. %endif
  11. Summary: A PostScript(TM) interpreter and renderer.
  12. Summary(ja): 日本語 PostScript(TM) インタプリタ/レンダラ/ビュア
  13. Name: ghostscript
  14. Version: 9.56.1
  15. Release: 1%{?_dist_release}
  16. Group: publishing
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: daisuke
  20. # Included CMap data is Redistributable, no modification permitted,
  21. # see http://bugzilla.redhat.com/487510
  22. License: AGPLv3+ and Redistributable, no modification permitted
  23. URL: https://www.ghostscript.com/
  24. %define shortver %(echo %{version} | sed -e "s/\\.//g")
  25. Source0: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs%{shortver}/ghostscript-%{version}.tar.xz
  26. # ghostscript contains code we cannot ship due to licensing concerns.
  27. # Therefore we use this script to remove it before shipping the
  28. # tarball.
  29. # Download the upstream tarball and invoke this script while in the
  30. # tarball's directory:
  31. # ... this script is not needed now
  32. Source1: generate-tarball.sh
  33. Source2: CIDFnmap
  34. Source4: cidfmap
  35. Source5: cidfmap.ja
  36. Source10: Changelog.gs7.vine
  37. # patches from upstream
  38. # patches from fedora
  39. # security patches
  40. # Vine patch(es)
  41. Patch1000: runlibfileifexists.patch
  42. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  43. BuildRequires: xz
  44. BuildRequires: libjpeg-devel, libXt-devel
  45. BuildRequires: zlib-devel, libpng-devel, unzip, gtk3-devel
  46. BuildRequires: glib2-devel, gnutls-devel
  47. # Omni requires libxml
  48. BuildRequires: libxml2-devel
  49. BuildRequires: libtiff-devel
  50. BuildRequires: cups-devel >= 1.1.13
  51. BuildRequires: libtool
  52. #BuildRequires: jasper-devel
  53. BuildRequires: dbus-devel
  54. BuildRequires: poppler-data
  55. BuildRequires: lcms2-devel
  56. BuildRequires: openjpeg2-devel
  57. BuildRequires: freetype2-devel
  58. BuildRequires: fontconfig-devel
  59. Requires: urw-fonts
  60. Requires: ghostscript-fonts
  61. Requires: poppler-data
  62. Obsoletes: hpijs <= 1.7.1-2vl5
  63. #Provides: hpijs
  64. Obsoletes: ghostscript-shared < 8.0
  65. Provides: ghostscript-shared = %{version}-%{release}
  66. Conflicts: cups < 1.3.9-1
  67. %description
  68. Ghostscript is a set of software that provides a PostScript(TM)
  69. interpreter, a set of C procedures (the Ghostscript library, which
  70. implements the graphics capabilities in the PostScript language) and
  71. an interpreter for Portable Document Format (PDF) files. Ghostscript
  72. translates PostScript code into many common, bitmapped formats, like
  73. those understood by your printer or screen. Ghostscript is normally
  74. used to display PostScript files and to print PostScript files to
  75. non-PostScript printers.
  76. If you need to display PostScript files or print them to
  77. non-PostScript printers, you should install ghostscript. If you
  78. install ghostscript, you also need to install the ghostscript-fonts
  79. package.
  80. %description -l ja
  81. Ghostscript は PostScript(TM)interpreterやC procedure (PostScript言語の中で
  82. graphic機能を実装した Ghostscript ライブラリ)や Portable Document Format
  83. (PDF)ファイルの interpreter などのソフトウェア集です。
  84. Ghostscript は PostScript コードをお使いのプリンターやスクリーンが理解できる
  85. 多くの一般的な bitmap 形式のフォーマットに変換します。
  86. Ghostscript は一般的に PostScript ファイルを表示させたり、非 PostScript
  87. プリンターに PostScript ファイルを印刷する場合に使用します。
  88. もしもあなたが、PostScript ファイルを表示させたり、非 PostScript プリンターに
  89. PostScript ファイルを印刷するのであれば、ghostscript をインストールするべきです。
  90. もしもあなたが ghostscript をインストールするならば、ghostscript-fonts
  91. パッケージも必要です。
  92. %package devel
  93. Summary: Files for developing applications that use ghostscript.
  94. Summary(ja): ghostscript を使うアプリケーションを開発するためのファイル
  95. Group: programming
  96. Requires: %{name} = %{version}-%{release}
  97. Obsoletes: hpijs <= 1.7.1-2vl5
  98. %description devel
  99. The header files for developing applications that use ghostscript.
  100. %description devel -l ja
  101. ghostscript を使うアプリケーションを開発するためのヘッダファイル
  102. %package doc
  103. Summary: Documentation for ghostscript.
  104. Summary(ja): ghostscript のドキュメント
  105. Group: documentation
  106. Requires: %{name} = %{version}-%{release}
  107. %description doc
  108. The documentation files that come with ghostscript.
  109. %package gtk
  110. Summary: A GTK-enabled PostScript(TM) interpreter and renderer.
  111. Summary(ja): GTK+ 版の PostScript(TM) インタプリタ/レンダラ
  112. Group: publishing
  113. Requires: %{name} = %{version}-%{release}
  114. %description gtk
  115. A GTK-enabled version of Ghostscript, called 'gsx'.
  116. %debug_package
  117. %prep
  118. %setup -q -n %{name}-%{version}
  119. rm -rf cups/libs expat freetype jasper jpeg jpegxr lcms2* libpng openjpeg tiff windows zlib
  120. # fix a typo
  121. sed -i 's/gscms_transformm_color_const/gscms_transform_color_const/' base/gsicc_lcms2.c
  122. %patch1000 -p1
  123. %build
  124. # Compile without strict aliasing opts due to these files:
  125. # gdevescv.c gdevl4v.c gdevopvp.c gdevbbox.c gdevdbit.c gdevddrw.c
  126. # gdevp14.c gdevpdfd.c gdevpdfi.c gdevpdfo.c gdevpdft.c gdevpdfv.c
  127. # gdevpdte.c gdevpdtt.c gdevps.c gdevpx.c gscoord.c gscparam.c gscrd.c
  128. # gsdps1.c gsimage.c gspath1.c gsptype1.c gsptype2.c gstype2.c
  129. # gstype42.c gxccache.c gxchar.c gxclimag.c gxclpath.c gxfcopy.c
  130. # gximag3x.c gximage3.c gxipixel.c gxshade1.c gxstroke.c gxtype1.c
  131. # ibnum.c iscanbin.c zchar1.c zchar.c zcharx.c zfapi.c zfont32.c
  132. # zfunc0.c zfunc3.c zfunc4.c zpcolor.c zshade.c
  133. EXTRACFLAGS="-fno-strict-aliasing"
  134. FONTPATH=
  135. for path in \
  136. %{_datadir}/fonts/default/%{name} \
  137. %{_datadir}/fonts/default/Type1 \
  138. %{_datadir}/fonts/default/amspsfnt/pfb \
  139. %{_datadir}/fonts/default/cmpsfont/pfb \
  140. %{_datadir}/fonts \
  141. %{_datadir}/%{name}/conf.d \
  142. %{_sysconfdir}/%{name} \
  143. %if %{with versioned_dir}
  144. %{_sysconfdir}/%{name}/%{version} \
  145. %endif
  146. ;
  147. do
  148. FONTPATH="$FONTPATH${FONTPATH:+:}$path"
  149. done
  150. autoconf --force
  151. export CFLAGS="%{optflags} $CFLAGS $EXTRACFLAGS"
  152. %configure \
  153. --enable-dynamic \
  154. --disable-compile-inits \
  155. %if !%{with versioned_dir}
  156. --without-versioned-path \
  157. %endif
  158. --with-fontpath="$FONTPATH" \
  159. --with-ijs \
  160. --with-drivers=ALL \
  161. --with-system-libtiff \
  162. --with-install-cups
  163. # Build IJS
  164. cd ijs
  165. ./autogen.sh
  166. %configure --enable-shared --enable-static
  167. make %{?_smp_mflags}
  168. cd ..
  169. FT_CFLAGS=$(pkg-config --cflags freetype2)
  170. make %{?_smp_mflags} so \
  171. RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \
  172. FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype
  173. #make %{?_smp_mflags} \
  174. # RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \
  175. # FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype
  176. make cups
  177. %install
  178. rm -rf %{buildroot}
  179. mkdir -p %{buildroot}
  180. mkdir -p %{buildroot}/{%{_mandir},%{_bindir},%{_datadir},%{_docdir}}
  181. mkdir -p %{buildroot}/{%{_libdir},%{_includedir}/ijs}
  182. make install soinstall \
  183. prefix=%{buildroot}%{_prefix} \
  184. mandir=%{buildroot}%{_mandir} \
  185. datadir=%{buildroot}%{_datadir} \
  186. gsincludedir=%{buildroot}%{_includedir}/ghostscript/ \
  187. bindir=%{buildroot}%{_bindir} \
  188. libdir=%{buildroot}%{_libdir} \
  189. docdir=%{buildroot}%{_docdir}/%{name}-%{version} \
  190. gsdir=%{buildroot}%{_datadir}/%{name} \
  191. gsdatadir=%{buildroot}%{gsdatadir} \
  192. gssharedir=%{buildroot}%{gslibdir} \
  193. CUPSSERVERROOT=%{buildroot}`cups-config --serverroot` \
  194. CUPSSERVERBIN=%{buildroot}`cups-config --serverbin` \
  195. CUPSDATA=%{buildroot}`cups-config --datadir`
  196. mv -f %{buildroot}%{_bindir}/gsc %{buildroot}%{_bindir}/gs
  197. cd ijs
  198. %makeinstall
  199. cd ..
  200. echo ".so man1/gs.1" > %{buildroot}/%{_mandir}/man1/ghostscript.1
  201. ln -sf gs %{buildroot}/usr/bin/ghostscript
  202. # Rename an original cidfmap to cidfmap.GS
  203. mv %{buildroot}%{gsdatadir}/Resource/Init/cidfmap{,.GS}
  204. # Install our own cidfmap to allow the separated
  205. # cidfmap which the font packages own.
  206. #install -m0644 %{SOURCE2} %{buildroot}%{gsdatadir}/Resource/Init/CIDFnmap
  207. install -m0644 %{SOURCE4} %{buildroot}%{gsdatadir}/Resource/Init/cidfmap
  208. # cidfmap.ja
  209. mkdir -p %{buildroot}%{_datadir}/%{name}/conf.d
  210. install -m644 %{SOURCE5} %{buildroot}%{_datadir}/%{name}/conf.d/
  211. # Documentation
  212. install -m0644 doc/COPYING %{buildroot}%{_docdir}/%{name}-%{version}
  213. # Don't ship .la files
  214. rm -f %{buildroot}%{_libdir}/*.la
  215. # Don't ship .a files
  216. rm -f %{buildroot}%{_libdir}/*.a
  217. # Don't ship ijs example client or server
  218. rm -f %{buildroot}%{_bindir}/ijs_{client,server}_example
  219. # Don't ship URW fonts; we already have them.
  220. #rm -rf %{buildroot}%{gsdatadir}/Resource/Font
  221. # cjk examples
  222. mkdir -p %{buildroot}%{gsdatadir}/examples/cjk
  223. install -m0644 examples/cjk/* %{buildroot}%{gsdatadir}/examples/cjk/
  224. %if %{with versioned_dir}
  225. # Don't ship two copies of Resource. Just the versioned one will do.
  226. rm -rf %{buildroot}%{_datadir}/ghostscript/Resource
  227. %endif
  228. mkdir -p %{buildroot}%{gsconfdir}
  229. touch %{buildroot}%{gsconfdir}/Fontmap.local
  230. touch %{buildroot}%{gsconfdir}/cidfmap.local
  231. # vine's historical changelog
  232. install -m644 %{SOURCE10} %{buildroot}%{_docdir}/%{name}-%{version}
  233. # The man/de/man1 symlinks are broken (bug #66238).
  234. find %{buildroot}%{_mandir}/de/man1 -type l | xargs rm -f
  235. # Don't ship fixmswrd.pl as it pulls in perl (bug #463948).
  236. rm -f %{buildroot}%{_bindir}/fixmswrd.pl
  237. # Don't ship CMaps (instead poppler-data paths are in search path).
  238. rm -f %{buildroot}%{gsdatadir}/Resource/CMap/*
  239. rm -f %{buildroot}%{gsdatadir}/Resource/Init/gs_init.ps.orig
  240. rm -f %{buildroot}%{gsdatadir}/Resource/Init/gs_fonts.ps.orig
  241. MAIN_PWD=`pwd`
  242. (cd %{buildroot}; find .%{gsdatadir}/Resource -type f | \
  243. sed -e 's/\.//;' | grep -v Fontmap | grep -v gs_init.ps > $MAIN_PWD/rpm.sharelist
  244. find .%{_bindir}/ | sed -e 's/\.//;' | \
  245. grep -v '/$\|/hpijs$\|/gsx$\|/ijs-config$' \
  246. >> $MAIN_PWD/rpm.sharelist)
  247. %clean
  248. rm -rf %{buildroot}
  249. %post
  250. if [ -d /usr/share/ghostscript/Resource/CMap -a ! -e Adobe-Japan1-0 ]; then
  251. cd /usr/share/ghostscript/Resource/CMap
  252. find ../../../poppler/cMap/ -type f | while read f;do
  253. ln -sf $f ./
  254. done
  255. fi
  256. %triggerin -- poppler-data
  257. if [ -d /usr/share/ghostscript/Resource/CMap ]; then
  258. cd /usr/share/ghostscript/Resource/CMap
  259. rm -f ./*
  260. find ../../../poppler/cMap/ -type f | while read f;do
  261. ln -sf $f ./
  262. done
  263. fi
  264. %files -f rpm.sharelist
  265. %defattr(-,root,root)
  266. %if %{with versioned_dir}
  267. %dir %{_sysconfdir}/ghostscript
  268. %dir %{_datadir}/ghostscript
  269. %endif
  270. %dir %{gsconfdir}
  271. %config(noreplace) %{gsconfdir}/*
  272. %dir %{gsdatadir}
  273. %dir %{gsdatadir}/Resource
  274. %dir %{gsdatadir}/Resource/*
  275. %dir %{_datadir}/ghostscript/conf.d
  276. %config %{gsdatadir}/Resource/Init/gs_init.ps
  277. %config %{gsdatadir}/Resource/Init/Fontmap*
  278. %config %{_datadir}/ghostscript/conf.d/cidfmap.ja
  279. %exclude %{gsdatadir}/Resource/Font/URW*
  280. %{gsdatadir}/examples
  281. %{gsdatadir}/lib
  282. %{gsdatadir}/iccprofiles
  283. %{_mandir}/man*/*
  284. %lang(de) %{_mandir}/de/man*/*
  285. %{_libdir}/libgs.so.*
  286. %{_libdir}/libijs-*.so*
  287. %dir %{_libdir}/%{name}
  288. %{_libdir}/%{name}/*
  289. %files doc
  290. %defattr(-,root,root)
  291. %doc %{_docdir}/%{name}-%{version}
  292. %files gtk
  293. %defattr(-,root,root)
  294. %{_bindir}/gsx
  295. %files devel
  296. %defattr(-,root,root)
  297. %dir %{_includedir}/ghostscript
  298. %{_includedir}/ghostscript/*.h
  299. %dir %{_includedir}/ijs
  300. %{_includedir}/ijs/*
  301. %{_libdir}/pkgconfig/ijs.pc
  302. %{_libdir}/libijs.so
  303. %{_libdir}/libgs.so
  304. %changelog
  305. * Fri May 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.56.1-1
  306. - new upstream release.
  307. * Thu Jan 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.55.0-1
  308. - new upstream release.
  309. - dropped ldconfig scriptlets.
  310. * Wed Apr 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.54.0-1
  311. - new upstream release.
  312. - dropped Patch001 and 002: fixed in upstream.
  313. * Tue Dec 29 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.53.3-1
  314. - new upstream release.
  315. - dropped Patch100.
  316. - imported Patch001 and 002 from rawhide.
  317. * Fri Sep 11 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.53.0-1
  318. - new upstream release.
  319. - dropped Patch000: fixed in upstream.
  320. * Mon May 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.52-1
  321. - new upstream release.
  322. - dropped security patches: fixed in upstream.
  323. - imported Patch000 from upstream.
  324. - updated Patch100.
  325. - new scheme of cidfmap.
  326. * Thu Nov 28 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.27-3
  327. - added Patch004 to fix CVE-2019-14869.
  328. * Sun Sep 08 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.27-2
  329. - added missing fonts.
  330. * Fri Sep 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.27-1
  331. - new upstream release.
  332. - dropped all patches.
  333. - imported Patch001 and 100 from rawhide.
  334. - imported Patch002 and 003 from upstream.
  335. - added Patch1000.
  336. * Mon May 8 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.20-1
  337. - new upstream release.
  338. - dropped all patches.
  339. - imported patches from rawhide.
  340. * Sun Aug 2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.15-2
  341. - added patch1000 to fix CVE-2015-3228.
  342. * Wed Dec 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.15-1
  343. - new upstream release.
  344. - imported patches from RawHide.
  345. * Thu Sep 20 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.71-6
  346. - add patch3000 for fix CVE-2012-4405 (icc)
  347. - add Vendor/Distri tags
  348. - use smp_flag when make
  349. * Sat Apr 28 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.71-5
  350. - added Patch2000 (to fix cups-raster driver).
  351. * Thu Feb 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-4
  352. - re-enable cups filter (pstoraster)
  353. * Sun Apr 03 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-3
  354. - rebuild with krb5-1.8.2
  355. - add BR: krb5-devel
  356. - add BR: libpaper-devel
  357. * Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-2
  358. - add Patch20 to fix build of the "gs" executables.
  359. (import from debian package)
  360. - /usr/bin/gs was built as a shared library not as an executable.
  361. * Thu Feb 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-1
  362. - update to 8.71
  363. - remove BC: libpaper-devel
  364. - drop obsolete patches
  365. - add --with-system-libtiff
  366. * Fri Jan 8 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.64-4
  367. - add patch12,13 for fix CVE-2009-4270 (debugging output)
  368. * Thu Jul 23 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 8.64-3
  369. - drop Provides: hpijs (should be provided by other package)
  370. - add BuildConflicts: libpaper-devel
  371. * Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.64-2
  372. - add %%{_libdir}/cups to %%files instead of /usr/lib/cups
  373. * Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.64-1
  374. - new upstream release
  375. - remove cjkv patch (merged in upstream)
  376. - add Patch8: fix bitcmyk driver
  377. - add Patch9: fix CVE-2009-0583, CVE-2009-0584
  378. - add Patch10: fix CVE-2009-0792
  379. - add Patch11: fix CVE-2009-0196
  380. * Sun Jan 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-6
  381. - add Patch200 to use NeverEmbeddedFontList/AlwaysEmbeddedFontList
  382. * Tue Jan 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-5
  383. - add hanamin entry to cidfmap.ja
  384. - add patch1000 to fix eplaser driver bug
  385. * Fri Oct 31 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-4
  386. - add Patch100,101 to fix cjk vertical writing
  387. - remove CIDFnmap
  388. * Thu Oct 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-3
  389. - remove libijs.la
  390. - fix broken charactor in changelog.
  391. * Wed Oct 29 2008 Shu KONNO <owa@bg.wakwak.com> 8.63-2
  392. - s^/usr/lib/cups/filter^%%{_libdir}/cups/filter^ at %%files
  393. * Wed Oct 29 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-1
  394. - update to ghostscript-8.63 based on fedora package
  395. - add cidfmap.ja
  396. - add Obsoletes/Provides: hpijs, hpijs-devel
  397. - historical changelogs are in Changelog.gs7.vine
  398. * Fri Oct 17 2008 Tim Waugh <twaugh@redhat.com> 8.63-4
  399. - Try out a work-around for bug #465311.
  400. * Wed Oct 15 2008 Tim Waugh <twaugh@redhat.com> 8.63-3
  401. - Don't ship fixmswrd.pl as it pulls in perl (bug #463948).
  402. * Tue Oct 14 2008 Tim Waugh <twaugh@redhat.com> 8.63-2
  403. - Split out a doc sub-package (bug #466507).
  404. * Mon Aug 4 2008 Tim Waugh <twaugh@redhat.com> 8.63-1
  405. - 8.63. No longer need r8591 or incomplete-ccittfax patches.
  406. - Compile without strict aliasing opts due to warnings across several
  407. files.
  408. - Don't run autogen.sh for main package, just for ijs which doesn't
  409. ship with a configure script.
  410. * Mon Jun 23 2008 Tim Waugh <twaugh@redhat.com> 8.62-4
  411. - Applied patch to work around bug #229174.
  412. - Applied patch from upstream to fix box_fill_path for shfill (bug #452348).
  413. * Mon Mar 31 2008 Tim Waugh <twaugh@redhat.com> 8.62-3
  414. - Fix pksmraw output (bug #308211).
  415. * Tue Mar 4 2008 Tim Waugh <twaugh@redhat.com> 8.62-2
  416. - No longer need CVE-2008-0411 patch.
  417. - Don't ship URW fonts; we already have them.
  418. * Tue Mar 4 2008 Tim Waugh <twaugh@redhat.com> 8.62-1
  419. - 8.62. No longer need IJS KRGB patch, or patch for gs bug 689577.
  420. * Wed Feb 27 2008 Tim Waugh <twaugh@redhat.com> 8.61-10
  421. - Applied patch to fix CVE-2008-0411 (bug #431536).
  422. * Fri Feb 22 2008 Tim Waugh <twaugh@redhat.com> 8.61-9
  423. - Build with jasper again (bug #433897). Build requires jasper-devel, and
  424. a patch to remove jas_set_error_cb reference.
  425. * Wed Feb 13 2008 Tim Waugh <twaugh@redhat.com> 8.61-8
  426. - Rebuild for GCC 4.3.
  427. * Mon Jan 28 2008 Tim Waugh <twaugh@redhat.com> 8.61-7
  428. - Don't build with jasper support.
  429. - Remove bundled libraries.
  430. * Tue Dec 11 2007 Tim Waugh <twaugh@redhat.com> 8.61-6
  431. - Applied upstream patch for bug #416321.
  432. * Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-5
  433. - Fixed runlibfileifexists patch.
  434. * Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-4
  435. - Revert previous change, but define .runlibfileifexists, not just
  436. runlibfileifexists.
  437. * Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-3
  438. - No longer need runlibfileifexists.
  439. - Use runlibfile in cidfmap.
  440. * Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-2
  441. - Add /usr/share/fonts to fontpath (bug #402551).
  442. - Restore cidfmap-switching bits, except for FAPIcidfmap which is no
  443. longer used.
  444. - Add runlibfileifexists to gs_init.ps.
  445. - Build with --disable-compile-inits (bug #402501).
  446. * Fri Nov 23 2007 Tim Waugh <twaugh@redhat.com> 8.61-1
  447. - 8.61.
  448. * Tue Oct 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-5
  449. - Applied patch from upstream to fix CVE-2007-2721 (bug #346511).
  450. * Tue Oct 9 2007 Tim Waugh <twaugh@redhat.com> 8.60-4
  451. - Marked localized man pages as %%lang (bug #322321).
  452. * Thu Sep 27 2007 Tim Waugh <twaugh@redhat.com> 8.60-3
  453. - Back-ported mkstemp64 patch (bug #308211).
  454. * Thu Aug 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-2
  455. - More specific license tag.
  456. * Fri Aug 3 2007 Tim Waugh <twaugh@redhat.com> 8.60-1
  457. - 8.60.
  458. * Mon Jul 16 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.2
  459. - Own %%{_libdir}/ghostscript (bug #246026).
  460. * Tue Jul 10 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.1
  461. - 8.60 snapshot from svn. Patches dropped:
  462. - big-cmap-post
  463. - split-cidfnmap
  464. - exactly-enable-cidfnmap
  465. - Fontmap.local
  466. No longer needed:
  467. - gxcht-64bit-crash
  468. * Tue Apr 17 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-3
  469. - Apply fonts in CIDFnmap even if the same fontnames are already registered
  470. (bug #163231).
  471. - New file CIDFmap (bug #233966).
  472. - Allow local overrides for FAPIcidfmap, cidfmap and Fontmap (bug #233966).
  473. * Tue Apr 3 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-2
  474. - Fixed configuration file locations (bug #233966).
  475. * Wed Mar 14 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-1
  476. - 8.15.4.
  477. * Thu Jan 25 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-7
  478. - dvipdf script fixes (bug #88906).
  479. - Moved libijs.so and libgs.so into devel package (bug #203623).
  480. * Wed Jan 24 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-6
  481. - Configure with --with-drivers=ALL since the advertised default is not
  482. what gets used (bug #223819).
  483. * Thu Jan 18 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-5
  484. - Backported gxcht 64bit crash fix from GPL trunk (bug #177763).
  485. * Fri Jan 12 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-4
  486. - Own cjkv directory (bug #221380, bug #222375).
  487. * Tue Dec 5 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-3
  488. - Added split-cidfnmap patch (bug #194592).
  489. * Thu Nov 16 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-2
  490. - 8.15.3. No longer need gtk2, ps2epsi, badc, pagesize,
  491. use-external-freetype, split-font-configuration or cjkv patches.
  492. - Renumbered patches.
  493. * Tue Oct 3 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-9
  494. - Apply CJKV patch from svn164:165 plus the fix from svn173:174 (bug #194592,
  495. bug #203712, possibly bug #167596).
  496. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 8.15.2-8.1
  497. - rebuild
  498. * Fri Jun 23 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-8
  499. - Revert CJKV patch.
  500. * Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 8.15.2-7
  501. - rebuilt with new gnutls
  502. * Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-6
  503. - Undo svn sync.
  504. - Apply CJKV patch from svn164:165.
  505. * Fri Jun 9 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-5
  506. - Sync to svn165.
  507. * Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-4
  508. - Fix ijs-config not to have multilib conflicts (bug #192672)
  509. * Tue May 2 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-3
  510. - Remove adobe-cmaps and acro5-cmaps, since latest CMaps are already
  511. included (bug #190463).
  512. * Tue Apr 25 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-2
  513. - 8.15.2.
  514. - No longer need build, krgb, pdfwrite, str1570 patches.
  515. * Mon Apr 24 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-10
  516. - Fix emacs interaction (bug #189321, STR #1570).
  517. * Mon Apr 10 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-9
  518. - Add %%{_datadir}/fonts/japanese to font path (bug #188448).
  519. - Spec file cleanups (bug #188066).
  520. * Sat Apr 8 2006 Tim Waugh <twaugh@redhat.com>
  521. - Build requires libtool (bug #188341).
  522. * Thu Apr 6 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-8
  523. - Fix pdfwrite (bug #187834).
  524. - CUPS filters go in /usr/lib/cups/filter even on lib64 platforms.
  525. * Thu Mar 2 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-7
  526. - BuildRequires: gnutls-devel
  527. - Updated KRGB patch for gdevijs.
  528. * Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 8.15.1-6
  529. - BuildRequires: libXt-devel
  530. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.2
  531. - bump again for double-long bug on ppc(64)
  532. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.1
  533. - rebuilt for new gcc4.1 snapshot and glibc changes
  534. * Mon Jan 30 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-5
  535. - Updated adobe-cmaps to 200406 (bug #173613).
  536. * Fri Jan 27 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-4
  537. - Support reading a big cmap/post table from a TrueType font.
  538. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  539. - rebuilt
  540. * Wed Nov 9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-3
  541. - Build does not explicitly require xorg-x11-devel.
  542. * Wed Nov 9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-2
  543. - rebuilt with new openssl
  544. * Mon Sep 26 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-1
  545. - Some directories should be "8.15" not "8.15.1" (bug #169198).
  546. * Thu Sep 22 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-0.1
  547. - 8.15.1.
  548. - No longer need overflow patch.
  549. * Tue Aug 16 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.3
  550. - Rebuilt for new cairo.
  551. * Mon Aug 15 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.2
  552. - Parametrize freetype, and disable it (bug #165962).
  553. * Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.1
  554. - 8.15rc4.
  555. - Fixed lips4v driver (bug #165713).
  556. * Tue Aug 9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.7
  557. - Install adobe/acro5 CMaps (bug #165428).
  558. * Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.6
  559. - Fixed split font configuration patch (bug #161187).
  560. * Wed Jul 13 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.5
  561. - Split font configuration (bug #161187).
  562. - Reverted this change:
  563. - Build requires xorg-x11-devel, not XFree86-devel.
  564. * Tue Jul 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.4
  565. - Add Japanese fonts to FAPIcidfmap (bug #161187).
  566. - Moved Resource directory.
  567. - Added use-external-freetype patch (bug #161187).
  568. * Mon Jul 11 2005 Tim Waugh <twaugh@redhat.com>
  569. - Build requires libtiff-devel (bug #162826).
  570. * Thu Jun 9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.3
  571. - Build requires xorg-x11-devel, not XFree86-devel.
  572. - Include ierrors.h in the devel package.
  573. * Wed Jun 8 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.2
  574. - Drop 'Provides: libijs.so' because it is incorrect.
  575. - Build igcref.c with -O0 to work around bug #150771.
  576. - Renumber patches.
  577. * Fri Jun 3 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.1
  578. - Switch to ESP Ghostscript.
  579. - 8.15rc3.
  580. - Lots of patches dropped. Perhaps some will need to be re-added.
  581. * Thu Mar 10 2005 Tim Waugh <twaugh@redhat.com> 7.07-40
  582. - Build igcref.c with -O0 to work around bug #150771.
  583. * Tue Mar 1 2005 Tim Waugh <twaugh@redhat.com> 7.07-39
  584. - Rebuilt for new GCC.
  585. * Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 7.07-38
  586. - Fixes inspired by GCC 4.
  587. * Tue Jan 18 2005 Tim Waugh <twaugh@redhat.com>
  588. - Correct permissions for %%{_datadir}/ghostscript/Resource (bug #145420).
  589. * Fri Dec 10 2004 Tim Waugh <twaugh@redhat.com> 7.07-37
  590. - Fixed missing return statement (bug #136757).
  591. * Thu Dec 9 2004 Tim Waugh <twaugh@redhat.com> 7.07-36
  592. - Remove VFlib2 bits (bug #120498).
  593. * Fri Dec 3 2004 Tim Waugh <twaugh@redhat.com> 7.07-35
  594. - Added /etc/ghostscript to search path and to file manifest (bug #98974).
  595. * Sat Nov 20 2004 Miloslav Trmac <mitr@redhat.com> - 7.07-34
  596. - Convert man pages to UTF-8
  597. * Wed Oct 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-33
  598. - Fix for bug #136322 (temporary files).
  599. * Tue Sep 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-32
  600. - Turn off fontconfig until it's fixed (bug #133353).
  601. * Wed Aug 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-31
  602. - Only ship gsx in the gtk subpackage.
  603. * Fri Aug 6 2004 Tim Waugh <twaugh@redhat.com>
  604. - Run /sbin/ldconfig in %%post/%%postun.
  605. - Stricter requirements for the main package in the subpackages.
  606. * Tue Jul 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-30
  607. - Updated eplaser driver to add alc4000 (bug #128007).
  608. * Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 7.07-29
  609. - Prevent pdf2ps generating "null setpagesize" (bug #126446).
  610. * Thu Jun 24 2004 Tim Waugh <twaugh@redhat.com> 7.07-28
  611. - Fix Omni patch assumption about /usr/lib which breaks for multilib
  612. architectures.
  613. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  614. - rebuilt
  615. * Tue Jun 1 2004 Tim Waugh <twaugh@redhat.com> 7.07-26
  616. - Removed another debug message from the fontconfig patch.
  617. * Tue Mar 9 2004 Tim Waugh <twaugh@redhat.com> 7.07-25
  618. - Added bjc250gs driver (bug #117860).
  619. * Thu Mar 4 2004 Tim Waugh <twaugh@redhat.com> 7.07-24
  620. - Fix compilation with GCC 3.4.
  621. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  622. - rebuilt
  623. * Wed Feb 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-23
  624. - Build against gtk2/glib2 (bug #115619). Patch from W. Michael Petullo.
  625. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 7.07-22
  626. - rebuilt
  627. * Thu Feb 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-21
  628. - Leave gdevpdfm.c seemingly-mistaken bitwise ops alone (bug #115396).
  629. * Thu Feb 5 2004 Tim Waugh <twaugh@redhat.com> 7.07-20
  630. - Fix compilation with GCC 3.4.
  631. * Wed Jan 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-19
  632. - Attempt to fix gdevcups crash (bug #114256).
  633. - Make gs dynamically link to libgs (bug #114276).
  634. - Fix gdevesmv.c's misuse of const (bug #114250).
  635. * Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-18
  636. - Turn on libgs again (bug #88175).
  637. * Mon Jan 19 2004 Tim Waugh <twaugh@redhat.com> 7.07-17
  638. - Removed stp driver. Use the IJS version (ijsgimpprint) instead.
  639. - No longer conflicts with foomatic for hpijs versioning.
  640. * Mon Jan 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-16
  641. - Split hpijs out into separate source package.
  642. * Thu Jan 8 2004 Tim Waugh <twaugh@redhat.com>
  643. - Fix several mistakenly-used bitwise operations.
  644. * Tue Jan 6 2004 Tim Waugh <twaugh@redhat.com> 7.07-15
  645. - Build for Fedora Core 1 printer drivers update.
  646. - Conflicts with foomatic before hpijs 1.5 data.
  647. - Make fontconfig optional.
  648. * Sat Dec 13 2003 Tim Waugh <twaugh@redhat.com> 7.07-14
  649. - Disable unnecessary debug messages from fontconfig support.
  650. * Fri Dec 5 2003 Tim Waugh <twaugh@redhat.com> 7.07-13
  651. - Add fontconfig support (bug #111412).
  652. * Thu Nov 27 2003 Tim Waugh <twaugh@redhat.com>
  653. - Build requires libjpeg-devel (bug #110737).
  654. * Tue Nov 11 2003 Tim Waugh <twaugh@redhat.com> 7.07-12
  655. - Updated hpijs to 1.5 (bug #109714).
  656. * Mon Nov 10 2003 Tim Waugh <twaugh@redhat.com>
  657. - Updated lxm3200 patch (bug #109625).
  658. * Tue Sep 30 2003 Tim Waugh <twaugh@redhat.com> 7.07-11
  659. - Updated gdevcups.c from CUPS 1.1.19.
  660. - Apply NOMEDIAATTRS patch from CUPS 1.1.19 (bug #105401).
  661. * Thu Aug 28 2003 Tim Waugh <twaugh@redhat.com>
  662. - Fix lips4v driver (bug #92337).
  663. * Wed Aug 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-10
  664. - Fix compilation problems in hpijs.
  665. * Mon Aug 4 2003 Tim Waugh <twaugh@redhat.com> 7.07-9
  666. - Further fix from bug #100685.
  667. * Thu Jul 31 2003 Tim Waugh <twaugh@redhat.com> 7.07-8
  668. - Further fix from bug #100685.
  669. * Tue Jul 29 2003 Tim Waugh <twaugh@redhat.com> 7.07-7
  670. - Further fix from bug #100685.
  671. * Fri Jul 25 2003 Tim Waugh <twaugh@redhat.com> 7.07-6
  672. - Further fix from bug #100557.
  673. * Thu Jul 24 2003 Tim Waugh <twaugh@redhat.com> 7.07-5
  674. - Further fix from bug #100557.
  675. - Fix bug #100685.
  676. * Wed Jul 23 2003 Tim Waugh <twaugh@redhat.com> 7.07-4
  677. - Fix bug #100557.
  678. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 7.07-3
  679. - rebuilt
  680. * Tue May 27 2003 Tim Waugh <twaugh@redhat.com>
  681. - Fix sed usage in ps2epsi (bug #89300).
  682. * Tue May 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-2
  683. - HPIJS 1.4 (bug #91219).
  684. * Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 7.07-1
  685. - 7.07.
  686. - Parametrize build_libgs.
  687. - Remove Omni requirement (bug #88177).
  688. - Fix ghostscript-gtk obsoletes: line (bug #88175).
  689. * Thu Apr 3 2003 Tim Waugh <twaugh@redhat.com> 7.06-1
  690. - 7.06.
  691. - Updated config, vflib.fixup patches.
  692. - No longer need dx6, jpeg patches.
  693. - No longer need to add in missed GNU drivers.
  694. - Turn off dj970 driver (hpijs drives that).
  695. * Mon Mar 31 2003 Tim Waugh <twaugh@redhat.com> 7.05-34
  696. - Apply fix for CJK font search method when the fonts are not available
  697. (bug #83516).
  698. - The gb18030 patch no longer applies here.
  699. * Thu Mar 27 2003 Tim Waugh <twaugh@redhat.com> 7.05-33
  700. - Add some missing font aliases (bug #73342).
  701. - Use the system jpeg library.
  702. - Update hpijs to 1.3.1.
  703. - Update gdevcups.c from cups-1.1.18.
  704. * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> 7.05-32
  705. - debuginfo rebuild
  706. * Fri Feb 21 2003 Elliot Lee <sopwith@redhat.com> 7.05-31
  707. - Add ghostscript-7.05-oob-66421.patch to fix the segfault behind #66421
  708. * Thu Jan 30 2003 Tim Waugh <twaugh@redhat.com> 7.05-30
  709. - Remove rss patch from hpijs (not needed).
  710. * Wed Jan 22 2003 Tim Powers <timp@redhat.com> 7.05-29
  711. - rebuilt
  712. * Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com> 7.05-28
  713. - Add Korean font aliases to CIDFnmap CJK resource files (bug #81924).
  714. * Sat Dec 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-27
  715. - Obsolete ghostscript-gtk (bug #79585).
  716. - Omni 121002 patch.
  717. * Tue Dec 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-26
  718. - Don't ship the shared object yet (part of bug #79340).
  719. - Don't make the gtk package, since that needs the shared object.
  720. * Tue Nov 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-25
  721. - Fix level 1 PostScript output (bug #78450).
  722. - No need to carry gomni.c, since it comes from the patch.
  723. * Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-24
  724. - Omni 071902 patch.
  725. * Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-23
  726. - hpijs-1.3, with updated rss patch.
  727. - Fix XLIBDIRS.
  728. * Fri Oct 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-22
  729. - hpijs-rss 1.2.2.
  730. * Mon Oct 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-21
  731. - Set libdir when installing.
  732. * Thu Aug 15 2002 Tim Waugh <twaugh@redhat.com> 7.05-20
  733. - Add cups device (bug #69573).
  734. * Mon Aug 12 2002 Tim Waugh <twaugh@redhat.com> 7.05-19
  735. - Fix the gb18030 patch (bug #71135, bug #71303).
  736. * Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 7.05-18
  737. - rebuilt with gcc-3.2 (we hope)
  738. * Fri Aug 9 2002 Tim Waugh <twaugh@redhat.com> 7.05-17
  739. - Add CIDnmap for GB18030 font (bug #71135).
  740. - Fix URL (bug #70734).
  741. * Tue Jul 23 2002 Tim Waugh <twaugh@redhat.com> 7.05-16
  742. - Rebuild in new environment.
  743. * Tue Jul 9 2002 Tim Waugh <twaugh@redhat.com> 7.05-15
  744. - Remove the chp2200 driver again, to fix cdj890 (bug #67578).
  745. * Fri Jul 5 2002 Tim Waugh <twaugh@redhat.com> 7.05-14
  746. - For CJK font support, use CIDFnmap instead of CIDFont
  747. resources (bug #68009).
  748. * Wed Jul 3 2002 Tim Waugh <twaugh@redhat.com> 7.05-13
  749. - Build requires unzip and gtk+-devel (bug #67799).
  750. * Wed Jun 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-12
  751. - File list tweaking.
  752. - More file list tweaking.
  753. * Tue Jun 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-10
  754. - Rebuild for bootstrap.
  755. * Wed Jun 19 2002 Tim Waugh <twaugh@redhat.com> 7.05-9
  756. - Omni 052902 patch.
  757. * Mon Jun 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-8
  758. - Requires recent version of patchutils (bug #65947).
  759. - Don't ship broken man page symlinks (bug #66238).
  760. * Wed May 29 2002 Tim Waugh <twaugh@redhat.com> 7.05-7
  761. - Put gsx in its own package.
  762. * Tue May 28 2002 Tim Waugh <twaugh@redhat.com> 7.05-6
  763. - New gomni.c from IBM to fix an A4 media size problem.
  764. - Use new Adobe CMaps (bug #65362).
  765. * Sun May 26 2002 Tim Powers <timp@redhat.com> 7.05-5
  766. - automated rebuild
  767. * Wed May 22 2002 Tim Waugh <twaugh@redhat.com> 7.05-4
  768. - New gomni.c from IBM to fix bug #65269 (again).
  769. * Tue May 21 2002 Tim Waugh <twaugh@redhat.com> 7.05-2
  770. - Don't apply bogus parts of vflib patch (bug #65268).
  771. - Work around Omni -sPAPERSIZE=a4 problem (bug #65269).
  772. * Mon May 20 2002 Tim Waugh <twaugh@redhat.com> 7.05-1
  773. - 7.05.
  774. - No longer need mkstemp, vflib.fixup, quoting, or PARANOIDSAFER
  775. patches.
  776. - Don't apply CJK patches any more (no longer needed).
  777. - Updated Source15, Patch0, Patch10, Patch5, Patch24, Patch14, Patch12.
  778. - Made gdevdmpr.c compile again.
  779. - Move gimp-print to a separate package.
  780. - Ship the shared object too (and a .so file that is dlopened).
  781. - Update Omni patch. No longer need Omni_path, Omni_quiet, Omni_glib patches.
  782. - Require Omni >= 0.6.1.
  783. - Add patch to fix gtk+ initial window size.
  784. - Add devel package with header files.
  785. - Turn on IJS support.
  786. - Update hpijs to 1.1.
  787. - Don't ship the hpijs binary in the ghostscript package.
  788. - Use -fPIC when building ijs.
  789. * Wed Apr 3 2002 Tim Waugh <twaugh@redhat.com> 6.52-8
  790. - New CIDFonts (bug #61015).
  791. * Wed Apr 3 2002 Tim Waugh <twaugh@redhat.com> 6.52-7
  792. - Fix release numbers of sub packages.
  793. - Handle info files, use ldconfig (bug #62574).
  794. * Tue Mar 19 2002 Tim Waugh <twaugh@redhat.com> 6.52-6
  795. - Fix config patch so that gs --help displays the right thing.
  796. - Don't ship sysvlp.sh.
  797. - Fix some shell scripts.
  798. - Ship escputil man page (bug #58919).
  799. * Mon Feb 11 2002 Tim Waugh <twaugh@redhat.com> 6.52-5
  800. - Add CHP2200 driver (bug #57516).
  801. - Fix gimp-print-4.2.0 so that it builds without cups-config.
  802. * Sat Feb 2 2002 Bill Nottingham <notting@redhat.com> 6.52-4
  803. - do condrestart in %postun, not %post
  804. * Fri Feb 1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-3
  805. - Restart service cups after installing gimp-print-cups
  806. * Sun Jan 27 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-2
  807. - hpijs is finally free - support it.
  808. - Add extra package for CUPS support
  809. * Mon Jan 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-1
  810. - Updates:
  811. - ghostscript 6.52
  812. - hpdj 2.6 -> pcl3 3.3
  813. - CJK Patchlevel 3, adobe-cmaps 200109
  814. - gimp-print 4.2.0
  815. - Adapt patches
  816. - Fix various URLs
  817. - Begin cleaning up spec file
  818. - Fix bugs #21879 and #50923
  819. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  820. - automated rebuild
  821. * Thu Oct 18 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-16
  822. - update the Omni driver, and patch it to seek in /usr/lib/Omni/ first
  823. - require Omni
  824. * Mon Oct 01 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-15
  825. - change -dPARANOIDSAFER to punch a hole for OutputFile
  826. * Mon Sep 17 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-14
  827. - add -dPARANOIDSAFER to let us breathe a little easier in the print spooler.
  828. * Thu Sep 13 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-13
  829. - apply jakub's fix to ghostscript's jmp_buf problems; #49591
  830. * Wed Sep 5 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-12
  831. - fix lprsetup.sh; #50925
  832. * Fri Aug 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-11
  833. - added Epson's old eplaseren drivers,
  834. - pointed out by Till Kamppeter <till.kamppeter@gmx.net>
  835. * Tue Aug 21 2001 Paul Howarth <paul@city-fan.org> 6.51-10
  836. - included Samsung GDI driver for ML-4500 printer support.
  837. * Sun Aug 19 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-9
  838. - applied IBM's glib patches for Omni, which now works.
  839. - BE AWARE: we now link against libstdc++ and glib for this, and use a c++
  840. - link stage to do the dirty.
  841. - added glib-devel buildreq and glib req, I don't think we require everything
  842. - yet, I could pull in sasl.
  843. * Sun Aug 19 2001 David Suffield <david_suffield@hp.com> 6.51-8
  844. - Added gs device hpijs and updated gdevhpij.c to hpijs 0.97
  845. * Wed Aug 15 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-7
  846. - pull in ynakai's update to the cjk resources.
  847. * Thu Aug 9 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-6
  848. - turn dmprt and cdj880 back on. for some reason, they work now.
  849. - voodoo, who knows.
  850. * Thu Aug 9 2001 Yukihiro Nakai <ynakai@redhat.com> 6.51-5
  851. - Add cjk resources
  852. * Wed Aug 1 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-4
  853. - applied drepper@redhat.com's patch for #50300
  854. - fixed build deps on zlib-devel and libpng-devel, #49853
  855. - made gs_init.ps a config file; #25096
  856. - O\^/nZ the daTa directorieZ now; #50693
  857. * Tue Jul 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-3
  858. - wired up the Resource dir and the Font and CIDFont maps.
  859. * Mon Jul 23 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-2
  860. - luckily, I had a spare chicken. Thanks to some work by Nakai, and one last
  861. - desperate search through google, everything /seems/ to be working. I know
  862. - that there are going to be problems in the japanese code, and I need to turn
  863. - on the cjk font map from adobe, but it /works/ at the moment.
  864. * Thu Jun 21 2001 Crutcher Dunnavant <crutcher@redhat.com>
  865. - upgraded to 6.51, a major version upgrade
  866. - rewrote spec file, threw out some patches
  867. - turned on IBM's Omni print drivers interface
  868. - turned on HP's hpijs print drivers interface
  869. - turned on every driver that looked usable from linux
  870. - sacrificed a chicken to integrate the old Japanese drivers
  871. - - This didn't work. The japanese patches are turned off, pending review.
  872. - - I can do loops with C, but the bugs are in Postscript init files
  873. * Wed Apr 11 2001 Crutcher Dunnavant <crutcher@redhat.com>
  874. - added P. B. West's lx5000 driver
  875. * Tue Feb 27 2001 Crutcher Dunnavant <crutcher@redhat.com>
  876. - added xtt-fonts requirement (for VFlib)
  877. * Fri Feb 9 2001 Adrian Havill <havill@redhat.com>
  878. - cmpskit removed as a build prereq
  879. * Thu Feb 8 2001 Crutcher Dunnavant <crutcher@redhat.com>
  880. - merged in some patches that got away:
  881. - * Fri Sep 1 2000 Mitsuo Hamada <mhamada@redhat.com>
  882. - add support JIS B size
  883. - fix the problem of reconverting GNUPLOT output
  884. * Thu Feb 8 2001 Crutcher Dunnavant <crutcher@redhat.com>
  885. - switched to japanese for everybody
  886. * Thu Feb 8 2001 Crutcher Dunnavant <crutcher@redhat.com>
  887. - tweaked time_.h to test for linux, and include the right
  888. - header
  889. * Wed Feb 7 2001 Crutcher Dunnavnat <crutcher@redhat.com>
  890. - added the lxm3200 driver
  891. * Mon Dec 11 2000 Crutcher Dunnavant <crutcher@redhat.com>
  892. - merged in the (accendental) branch that contained the mktemp
  893. - and LD_RUN_PATH bug fixes.
  894. * Tue Oct 17 2000 Jeff Johnson <jbj@redhat.com>
  895. - tetex using xdvi with ghostscript patch (#19212).
  896. * Tue Sep 12 2000 Michael Stefaniuc <mstefani@redhat.com>
  897. - expanded the gcc296 patch to fix a compilation issue with the new stp
  898. driver
  899. * Mon Sep 11 2000 Michael Stefaniuc <mstefani@redhat.com>
  900. - added the stp driver from the gimp-print project.
  901. It supports high quality printing especialy with Epson Stylus Photo.
  902. * Wed Aug 2 2000 Matt Wilson <msw@redhat.com>
  903. - rebuilt against new libpng
  904. * Wed Aug 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  905. - Fix up the cdj880 patch (Bug #14978)
  906. - Fix build with gcc 2.96
  907. * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
  908. - turn off japanese support
  909. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  910. - automatic rebuild
  911. * Fri Jul 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
  912. - fixed the broken inclusion of files in /usr/doc
  913. - Build requires freetype-devel
  914. * Fri Jun 16 2000 Matt Wilson <msw@redhat.com>
  915. - build japanese support in main distribution
  916. - FHS manpage paths
  917. * Sun Mar 26 2000 Chris Ding <cding@redhat.com>
  918. - enabled bmp16m driver
  919. * Thu Mar 23 2000 Matt Wilson <msw@redhat.com>
  920. - added a boatload of Japanese printers
  921. * Thu Mar 16 2000 Matt Wilson <msw@redhat.com>
  922. - add japanese support, enable_japanese macro
  923. * Mon Feb 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  924. - 5.50 at last...
  925. - hpdj 2.6
  926. - Added 3rd party drivers:
  927. - Lexmark 5700 (lxm5700m)
  928. - Alps MD-* (md2k, md5k)
  929. - Lexmark 2050, 3200, 5700 and 7000 (lex2050, lex3200, lex5700, lex7000)
  930. * Fri Feb 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  931. - rebuild to compress man page
  932. - fix gs.1 symlink
  933. * Wed Jan 26 2000 Bill Nottingham <notting@redhat.com>
  934. - add stylus 740 uniprint files
  935. * Thu Jan 13 2000 Preston Brown <pbrown@redhat.com>
  936. - add lq850 dot matrix driver (#6357)
  937. * Thu Oct 28 1999 Bill Nottingham <notting@redhat.com>
  938. - oops, include oki182 driver.
  939. * Tue Aug 24 1999 Bill Nottingham <notting@redhat.com>
  940. - don't optimize on Alpha. This way it works.
  941. * Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com>
  942. - added hpdj driver
  943. - changed build to use tar_cat so adding new drivers is sane
  944. * Thu Jul 1 1999 Bill Nottingham <notting@redhat.com>
  945. - add OkiPage 4w+, HP 8xx drivers
  946. * Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
  947. - fix typo in config patch.
  948. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  949. - auto rebuild in the new build environment (release 6)
  950. * Mon Mar 15 1999 Cristian Gafton <gafton@redhat.com>
  951. - added patch from rth to fix alignement problems on the alpha.
  952. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  953. - Injected new description and group.
  954. * Mon Feb 08 1999 Bill Nottingham <notting@redhat.com>
  955. - add uniprint .upp files
  956. * Sat Feb 06 1999 Preston Brown <pbrown@redhat.com>
  957. - fontpath update.
  958. * Wed Dec 23 1998 Preston Brown <pbrown@redhat.com>
  959. - updates for ghostscript 5.10
  960. * Fri Nov 13 1998 Preston Brown <pbrown@redhat.com>
  961. - updated to use shared urw-fonts package.
  962. * Mon Nov 09 1998 Preston Brown <pbrown@redhat.com>
  963. - turned on truetype (ttf) font support.
  964. * Thu Jul 2 1998 Jeff Johnson <jbj@redhat.com>
  965. - updated to 4.03.
  966. * Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
  967. - enabled more printer drivers
  968. - buildroot
  969. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  970. - translations modified for de, fr, tr
  971. * Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
  972. - Made /usr/share/ghostscript/3.33/Fontmap a config file.