source: projects/specs/trunk/g/gtkwave/gtkwave-vl.spec @ 9356

Revision 9356, 14.2 KB checked in by inagaki, 9 years ago (diff)

2015-02-17 Ryoichi INAGAKI <ryo1@…>

  • Judy: rebuilt
  • gtkwave: updated


Line 
1Summary:        Waveform Viewer
2Summary(ja):    波形ビューワ
3Name:           gtkwave
4Version:        3.3.64
5Release:        1%{?_dist_release}
6License:        GPLv2+
7Group:          Applications/Engineering
8URL:            http://gtkwave.sourceforge.net/
9Source0:        http://gtkwave.sourceforge.net/gtkwave-%{version}.tar.gz
10Source1:        gtkwave.desktop
11Source2:        gtkwave-16.png
12Source3:        gtkwave-32.png
13Source4:        gtkwave-48.png
14
15BuildRoot:      %{_tmppath}/%{name}-%{version}-root
16BuildRequires:  gtk2-devel
17BuildRequires:  bzip2-devel
18BuildRequires:  Judy-devel
19BuildRequires:  xz-devel
20BuildRequires:  zlib-devel
21BuildRequires:  gperf
22BuildRequires:  flex
23BuildRequires:  desktop-file-utils
24
25BuildRequires:  tk-devel
26BuildRequires:  tcl-devel >= 8.4
27
28Requires:       electronics-menu
29
30Vendor:         Project Vine
31Distribution:   Vine Linux
32
33%description
34GTKWave is a waveform viewer that can view VCD files produced by most Verilog
35simulation tools, as well as LXT files produced by certain Verilog simulation
36tools.
37
38%prep
39%setup -q
40
41%build
42%configure \
43    --disable-dependency-tracking \
44    --disable-mime-update \
45    --enable-judy
46
47make %{?_smp_mflags}
48
49%install
50%{__rm} -rf %{buildroot}
51make install \
52    DESTDIR=%{buildroot} \
53    pkgdatadir=%{_docdir}/gtkwave-%{version} \
54    INSTALL="%{__install} -p"
55
56# Icons and desktop entry
57/usr/bin/desktop-file-install --vendor "" \
58    --dir %{buildroot}%{_datadir}/applications \
59    %{SOURCE1}
60%{__install} -D -m 644 -p %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/16x16/apps/gtkwave.png
61%{__install} -D -m 644 -p %{SOURCE3} %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/gtkwave.png
62%{__install} -D -m 644 -p %{SOURCE4} %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/gtkwave.png
63
64# docs_to_include
65rm -rf docs_to_include
66mkdir -p docs_to_include
67mv %{buildroot}%{_docdir}/gtkwave-%{version}/* docs_to_include
68
69%clean
70%{__rm} -rf %{buildroot}
71
72%post
73touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
74
75%postun
76if [ $1 -eq 0 ] ; then
77        touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
78        gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
79fi
80
81%posttrans
82gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
83
84%files
85%defattr(-,root,root,-)
86%doc AUTHORS COPYING ChangeLog LICENSE.TXT README
87%doc docs_to_include/*
88%{_bindir}/evcd2vcd
89%{_bindir}/fst2vcd
90%{_bindir}/fstminer
91%{_bindir}/ghwdump
92%{_bindir}/gtkwave
93%{_bindir}/lxt2miner
94%{_bindir}/lxt2vcd
95%{_bindir}/rtlbrowse
96%{_bindir}/shmidcat
97%{_bindir}/twinwave
98%{_bindir}/vcd2fst
99%{_bindir}/vcd2lxt
100%{_bindir}/vcd2lxt2
101%{_bindir}/vcd2vzt
102%{_bindir}/vermin
103%{_bindir}/vzt2vcd
104%{_bindir}/vztminer
105%{_datadir}/applications/gtkwave.desktop
106%{_datadir}/icons/gnome/16x16/mimetypes/*.png
107%{_datadir}/icons/gnome/32x32/mimetypes/*.png
108%{_datadir}/icons/gnome/48x48/mimetypes/*.png
109%{_datadir}/icons/gtkwave_256x256x32.png
110%{_datadir}/icons/gtkwave_files_256x256x32.png
111%{_datadir}/icons/gtkwave_savefiles_256x256x32.png
112%{_datadir}/icons/hicolor/16x16/apps/gtkwave.png
113%{_datadir}/icons/hicolor/32x32/apps/gtkwave.png
114%{_datadir}/icons/hicolor/48x48/apps/gtkwave.png
115%{_datadir}/mime/packages/x-gtkwave-extension-*.xml
116%{_mandir}/man1/evcd2vcd.1*
117%{_mandir}/man1/fst2vcd.1*
118%{_mandir}/man1/fstminer.1*
119%{_mandir}/man1/ghwdump.1*
120%{_mandir}/man1/gtkwave.1*
121%{_mandir}/man1/lxt2miner.1*
122%{_mandir}/man1/lxt2vcd.1*
123%{_mandir}/man1/rtlbrowse.1*
124%{_mandir}/man1/shmidcat.1*
125%{_mandir}/man1/twinwave.1*
126%{_mandir}/man1/vcd2fst.1*
127%{_mandir}/man1/vcd2lxt.1*
128%{_mandir}/man1/vcd2lxt2.1*
129%{_mandir}/man1/vcd2vzt.1*
130%{_mandir}/man1/vermin.1*
131%{_mandir}/man1/vzt2vcd.1*
132%{_mandir}/man1/vztminer.1*
133%{_mandir}/man5/gtkwaverc.5*
134
135%changelog
136* Wed Feb 11 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.3.64-1
137- updated to 3.3.64
138- used BR: tcl-devel, tk-devel instead of tcl, tk
139- added R: electronics-menu
140
141* Mon Jan  7 2013 IWAI, Masaharu <iwai@alib.jp> 3.3.31-2vl7
142- build with Tcl/Tk 8.5.7-1
143- add Vendor and Distribution tags
144
145* Sat Feb 11 2012 NAKAMURA Kenta <kenta@vinelinux.org> 3.3.31-1
146- update to 3.3.31
147
148* Tue Jun 22 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.7-4
149- BR: tk instead of /usr/include/tcl.h /usr/include/tk.h
150  (Thanks to takemikaduchi-san)
151
152* Sun Jun 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.7-3
153- added --disable-xz at Vine Linux 5
154
155* Sun Jun 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.7-2
156- Initial build for Vine Linux
157
158* Sun Jun  6 2010 Paul Howarth <paul@city-fan.org> 3.3.7-1
159- update to 3.3.7 (general bug and compiler warning fixes)
160- -n option not needed in desktop file
161
162* Tue May  4 2010 Paul Howarth <paul@city-fan.org> 3.3.6-1
163- update to 3.3.6 (see CHANGELOG.TXT for details)
164- add desktop file and icons based on Mandriva package
165- BR: desktop-file-utils
166- add scriptlets to update icon cache
167- no longer need to fix permissions of lzma wrapper code
168
169* Sat Mar 20 2010 Paul Howarth <paul@city-fan.org> 3.3.5-1
170- update to 3.3.5 (see CHANGELOG.TXT for details)
171- add Judy-devel buildreq for improved memory usage efficiency
172
173* Mon Mar  8 2010 Paul Howarth <paul@city-fan.org> 3.3.4-1
174- update to 3.3.4 (see CHANGELOG.TXT for details)
175
176* Fri Feb 19 2010 Paul Howarth <paul@city-fan.org> 3.3.3-1
177- update to 3.3.3
178- drop upstreamed dlopen linking patch
179- drop obsolete helper apps mvl2lxt, mvl2vcd, tex2vcd and tla2vcd
180
181* Mon Feb 15 2010 Paul Howarth <paul@city-fan.org> 3.3.2-2
182- fix FTBFS due to missing -ldl linking for dlopen function (#565173)
183
184* Tue Jan  5 2010 Paul Howarth <paul@city-fan.org> 3.3.2-1
185- update to 3.3.2 (speed up operation on networked filesystems)
186
187* Sat Dec 26 2009 Paul Howarth <paul@city-fan.org> 3.3.0-1
188- update to 3.3.0
189- added tk support
190- bundled old liblzma replaced by system xz (add BR: xz-devel)
191- tcl/tk support require Fedora >= 2 or RHEL >= 4 (tcl 8.4)
192
193* Fri Sep  4 2009 Paul Howarth <paul@city-fan.org> 3.2.3-1
194- update to 3.2.3
195- fix permissions in bundled liblzma for debuginfo
196
197* Thu Aug  6 2009 Paul Howarth <paul@city-fan.org> 3.2.2-3
198- drop patch for #515672, not needed with gcc 4.4.1-4
199
200* Thu Aug  6 2009 Paul Howarth <paul@city-fan.org> 3.2.2-2
201- add patch to work around #515672 (internal compiler error on PPC)
202
203* Wed Aug  5 2009 Paul Howarth <paul@city-fan.org> 3.2.2-1
204- update to 3.2.2 (new tools evcd2vcd/fst2vcd/vcd2fst)
205- drop print-to-file patch, no longer needed
206
207* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2.1
208- rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
209
210* Wed Jul 15 2009 Paul Howarth <paul@city-fan.org> 3.2.1-2
211- add upstream patch for crash on print to file (#511858)
212
213* Tue Apr 14 2009 Paul Howarth <paul@city-fan.org> 3.2.1-1
214- update to 3.2.1
215
216* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 3.2.0-1.1
217- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
218
219* Tue Feb 17 2009 Paul Howarth <paul@city-fan.org> 3.2.0-1
220- update to 3.2.0
221
222* Mon Feb  2 2009 Paul Howarth <paul@city-fan.org> 3.2.0-0.2.RC5
223- update to 3.2.0RC5
224
225* Fri Jan 29 2009 Paul Howarth <paul@city-fan.org> 3.2.0-0.1.RC4
226- update to 3.2.0RC4 (#481264)
227- new upstream URLs
228- buildreq /usr/include/tcl.h for embedded tcl support
229
230* Thu Aug 21 2008 Paul Howarth <paul@city-fan.org> 3.1.13-1
231- update to 3.1.13
232
233* Mon Jul 14 2008 Paul Howarth <paul@city-fan.org> 3.1.12-1
234- update to 3.1.12
235
236* Thu Jun 19 2008 Paul Howarth <paul@city-fan.org> 3.1.11-1
237- update to 3.1.11
238
239* Thu May 15 2008 Paul Howarth <paul@city-fan.org> 3.1.10-1
240- update to 3.1.10
241
242* Tue Apr 22 2008 Paul Howarth <paul@city-fan.org> 3.1.9-1
243- update to 3.1.9
244
245* Mon Apr  7 2008 Paul Howarth <paul@city-fan.org> 3.1.8-1
246- update to 3.1.8
247
248* Tue Mar 25 2008 Paul Howarth <paul@city-fan.org> 3.1.7-1
249- update to 3.1.7
250
251* Wed Feb 27 2008 Paul Howarth <paul@city-fan.org> 3.1.6-1
252- update to 3.1.6
253
254* Fri Feb  1 2008 Paul Howarth <paul@city-fan.org> 3.1.4-1
255- update to 3.1.4
256
257* Tue Jan 15 2008 Paul Howarth <paul@city-fan.org> 3.1.3-1
258- update to 3.1.3
259
260* Wed Jan  2 2008 Paul Howarth <paul@city-fan.org> 3.1.2-1
261- update to 3.1.2
262
263* Fri Sep 28 2007 Paul Howarth <paul@city-fan.org> 3.1.1-1
264- update to 3.1.1
265
266* Tue Sep  4 2007 Paul Howarth <paul@city-fan.org> 3.1.0-1
267- update to 3.1.0
268
269* Fri Aug 24 2007 Paul Howarth <paul@city-fan.org> 3.0.30-3
270- clarify license as GPL, version 2 or later
271
272* Fri Jul 27 2007 Paul Howarth <paul@city-fan.org> 3.0.30-1
273- update to 3.0.30
274
275* Fri Jun  8 2007 Paul Howarth <paul@city-fan.org> 3.0.29-1
276- update to 3.0.29
277- spec file much-simplified as gtkwave is now fully autotooled
278- try to retain upstream timestamps as far as possible
279- use parallel make
280
281* Tue May  1 2007 Paul Howarth <paul@city-fan.org> 3.0.28-1
282- update to 3.0.28
283- update source URL to master source
284
285* Mon Apr 30 2007 Paul Howarth <paul@city-fan.org> 3.0.27-1
286- update to 3.0.27
287- rename "vertex" to "vermin" to avoid conflict with Vertex 3D Model Assembler
288  (http://wolfpack.twu.net/Vertex/index.html)
289
290* Fri Apr 20 2007 Paul Howarth <paul@city-fan.org> 3.0.26-1
291- update to 3.0.26
292
293* Wed Apr 11 2007 Paul Howarth <paul@city-fan.org> 3.0.25-1
294- update to 3.0.25
295
296* Thu Apr  5 2007 Paul Howarth <paul@city-fan.org> 3.0.24-1
297- update to 3.0.24
298
299* Tue Mar 20 2007 Paul Howarth <paul@city-fan.org> 3.0.23-1
300- update to 3.0.23
301
302* Mon Feb 26 2007 Paul Howarth <paul@city-fan.org> 3.0.22-1
303- update to 3.0.22
304
305* Mon Feb  5 2007 Paul Howarth <paul@city-fan.org> 3.0.21-1
306- update to 3.0.21
307
308* Wed Jan 24 2007 Paul Howarth <paul@city-fan.org> 3.0.20-1
309- update to 3.0.20
310
311* Tue Jan  2 2007 Paul Howarth <paul@city-fan.org> 3.0.19-1
312- update to 3.0.19
313
314* Tue Dec  5 2006 Paul Howarth <paul@city-fan.org> 3.0.18-1
315- update to 3.0.18
316
317* Tue Nov 28 2006 Paul Howarth <paul@city-fan.org> 3.0.17-1
318- update to 3.0.17
319
320* Tue Nov 14 2006 Paul Howarth <paul@city-fan.org> 3.0.16-1
321- update to 3.0.16
322
323* Mon Oct 30 2006 Paul Howarth <paul@city-fan.org> 3.0.15-1
324- update to 3.0.15
325
326* Wed Oct 18 2006 Paul Howarth <paul@city-fan.org> 3.0.14-1
327- update to 3.0.14
328
329* Mon Oct  9 2006 Paul Howarth <paul@city-fan.org> 3.0.13-1
330- update to 3.0.13
331
332* Tue Oct  3 2006 Paul Howarth <paul@city-fan.org> 3.0.12-2
333- rebuilt for unwind info generation, broken in gcc-4.1.1-21
334
335* Fri Sep 22 2006 Paul Howarth <paul@city-fan.org> 3.0.12-1
336- update to 3.0.12
337- create dummy libz/libbz2 Makefile.in files to ensure that config.h gets
338  generated
339
340* Thu Sep 14 2006 Paul Howarth <paul@city-fan.org> 3.0.11-1
341- update to 3.0.11
342
343* Mon Aug 21 2006 Paul Howarth <paul@city-fan.org> 3.0.10-1
344- update to 3.0.10
345
346* Fri Aug 11 2006 Paul Howarth <paul@city-fan.org> 3.0.9-1
347- update to 3.0.9
348- tarball is now .tar.gz rather than .tgz
349
350* Mon Aug  7 2006 Paul Howarth <paul@city-fan.org> 3.0.8-1
351- update to 3.0.8
352- new program and manpage: shmidcat
353
354* Fri Jul 21 2006 Paul Howarth <paul@city-fan.org> 3.0.7-1
355- update to 3.0.7
356- new program and manpage: twinwave
357
358* Mon Jul 17 2006 Paul Howarth <paul@city-fan.org> 3.0.6-1
359- update to 3.0.6
360
361* Wed Jun 28 2006 Paul Howarth <paul@city-fan.org> 3.0.5-1
362- update to 3.0.5
363- new program and manpage: ghwdump
364
365* Fri Jun  2 2006 Paul Howarth <paul@city-fan.org> 3.0.4-1
366- update to 3.0.4
367
368* Tue May 30 2006 Paul Howarth <paul@city-fan.org> 3.0.3-1
369- update to 3.0.3
370
371* Sun May 28 2006 Paul Howarth <paul@city-fan.org> 3.0.2-2
372- adding missing buildreq flex
373
374* Wed May 10 2006 Paul Howarth <paul@city-fan.org> 3.0.2-1
375- update to 3.0.2
376
377* Tue May  9 2006 Paul Howarth <paul@city-fan.org> 3.0.1-1
378- update to 3.0.1
379
380* Tue May  2 2006 Paul Howarth <paul@city-fan.org> 3.0.0-1
381- update to 3.0.0
382- add examples directory as %%doc
383- add new buildreq gperf
384- tweak Makefile.in edits to handle Makefiles under contrib/
385- add new binaries rtlbrowse and vertex
386- add new manpages for rtlbrowse, vertex, and gtkwaverc
387- %%{_mandir} no longer needs to be created manually
388- configure script now accepts --libdir
389
390* Tue Mar  7 2006 Paul Howarth <paul@city-fan.org> 1.3.86-1
391- update to 1.3.86
392
393* Mon Feb 27 2006 Paul Howarth <paul@city-fan.org> 1.3.85-1
394- update to 1.3.85
395
396* Tue Feb 21 2006 Paul Howarth <paul@city-fan.org> 1.3.84-1
397- update to 1.3.84
398- INSTALL now called INSTALL.TXT
399
400* Thu Feb 16 2006 Paul Howarth <paul@city-fan.org> 1.3.83-2
401- rebuild
402
403* Tue Jan 31 2006 Paul Howarth <paul@city-fan.org> 1.3.83-1
404- update to 1.3.83
405
406* Thu Jan 19 2006 Paul Howarth <paul@city-fan.org> 1.3.82-1
407- update to 1.3.82
408
409* Tue Dec 13 2005 Paul Howarth <paul@city-fan.org> 1.3.81-1
410- update to 1.3.81
411
412* Sun Nov 27 2005 Paul Howarth <paul@city-fan.org> 1.3.80-1
413- update to 1.3.80
414
415* Wed Nov 23 2005 Paul Howarth <paul@city-fan.org> 1.3.79-2
416- fix file permissions in debuginfo package
417
418* Mon Nov 21 2005 Paul Howarth <paul@city-fan.org> 1.3.79-1
419- update to 1.3.79
420
421* Wed Nov  9 2005 Paul Howarth <paul@city-fan.org> 1.3.78-1
422- update to 1.3.78
423
424* Tue Nov  8 2005 Paul Howarth <paul@city-fan.org> 1.3.77-1
425- update to 1.3.77
426- GHDL ghw support now included upstream, so remove patches
427
428* Mon Nov  7 2005 Paul Howarth <paul@city-fan.org> 1.3.76-3
429- clean up for Fedora Extras:
430  - don't support GTK1 builds
431  - unconditionally remove buildroot in %%clean and %%install
432  - remove redundant glib2-devel buildreq
433  - add dist tag
434
435* Mon Nov  7 2005 Thomas Sailer <t.sailer@alumni.ethz.ch> - 1.3.76-2
436- add GHDL ghw support
437
438* Thu Oct 27 2005 Paul Howarth <paul@city-fan.org> 1.3.76-1
439- update to 1.3.76
440
441* Thu Oct 13 2005 Paul Howarth <paul@city-fan.org> 1.3.73-1
442- update to 1.3.73
443
444* Mon Oct 10 2005 Paul Howarth <paul@city-fan.org> 1.3.72-1
445- update to 1.3.72
446
447* Fri Oct  7 2005 Paul Howarth <paul@city-fan.org> 1.3.71-1
448- update to 1.3.71
449
450* Thu Sep 15 2005 Paul Howarth <paul@city-fan.org> 1.3.70-1
451- update to 1.3.70
452- new program tla2vcd (with manpage)
453
454* Mon Sep  5 2005 Paul Howarth <paul@city-fan.org> 1.3.69-1
455- update to 1.3.69
456- honour %%{optflags}
457- use system bzip and zlib libraries
458
459* Fri Sep  2 2005 Paul Howarth <paul@city-fan.org> 1.3.68-1
460- update to 1.3.68
461
462* Wed Aug 25 2005 Paul Howarth <paul@city-fan.org> 1.3.67-1
463- update to 1.3.67
464
465* Wed Aug 10 2005 Paul Howarth <paul@city-fan.org> 1.3.64-1
466- update to 1.3.64
467- new programs lxt2miner & vztminer (with manpages)
468
469* Tue Jul 26 2005 Paul Howarth <paul@city-fan.org> 1.3.63-1
470- update to 1.3.63
471
472* Mon Jul 11 2005 Paul Howarth <paul@city-fan.org> 1.3.62-1
473- update to 1.3.62
474
475* Thu Apr 21 2005 Paul Howarth <paul@city-fan.org> 1.3.58-1
476- update to 1.3.58
477- include sample .gtkwaverc in doc area
478- update URL to point to new project home page
479
480* Wed Apr 13 2005 Paul Howarth <paul@city-fan.org> 1.3.57-1
481- update to 1.3.57
482- add support for building with gtk version 1 (build using: --without gtk2)
483
484* Tue Apr 12 2005 Paul Howarth <paul@city-fan.org> 1.3.56-1
485- initial RPM build
Note: See TracBrowser for help on using the repository browser.