make-vl.spec 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. Summary: A GNU tool which simplifies the build process for users.
  2. Summary(ja): ユーザのビルド手続きを平易にする GNU ツール
  3. Name: make
  4. Epoch: 1
  5. Version: 3.82
  6. Release: 1%{?_dist_release}
  7. License: GPL
  8. Group: Development/Tools
  9. URL: http://www.gnu.org/software/make/
  10. Source: ftp://ftp.gnu.org/gnu/make/make-%{version}.tar.bz2
  11. Source1: make-3.81-ja.po
  12. Patch1: make-3.82-noclock_gettime.patch
  13. Patch2: make-3.82-j8k.patch
  14. Patch3: make-3.82-getcwd.patch
  15. Patch4: make-3.82-err-reporting.patch
  16. # Upstream: https://savannah.gnu.org/bugs/?30748
  17. Patch6: make-3.82-weird-shell.patch
  18. Patch7: make-3.82-newlines.patch
  19. Patch8: make-3.82-jobserver.patch
  20. Patch9: make-3.82-bugfixes.patch
  21. Patch10: make-3.82-sort-blank.patch
  22. Patch11: make-3.82-copy-on-expand.patch
  23. # Upstream: https://savannah.gnu.org/bugs/?33873
  24. Patch12: make-3.82-parallel-remake.patch
  25. # http://savannah.gnu.org/bugs/?34335
  26. Patch13: make-3.82-warn_undefined_function.patch
  27. # http://lists.gnu.org/archive/html/bug-make/2011-06/msg00032.html
  28. Patch14: make-3.82-trace.patch
  29. # http://lists.gnu.org/archive/html/bug-make/2011-04/msg00002.html
  30. Patch15: make-3.82-expensive_glob.patch
  31. # Upstream: https://savannah.gnu.org/bugs/?30653
  32. Patch16: make-3.82-dont-prune-intermediate.patch
  33. Buildroot: %{_tmppath}/%{name}-%{version}-root
  34. Requires(post): /sbin/install-info
  35. Requires(preun): /sbin/install-info
  36. BuildRequires: automake >= 1.7.3
  37. BuildRequires: perl
  38. BuildRequires: procps
  39. %description
  40. A GNU tool for controlling the generation of executables and other
  41. non-source files of a program from the program's source files. Make
  42. allows users to build and install packages without any significant
  43. knowledge about the details of the build process. The details about
  44. how the program should be built are provided for make in the program's
  45. makefile.
  46. The GNU make tool should be installed on your system because it is
  47. commonly used to simplify the process of installing programs.
  48. %description -l ja
  49. プログラムのソースファイルから実行ファイル及びその他のファイルを
  50. 生成する GNU ツールです.Make を使うことでユーザは build 時の
  51. 細かいプロセスを気にせず build しインストールすることが出来ます.
  52. プログラムがどの様に build されるのかは,プログラムの Makefile に
  53. 書かれています.
  54. GNU make ツールは,プログラムのインストールを容易にするのに
  55. 非常によく使われますので,このパッケージは是非インストールして下さい.
  56. %prep
  57. %setup -q
  58. %patch1 -p1
  59. %patch2 -p1
  60. %patch3 -p1
  61. %patch4 -p1
  62. %patch6 -p1
  63. %patch7 -p1
  64. %patch8 -p1
  65. %patch9 -p1
  66. %patch10 -p1
  67. %patch11 -p1
  68. %patch12 -p0
  69. %patch13 -p2
  70. %patch14 -p1
  71. %patch15 -p0
  72. %patch16 -p0
  73. rm -f tests/scripts/features/parallelism.orig
  74. cp %{SOURCE1} po/ja.po
  75. %build
  76. config/missing --run aclocal -I config
  77. config/missing --run automake --gnu Makefile
  78. config/missing --run autoconf
  79. %configure
  80. make
  81. %install
  82. rm -rf $RPM_BUILD_ROOT
  83. %makeinstall
  84. pushd $RPM_BUILD_ROOT
  85. ln -sf make .%{_bindir}/gmake
  86. # gzip -9nf .%{_infodir}/make.info*
  87. rm -f .%{_infodir}/dir
  88. popd
  89. %find_lang %name
  90. %check
  91. echo ============TESTING===============
  92. /usr/bin/env LANG=C make check
  93. echo ============END TESTING===========
  94. %clean
  95. rm -rf ${RPM_BUILD_ROOT}
  96. %post
  97. /sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || :
  98. %preun
  99. if [ $1 = 0 ]; then
  100. /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || :
  101. fi
  102. %files -f %{name}.lang
  103. %defattr(-,root,root)
  104. %doc NEWS README
  105. %{_bindir}/*
  106. %{_mandir}/man*/*
  107. %{_infodir}/*.info*
  108. #%{_datadir}/locale/*/LC_MESSAGES/make*
  109. %changelog
  110. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.82-1
  111. - new upstream release
  112. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.81-8
  113. - rebuild for Vine6
  114. * Mon Jun 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-7
  115. - applied new versioning policy
  116. - added BuildRequires: perl (for %%check)
  117. - spec in UTF-8
  118. * Tue Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-6vl1
  119. - updated to 3.81 based on Fedora packages
  120. * Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
  121. - Always run testsuite with C locale.
  122. - Resolves: #232607
  123. * Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
  124. - Fix newline handling for quoted SHELL.
  125. - Resolves: #219409
  126. * Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
  127. - Upstream 3.81:
  128. - Contains several backwards incompatible changes. See NEWS inside
  129. the source package to find out more.
  130. - memory patch and error reporting patch were ported to this version.
  131. - updated ja.po
  132. * Tue Dec 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.80-0vl4
  133. - added URL
  134. - s/Copyright/License/
  135. - added some patches from fedora development 3.80-8
  136. * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
  137. - make sure errno for error reporting is not lost accross _() calls
  138. - report EOF on read pipe differently from read returning < 0 reporting
  139. * Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
  140. - refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
  141. * Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  142. - add important bug-fixes from make home-page
  143. * Wed Apr 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.80-0vl3
  144. - some patches was included from 3.79.1-17
  145. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl2
  146. - update ja.po
  147. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl1
  148. - new upstream release
  149. * Fri Dec 22 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  150. - 3.79.1-5vl1
  151. - based on 3.79.1-5 from Rawhide
  152. - rebuilt for Vine Linux
  153. - added Japanese summary and description
  154. * Mon Aug 7 2000 Tim Waugh <twaugh@redhat.com>
  155. - change info-dir entry so that 'info make' works (#15029).
  156. * Tue Aug 1 2000 Jakub Jelinek <jakub@redhat.com>
  157. - assume we don't have clock_gettime in configure, so that
  158. make is not linked against -lpthread (and thus does not
  159. limit stack to 2MB).
  160. * Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
  161. - add locale files (#14362).
  162. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  163. - automatic rebuild
  164. * Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
  165. - 3.79.1 bugfix release
  166. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  167. - FHS packaging.
  168. * Sun May 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  169. - Fix build for some odd situations, such as
  170. - previously installed make != GNU make
  171. - /bin/sh != bash
  172. * Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  173. - update to 3.79
  174. * Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
  175. - add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
  176. builds)
  177. * Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
  178. - compress man page.
  179. * Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
  180. - apply patch to fix a /tmp race condition from Thomas Biege
  181. - simplify %install
  182. * Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
  183. - update to 3.78.1.
  184. * Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
  185. - added a serial tag so it upgrades right
  186. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  187. - auto rebuild in the new build environment (release 5)
  188. * Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
  189. - added a patch for large file support in glob
  190. * Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
  191. - update to 3.77
  192. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  193. - translations modified for de, fr, tr
  194. * Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
  195. - udpated from 3.75 to 3.76
  196. - various spec file cleanups
  197. - added install-info support
  198. * Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
  199. - built against glibc