ghostscript-vl.spec 41 KB

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