source: projects/specs/branches/6/b/byacc/byacc-vl.spec @ 3512

Revision 3512, 4.1 KB checked in by owa, 13 years ago (diff)

rebuilt

Line 
1%define byaccdate 20070509
2
3Summary:        A public domain Yacc parser generator.
4Summary(ja):    パブリックドメイン yacc 構文解析器生成プログラム
5Name:           byacc
6Version:        1.9
7Release:        26%{?_dist_release}
8License:        public domain
9Group:          Development/Tools
10# The source is taken from FreeBSD's CVS as of Thu Sep 28 2000
11URL:            http://invisible-island.net/byacc/byacc.html
12Source:         ftp://invisible-island.net/byacc/byacc-%{byaccdate}.tgz
13Patch:          bsdyacc-linux.patch
14Patch1:         byacc-1.9-security.patch
15BuildRoot:      %{_tmppath}/%{name}-%{version}-root
16
17%description
18Byacc (Berkeley Yacc) is a public domain LALR parser generator which
19is used by many programs during their build process. 
20
21If you are going to do development on your system, you will want to install
22this package.
23
24%description -l ja
25byacc (Berkeley Yacc) はパブリックドメインの LALR 構文解析器生成
26プログラムで,多くのプログラムのビルド過程で使われます.
27
28システムで開発を行う場合は,このパッケージをインストールする
29必要があるでしょう.
30
31
32%prep
33%setup -q -n byacc-%{byaccdate}
34#%patch -p1 -b .lnx
35#%patch1 -p1 -b .security
36
37
38%build
39#chmod u+w `find .`
40#make CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
41%configure --disable-dependency-tracking
42%{__make}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46#mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
47#install -c -m 755 -s yacc $RPM_BUILD_ROOT%{_bindir}/yacc
48#install -c -m 644 yacc.1 $RPM_BUILD_ROOT%{_mandir}/man1/yacc.1
49%{__make} DESTDIR=$RPM_BUILD_ROOT install
50ln -sf yacc $RPM_BUILD_ROOT%{_bindir}/byacc
51ln -sf yacc.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/byacc.1.gz
52
53
54%clean
55rm -rf $RPM_BUILD_ROOT
56
57
58%files
59%defattr(-,root,root)
60%{_bindir}/yacc
61%{_bindir}/byacc
62%{_mandir}/man1/yacc.1*
63%{_mandir}/man1/byacc.1*
64
65
66%changelog
67* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 1.9-26
68- rebuilt with rpm-4.8.1-3
69
70* Wed Feb 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9-25
71- rebuilt with new toolchain
72
73* Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp>  1.9-24
74- spec in utf-8
75
76* Sun Apr 06 2008 Kazutaka HARADA <Kazutaka@dc4.so-net.ne.jp> 1.9-23
77- update source and sync with fedora development
78- drop unnecessary patches
79- apply new versioning policy
80 
81* Sun Jun 12 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9-22vl3
82- s/Copyright/License/
83
84* Tue Apr  8 2003 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 1.9-22vl2
85- rebuild
86
87* Fri Dec 06 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.9-22vl1
88- based on 1.9-22 from Rawhide and built for Vine Linux
89- added Japanese summary and description
90
91* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
92- automated rebuild
93
94* Thu May 23 2002 Tim Powers <timp@redhat.com>
95- automated rebuild
96
97* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
98- automated rebuild
99
100* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
101- Bump release + rebuild.
102
103* Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
104- security patch for tmpfile creation from Olaf Kirch <okir@lst.de>
105
106* Fri Sep 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
107- Update to the version in FreeBSD CVS - it's actively maintained, unlike
108  the 1993 4BSD version we used to have
109
110* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
111- automatic rebuild
112
113* Wed Jun 28 2000 Bill Nottingham <notting@redhat.com>
114- fix perms in tarball
115
116* Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
117- FHSify
118- handle RPM_OPT_FLAGS
119
120* Sat May  6 2000 Bill Nottingham <notting@redhat.com>
121- fix yacc for ia64
122
123* Fri Feb  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
124- rebuild to compress man pages
125- fix up manpage symlink
126
127* Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
128- man page fixed.
129
130* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
131- auto rebuild in the new build environment (release 10)
132
133* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
134- build for glibc 2.1
135
136* Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
137- build root
138
139* Tue May 05 1998 Prospector System <bugs@redhat.com>
140- translations modified for de, fr, tr
141
142* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
143- various spec file cleanups
144
145* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
146- built against glibc
Note: See TracBrowser for help on using the repository browser.