automake-vl.spec 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. %define api_version 1.11
  2. Summary: A GNU tool for automatically creating Makefiles.
  3. Summary(ja): Makefile を自動生成するための GNU ツール
  4. Name: automake
  5. Version: %{api_version}.1
  6. Release: 4%{?_dist_release}
  7. License: GPL
  8. Group: Development/Tools
  9. Source: ftp://ftp.gnu.org/gnu/automake/automake-%{version}.tar.bz2
  10. Patch100: automake-1.11.1_CVE-2012-3386.patch
  11. URL: http://sources.redhat.com/automake
  12. Requires: perl, autoconf >= 2.58
  13. Buildrequires: autoconf >= 2.58
  14. Requires(pre): install-info
  15. # Prereq: install-info
  16. BuildArchitectures: noarch
  17. Buildroot: %{_tmppath}/%{name}-%{version}-root
  18. Vendor: Project Vine
  19. Distribution: Vine Linux
  20. Packager: daisuke
  21. # run "make check" by default
  22. %{?_without_check: %define _without_check 1}
  23. %{!?_without_check: %define _without_check 0}
  24. %description
  25. Automake is an experimental Makefile generator. Automake was inspired
  26. by the 4.4BSD make and include files, but aims to be portable and to
  27. conform to the GNU standards for Makefile variables and targets.
  28. You should install Automake if you are developing software and would
  29. like to use its ability to automatically generate GNU standard
  30. Makefiles. If you install Automake, you will also need to install
  31. GNU's Autoconf package.
  32. %prep
  33. %setup -q -n automake-%{version}
  34. %patch100 -p1 -b .CVE-2012-3386
  35. %build
  36. ./configure --prefix=%{_prefix}
  37. %{__make} %{?_smp_mflags}
  38. %if ! %{_without_check}
  39. %{__make} check
  40. %endif
  41. %install
  42. rm -rf ${RPM_BUILD_ROOT}
  43. %makeinstall
  44. # create this dir empty so we can own it
  45. mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/aclocal
  46. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  47. %clean
  48. rm -rf ${RPM_BUILD_ROOT}
  49. %post
  50. /sbin/install-info %{_infodir}/automake.info.gz %{_infodir}/dir
  51. %preun
  52. if [ $1 = 0 ]; then
  53. /sbin/install-info --delete %{_infodir}/automake.info.gz %{_infodir}/dir
  54. fi
  55. %files
  56. %defattr(-,root,root)
  57. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
  58. %{_bindir}/*
  59. %{_infodir}/*.info*
  60. %{_datadir}/automake-%{api_version}
  61. %{_datadir}/aclocal-%{api_version}
  62. %dir %{_datadir}/aclocal
  63. %changelog
  64. * Sun Sep 30 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.11.1-4
  65. - change prereq to Require(pre)
  66. * Sat Aug 11 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.11.1-3
  67. - add patch100 for fix CVE-2012-3386 (world-writable tmp dir)
  68. * Tue Apr 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.1-2
  69. - rebuild for Vine 6
  70. * Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.1-1
  71. - new upstream release
  72. * Thu Oct 09 2008 Shu KONNO <owa@bg.wakwak.com> 1.10.1-2
  73. - spec in utf-8
  74. * Wed Apr 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.1-1
  75. - new upstream release
  76. * Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.6-0vl1
  77. - new upstream release
  78. * Thu Jun 3 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.5-0vl1
  79. - new upstream release
  80. * Wed May 5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.4-0vl1
  81. - new upstream release
  82. * Thu Apr 1 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.3-0vl1
  83. - new upstream release
  84. * Wed Feb 25 2004 Tomoya TAKA <taka@vinelinux.org> 1.8.2-0vl3
  85. - rebuild
  86. * Fri Feb 20 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.8.2-1vl2
  87. - rebuild
  88. * Thu Feb 05 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.2-0vl1
  89. - new upstream release
  90. * Mon Jan 12 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.8-1vl1
  91. - based on 1.8-1 from Rawhide and built for Vine Linux
  92. * Mon Nov 17 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.9-0vl1
  93. - new upstream release
  94. * Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.6-0vl1
  95. - new upstream release
  96. * Mon Jun 07 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.7.5-1vl1
  97. - based on 1.7.5-1 from Rawhide and built for Vine Linux
  98. * Wed Apr 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.7.3-1vl1
  99. - based on 1.7.3-1 from Rawhide and built for Vine Linux
  100. * Sun Dec 08 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.6.3-1vl2
  101. - based on 1.6.3-1 from Rawhide and built for Vine Linux
  102. * Mon Jul 29 2002 Jens Petersen <petersen@redhat.com> 1.6.3-1
  103. - bug fix release 1.6.3
  104. * Thu Jul 11 2002 Jens Petersen <petersen@redhat.com> 1.6.2-2
  105. - add buildrequires autoconf 2.52 or greater (reported by Edward Avis)
  106. * Wed Jun 19 2002 Jens Petersen <petersen@redhat.com> 1.6.2-1
  107. - 1.6.2 (bug fix release)
  108. - do "make check" after building
  109. * Thu May 23 2002 Tim Powers <timp@redhat.com> 1.6.1-2
  110. - automated rebuild
  111. * Tue Apr 23 2002 Jens Petersen <petersen@redhat.com> 1.6.1-1
  112. - 1.6.1
  113. * Tue Mar 12 2002 Jens Petersen <petersen@redhat.com> 1.6-1
  114. - new package based on automake15
  115. - 1.6
  116. * Wed Jan 23 2002 Jens Petersen <petersen@redhat.com> 1.5-8
  117. - better aclocal versioning
  118. * Wed Jan 23 2002 Jens Petersen <petersen@redhat.com> 1.5-7
  119. - don't version datadir/automake
  120. * Tue Jan 15 2002 Jens Petersen <petersen@redhat.com> 1.5-6
  121. - version suffix programs and data directories
  122. - own symlinks to programs and /usr/share/aclocal
  123. * Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.5-5
  124. - automated rebuild
  125. * Wed Jan 9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.5-4
  126. - Completely back out the fix for #56624 for now, it causes more problems
  127. than it fixes in either form.
  128. * Wed Jan 9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.5-3
  129. - Don't use AS_DIRNAME, it doesn't work.
  130. * Tue Jan 7 2002 Jens Petersen <petersen@redhat.com> 1.5-2
  131. - Patch depout.m4 to handle makefiles passed to make with "-f" (#56624)
  132. * Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.5-1
  133. - Update to 1.5 - much better to coexist with autoconf 2.52...
  134. - Fix specfile
  135. - No patches
  136. * Fri Aug 24 2001 Jens Petersen <petersen@redhat.com> - 1.4p5-2
  137. - dont raise error when there is source in a subdirectory (bug #35156).
  138. This was preventing automake from working in binutuls/gas
  139. [patch from HJ Lu <hjl@gnu.org>]
  140. - format long lines of output properly with backslash + newlines as in 1.4
  141. (bug #35259) [patch from HJ Lu <hjl@gnu.org>]
  142. * Sat Jul 21 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  143. - 1.4-p5, fixes #48788
  144. * Tue Jun 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  145. - add the patch from #20559
  146. - really update to 1.4-p4
  147. * Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  148. - update to 1.4-p4
  149. * Sat May 12 2001 Owen Taylor <otaylor@redhat.com>
  150. - Version 1.4-p1 to work with libtool-1.4
  151. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  152. - automatic rebuild
  153. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  154. - FHS packaging.
  155. * Fri Feb 04 2000 Nalin Dahyabhai <nalin@redhat.com>
  156. - fix bug #8870
  157. * Sat Aug 21 1999 Jeff Johnson <jbj@redhat.com>
  158. - revert to pristine automake-1.4.
  159. * Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
  160. - arm netwinder patch
  161. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  162. - Injected new description and group.
  163. * Mon Feb 8 1999 Jeff Johnson <jbj@redhat.com>
  164. - add patches from CVS for 6.0beta1
  165. * Sun Jan 17 1999 Jeff Johnson <jbj@redhat.com>
  166. - update to 1.4.
  167. * Mon Nov 23 1998 Jeff Johnson <jbj@redhat.com>
  168. - update to 1.3b.
  169. - add URL.
  170. * Fri Apr 24 1998 Prospector System <bugs@redhat.com>
  171. - translations modified for de, fr, tr
  172. * Tue Apr 07 1998 Erik Troan <ewt@redhat.com>
  173. - updated to 1.3
  174. * Tue Oct 28 1997 Cristian Gafton <gafton@redhat.com>
  175. - added BuildRoot; added aclocal files
  176. * Fri Oct 24 1997 Erik Troan <ewt@redhat.com>
  177. - made it a noarch package
  178. * Thu Oct 16 1997 Michael Fulbright <msf@redhat.com>
  179. - Fixed some tag lines to conform to 5.0 guidelines.
  180. * Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
  181. - updated to 1.2
  182. * Wed Mar 5 1997 msf@redhat.com <Michael Fulbright>
  183. - first version (1.0)