make-vl.spec 6.7 KB

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