libtiff-vl.spec 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: A library of functions for manipulating TIFF format image files.
  3. Summary(ja): TIFF フォーマットの画像ファイルを扱うライブラリ
  4. Name: libtiff
  5. Version: 4.0.3
  6. Release: 2%{_dist_release}
  7. License: distributable
  8. Group: System Environment/Libraries
  9. Source0: http://download.osgeo.org/libtiff/tiff-%{version}.tar.gz
  10. Patch1: libtiff-CVE-2012-4447.patch
  11. Patch2: libtiff-CVE-2012-4564.patch
  12. Patch3: libtiff-printdir-width.patch
  13. Patch4: libtiff-jpeg-test.patch
  14. Patch5: libtiff-CVE-2013-1960.patch
  15. Patch6: libtiff-CVE-2013-1961.patch
  16. Patch7: libtiff-manpage-update.patch
  17. Patch8: libtiff-CVE-2013-4231.patch
  18. Patch9: libtiff-CVE-2013-4232.patch
  19. Patch10: libtiff-CVE-2013-4244.patch
  20. Patch11: libtiff-make-check.patch
  21. URL: http://www.remotesensing.org/libtiff/
  22. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  23. BuildRequires: zlib-devel libjpeg-devel
  24. %define LIBVER %(echo %{version} | cut -f-2 -d.)
  25. %ifarch x86_64
  26. Provides: libtiff.so.4()(64bit)
  27. %else
  28. Provides: libtiff.so.4
  29. %endif
  30. Obsoletes: libtiff4
  31. Vendor: Project Vine
  32. Distribution: Vine Linux
  33. Packager: daisuke, iwamoto
  34. %description
  35. The libtiff package contains a library of functions for manipulating
  36. TIFF (Tagged Image File Format) image format files. TIFF is a widely
  37. used file format for bitmapped images. TIFF files usually end in the
  38. .tif extension and they are often quite large.
  39. The libtiff package should be installed if you need to manipulate TIFF
  40. format image files.
  41. %description -l ja
  42. libtiff パッケージには TIFF (Tagged Image File Format) 画像ファイルを
  43. 扱う各種ライブラリが収められています.TIFF はビットマップ画像を扱う際に
  44. 広く使われているフォーマットです.TIFF ファイルは通常 .tif のファイル
  45. 拡張子が使われ,サイズは概して大きめです.
  46. TIFF 形式の画像ファイルを扱う必要があるならば,
  47. libtiff パッケージを是非インストールして下さい.
  48. %package devel
  49. Summary: Development tools for programs which will use the libtiff library.
  50. Summary(ja): libtiff ライブラリを使うプログラム向け開発ツール
  51. Group: Development/Libraries
  52. Requires: libtiff = %{version}
  53. %description devel
  54. This package contains the header files and static libraries for
  55. developing programs which will manipulate TIFF format image files
  56. using the libtiff library.
  57. If you need to develop programs which will manipulate TIFF format
  58. image files, you should install this package. You'll also need to
  59. install the libtiff package.
  60. #'
  61. %description devel -l ja
  62. このパッケージには,libtiff ライブラリを使って TIFF 形式の
  63. 画像ファイルを扱うプログラムを開発する際に必要なヘッダファイルや
  64. スタティックライブラリが収められています.
  65. TIFF 形式画像ファイルを扱うプログラムを開発する必要がある場合は
  66. このパッケージをインストールして下さい.libtiff パッケージも同時に
  67. インストールする必要があります.
  68. ## to build compat32 for x86_64 architecture support
  69. %package -n compat32-%{name}
  70. Summary: A library of functions for manipulating TIFF format image files.
  71. Group: System Environment/Libraries
  72. Requires: %{name} = %{version}
  73. Provides: libtiff.so.4
  74. Obsoletes: compat32-libtiff4
  75. %description -n compat32-%{name}
  76. The libtiff package contains a library of functions for manipulating
  77. TIFF (Tagged Image File Format) image format files. TIFF is a widely
  78. used file format for bitmapped images. TIFF files usually end in the
  79. .tif extension and they are often quite large.
  80. The libtiff package should be installed if you need to manipulate TIFF
  81. format image files.
  82. %package -n compat32-%{name}-devel
  83. Summary: Development tools for programs which will use the libtiff library.
  84. Group: Development/Libraries
  85. Requires: compat32-%{name} = %{version}
  86. Requires: %{name}-devel = %{version}
  87. %description -n compat32-%{name}-devel
  88. This package contains the header files and static libraries for
  89. developing programs which will manipulate TIFF format image files
  90. using the libtiff library.
  91. If you need to develop programs which will manipulate TIFF format
  92. image files, you should install this package. You'll also need to
  93. install the libtiff package.
  94. #'
  95. %prep
  96. %setup -q -n tiff-%{version}
  97. %patch1 -p1 -b .CVE-2012-4447
  98. %patch2 -p1 -b .CVE-2012-4564
  99. %patch3 -p1 -b .printdir-width
  100. %patch4 -p1 -b .jpeg-test
  101. %patch5 -p1 -b .CVE-2013-1960
  102. %patch6 -p1 -b .CVE-2013-1961
  103. %patch7 -p1 -b .manpage-update
  104. %patch8 -p1 -b .CVE-2013-4231
  105. %patch9 -p1 -b .CVE-2013-4232
  106. %patch10 -p1 -b .CVE-2013-4244
  107. %patch11 -p1
  108. %build
  109. %configure --with-jpeg-lib-dir=%{_libdir} --disable-cxx
  110. %__make %{?_smp_mflags}
  111. %__make clean
  112. %install
  113. rm -fr $RPM_BUILD_ROOT
  114. %makeinstall
  115. rm -rf $RPM_BUILD_ROOT/usr/share/doc/tiff-%{version}
  116. ln -sf libtiff.so.5 $RPM_BUILD_ROOT%{_libdir}/libtiff.so.4
  117. rm $RPM_BUILD_ROOT%{_libdir}/libtiff*.la
  118. %post -p /sbin/ldconfig
  119. %postun -p /sbin/ldconfig
  120. %if %{build_compat32}
  121. %post -n compat32-%{name} -p /sbin/ldconfig
  122. %postun -n compat32-%{name} -p /sbin/ldconfig
  123. %endif
  124. %clean
  125. rm -rf $RPM_BUILD_ROOT
  126. %files
  127. %defattr(-,root,root)
  128. %doc COPYRIGHT README RELEASE-DATE VERSION
  129. %{_bindir}/*
  130. %{_libdir}/libtiff*.so.*
  131. %{_mandir}/man1/*
  132. %files devel
  133. %defattr(-,root,root)
  134. %doc TODO html ChangeLog
  135. %{_includedir}/*
  136. %{_libdir}/libtiff*.so
  137. %{_libdir}/pkgconfig/*.pc
  138. %{_mandir}/man3/*
  139. ## to build compat32 for x86_64 architecture support
  140. %if %{build_compat32}
  141. %files -n compat32-%{name}
  142. %defattr(-,root,root)
  143. %{_libdir}/libtiff.so.*
  144. %files -n compat32-%{name}-devel
  145. %defattr(-,root,root)
  146. %{_libdir}/libtiff.so
  147. %endif
  148. %changelog
  149. * Thu Dec 26 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.0.3-2
  150. - add patch1-11 from fc21 to fix security issues
  151. * Mon Nov 12 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.0.3-1
  152. - new upstream release with security fix (CVE-2012-4447)
  153. - drop *.a files from -devel packages
  154. * Thu Aug 2 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.0.2-4
  155. - new upstream release with security fixes (CVE-2012-2088, 2113)
  156. - drop patch1 (is included in new release)
  157. * Wed Jun 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-4
  158. - Obosletes: libtiff4 and compat32-libtiff4 (vl6)
  159. * Sun May 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-3
  160. - fix R: for compat32 package
  161. * Fri May 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-2
  162. - add libtiff.so.4 for compatibility
  163. - add pkgconfig file
  164. * Fri May 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-1
  165. - new upstream release
  166. - add patch1 to fix CVE-2012-1173
  167. * Mon Apr 25 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.9.5-1
  168. - new upstream release
  169. - drop all patches (are included in new release)
  170. - remove if-endif for Vine 4.x
  171. - add Vendor/Distri tags
  172. * Sun Apr 24 2011 IWAI, Masaharu <iwai@alib.jp> 3.9.4-3
  173. - add some patches from RHEL6 3.9.4-1.el6_0.3
  174. - fix for CVE-2011-0192 (Patch11)
  175. - fix for CVE-2011-1167 (Patch12)
  176. - fix for CVE-2009-5022 (Patch13)
  177. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 3.9.4-2
  178. - rebuilt with rpm-4.8.1-3
  179. * Mon Jul 05 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.9.4-1
  180. - new upstream release
  181. - add patch4-10 from fedora
  182. * Thu Feb 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.9.2-1
  183. - new upstream release
  184. - remove BC: freeglut-devel
  185. - add patch1,2,4,5 from fedora
  186. - drop obsolete patches
  187. * Fri Jul 17 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 3.8.2-9
  188. - change if-endif to make both i386 and compat32 packages
  189. * Wed Jul 15 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 3.8.2-8
  190. - add patch5 for fix CVE-2009-2347 (Integer Overflow)
  191. * Tue Jun 23 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 3.8.2-7
  192. - add patch4 for fix lzw underflow security issue
  193. - add if branch Vine4/5 in devel files section (*.la are included or not)
  194. * Fri Sep 26 2008 Shu KONNO <owa@bg.wakwak.com> 3.8.2-6vl4
  195. - removed *.la
  196. - spec in utf-8
  197. * Tue Sep 02 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.8.2-5vl4
  198. - fix changelog typo (3.8.4 -> 3.8.2)
  199. - new versioning policy
  200. - add patch3 for fix CVE-2008-2327 (LZW Data Decoding Buffer Underflow)
  201. * Mon Sep 25 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.8.2-0vl4
  202. - fix libdir in libtiff.la
  203. - add BuildConflicts: freeglut-devel
  204. * Thu Aug 31 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.8.2-0vl3
  205. - rebuilt without glut-devel
  206. * Fri Aug 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 3.8.2-0vl2
  207. - add Patch2 to fix multiple vulnerabilities (CVE-2006-346[012345])
  208. * Fri Jun 9 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.8.2-0vl1
  209. - new upstream release
  210. - remove obsolete patches
  211. - add Patch0 and Patch1 from Debian (CVE-2006-2193, CVE-2006-2656)
  212. - delete duped docs
  213. - add --disable-cxx to configure option
  214. - add *.la to devel package
  215. * Sun Feb 12 2006 Shu KONNO <owa@bg.wakwak.com> 3.7.1-0vl2
  216. - added compat32-* packages for x86_64 architecture support
  217. - added --with-jpeg-lib-dir=%{_libdir} to configure
  218. * Wed Feb 09 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 3.7.1-0vl1
  219. - new upstream release
  220. - remove obsolete patches
  221. - cleanup specs
  222. * Fri Jan 21 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-6vl7
  223. - rebuild for Vine3.1
  224. * Wed Jan 19 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-6vl6
  225. - add Patch15-16 from Red Hat (CAN-2004-1183) (CAN-2004-1308)
  226. - update URL
  227. * Sun Oct 31 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-6vl1.1
  228. - build for Vine2.6
  229. * Fri Oct 29 2004 IWAI, Masaharu <iwai@alib.jp> 3.5.7-6vl5
  230. - fix changelog: proper name
  231. * Wed Oct 27 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-6vl4
  232. - add symlink to shared lib by running ldconfig at compile time
  233. * Tue Oct 26 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-6vl3
  234. - add patch8-13 from Fedora Core
  235. --* Thu Oct 07 2004 Matthias Clasen <mclasen@redhat.com>
  236. --- fix some integer and buffer overflows (#134853, #134848)
  237. - add patch14 from SUSE LINUX
  238. --* Wed Oct 20 2004 - meissner@suse.de
  239. --- Do not crash if we are using unsupported codecs (like OJPEG).
  240. * Wed Jan 15 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.5.7-6vl2
  241. - rebuild with new toolchains
  242. - to use License instead of Copyright
  243. * Fri Jul 05 2002 Ryoichi INAGAKI <ryo1@bc.wakwak.com>
  244. - 3.5.7-6vl1
  245. - based on 3.5.7-6 from Rawhide
  246. * Mon Jan 08 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  247. - 3.5.5-8vl1
  248. - based on 3.5.5-8 from Rawhide
  249. - added Japanese summary and description
  250. * Tue Dec 19 2000 Philipp Knirsch <pknirsch@redhat.de>
  251. - rebuild
  252. * Mon Aug 7 2000 Crutcher Dunnavant <crutcher@redhat.com>
  253. - added a tiff-to-ps.fpi filter for printing
  254. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  255. - automatic rebuild
  256. * Thu Jul 13 2000 Nalin Dahyabhai <nalin@redhat.com>
  257. - apply Peter Skarpetis's fix for the 32-bit conversion
  258. * Mon Jul 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  259. - make man pages non-executable (#12811)
  260. * Mon Jun 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  261. - remove CVS repo info from data directories
  262. * Thu May 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  263. - fix build rooting
  264. - fix syntax error in configure script
  265. - move man pages to %{_mandir}
  266. * Wed May 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  267. - rebuild for an errata release
  268. * Wed Mar 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  269. - update to 3.5.5, which integrates our fax2ps fixes and the glibc fix
  270. * Tue Mar 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  271. - fix fax2ps swapping height and width in the bounding box
  272. * Mon Mar 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  273. - move man pages from devel package to the regular one
  274. - integrate Frank Warmerdam's fixed .fax handling code (keep until next release
  275. of libtiff)
  276. - fix fax2ps breakage (bug #8345)
  277. * Sat Feb 05 2000 Nalin Dahyabhai <nalin@redhat.com>
  278. - set MANDIR=man3 to make multifunction man pages friendlier
  279. * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  280. - fix URLs
  281. * Fri Jan 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  282. - link shared library against libjpeg and libz
  283. * Tue Jan 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  284. - enable zip and jpeg codecs
  285. - change defattr in normal package to 0755
  286. - add defattr to -devel package
  287. * Wed Dec 22 1999 Bill Nottingham <notting@redhat.com>
  288. - update to 3.5.4
  289. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  290. - auto rebuild in the new build environment (release 6)
  291. * Wed Jan 13 1999 Cristian Gafton <gafton@redhat.com>
  292. - build for glibc 2.1
  293. * Wed Jun 10 1998 Prospector System <bugs@redhat.com>
  294. - translations modified for de
  295. * Wed Jun 10 1998 Michael Fulbright <msf@redhat.com>
  296. - rebuilt against fixed jpeg libs (libjpeg-6b)
  297. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  298. - translations modified for de, fr, tr
  299. * Mon Oct 13 1997 Donnie Barnes <djb@redhat.com>
  300. - new version to replace the one from libgr
  301. - patched for glibc
  302. - added shlib support