make-vl.spec 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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: 8%{?_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. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.81-8
  89. - rebuild for Vine6
  90. * Mon Jun 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-7
  91. - applied new versioning policy
  92. - added BuildRequires: perl (for %%check)
  93. - spec in UTF-8
  94. * Tue Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-6vl1
  95. - updated to 3.81 based on Fedora packages
  96. * Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
  97. - Always run testsuite with C locale.
  98. - Resolves: #232607
  99. * Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
  100. - Fix newline handling for quoted SHELL.
  101. - Resolves: #219409
  102. * Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
  103. - Upstream 3.81:
  104. - Contains several backwards incompatible changes. See NEWS inside
  105. the source package to find out more.
  106. - memory patch and error reporting patch were ported to this version.
  107. - updated ja.po
  108. * Tue Dec 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.80-0vl4
  109. - added URL
  110. - s/Copyright/License/
  111. - added some patches from fedora development 3.80-8
  112. * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
  113. - make sure errno for error reporting is not lost accross _() calls
  114. - report EOF on read pipe differently from read returning < 0 reporting
  115. * Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
  116. - refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
  117. * Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  118. - add important bug-fixes from make home-page
  119. * Wed Apr 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.80-0vl3
  120. - some patches was included from 3.79.1-17
  121. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl2
  122. - update ja.po
  123. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl1
  124. - new upstream release
  125. * Fri Dec 22 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  126. - 3.79.1-5vl1
  127. - based on 3.79.1-5 from Rawhide
  128. - rebuilt for Vine Linux
  129. - added Japanese summary and description
  130. * Mon Aug 7 2000 Tim Waugh <twaugh@redhat.com>
  131. - change info-dir entry so that 'info make' works (#15029).
  132. * Tue Aug 1 2000 Jakub Jelinek <jakub@redhat.com>
  133. - assume we don't have clock_gettime in configure, so that
  134. make is not linked against -lpthread (and thus does not
  135. limit stack to 2MB).
  136. * Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
  137. - add locale files (#14362).
  138. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  139. - automatic rebuild
  140. * Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
  141. - 3.79.1 bugfix release
  142. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  143. - FHS packaging.
  144. * Sun May 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  145. - Fix build for some odd situations, such as
  146. - previously installed make != GNU make
  147. - /bin/sh != bash
  148. * Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  149. - update to 3.79
  150. * Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
  151. - add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
  152. builds)
  153. * Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
  154. - compress man page.
  155. * Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
  156. - apply patch to fix a /tmp race condition from Thomas Biege
  157. - simplify %install
  158. * Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
  159. - update to 3.78.1.
  160. * Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
  161. - added a serial tag so it upgrades right
  162. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  163. - auto rebuild in the new build environment (release 5)
  164. * Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
  165. - added a patch for large file support in glob
  166. * Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
  167. - update to 3.77
  168. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  169. - translations modified for de, fr, tr
  170. * Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
  171. - udpated from 3.75 to 3.76
  172. - various spec file cleanups
  173. - added install-info support
  174. * Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
  175. - built against glibc