source: projects/specs/branches/6/k/kdbg/kdbg-vl.spec @ 833

Revision 833, 3.8 KB checked in by owa, 14 years ago (diff)

rebuilt without smp

Line 
1Summary: KDbg - a graphical user interface to gdb
2Summary(ja): GDB のグラフィカルユーザインターフェイス
3Name: kdbg
4Version: 2.1.1
5Release: 3%{?_dist_release}
6License: GPL
7URL: http://www.kdbg.org/
8Group: Applications/Development
9
10Source: %{name}-%{version}.tar.gz
11Patch0: kdbg-2.1.0-gcc44.patch
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildRequires: kdelibs3-devel
15BuildRequires: desktop-file-utils
16BuildRequires: arts-devel
17Requires(post): desktop-file-utils
18Requires(postun): desktop-file-utils
19Requires: gdb
20
21%description
22KDbg is a graphical user interface to gdb, the GNU debugger.
23It provides an intuitive interface for setting breakpoints,
24inspecting variables, and stepping through code.
25
26KDbg requires KDE, the K Desktop Environment, but you can
27of course debug any program.
28
29%prep
30%setup -q
31%patch0 -p1 -b .gcc44
32
33%build
34unset QTDIR || : ; source /etc/profile.d/qt.sh
35
36%configure \
37        --disable-rpath \
38        --enable-new-ldflags
39
40# don't use parallel build
41#make %{?_smp_mflags}
42make
43
44%install
45rm -rf $RPM_BUILD_ROOT
46make DESTDIR=$RPM_BUILD_ROOT install
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51%post
52touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
53
54%postun
55if [ $1 -eq 0 ] ; then
56  update-desktop-database -q &> /dev/null
57  touch --no-create %{_datadir}/icons/hicolor &> /dev/null
58  gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
59fi
60
61%posttrans
62update-desktop-database -q &> /dev/null
63gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
64
65
66%files
67%defattr(-,root,root)
68%doc COPYING ChangeLog README
69%{_bindir}/kdbg
70%{_datadir}/applications/*
71%{_datadir}/apps/*
72%{_datadir}/config/*
73%{_datadir}/icons/*/*/*/*
74%{_datadir}/locale/*
75%doc %{_datadir}/doc/HTML/*
76
77%changelog
78* Fri Apr 16 2010 Shu KONNO <owa@bg.wakwak.com> 2.1.1-3
79- rebuilt without smp option
80- added BR: arts-devel
81
82* Wed Mar 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.1.1-2
83- rebuilt with new toolchain
84- added %%post, %%postun and %%posttrans section
85- added Patch0 from Fedora
86  * Fri Feb 27 2009 Than Ngo <than@redhat.com> - 2.1.1-1
87  - fix build issue against gcc-4.4
88
89* Sun May 10 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.1.1-1
90- applied new versioning policy, spec in UTF-8
91- new upstream release
92
93* Sun Dec 30 2007 Shu KONNO <owa@bg.wakwak.com> 2.0.4-0vl3
94- changed configure to %%configure
95
96* Fri Jun  2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.0.4-0vl2
97- rebuild for VineSeed
98
99* Fri Jun  2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.0.4-0vl1
100- new upstream release
101- update URL
102
103* Tue Oct 18 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 2.0.0-0vl1
104- new upstream release
105
106* Sun Mar 20 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.10-0vl3
107- rebuild with kde-3.4.0 (VineSeed)
108
109* Sun Mar 20 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.10-0vl2
110- rebuild with kde-3.4.0 (Vine3.1)
111
112* Fri Oct 22 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.10-0vl1
113- source upgrade
114
115* Sat May  1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.9-0vl2
116- use License tag
117- rebuild with qt-3.3.2 and kde-3.2.2
118
119* Sun Sep 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.9-0vl1
120- source upgrade
121- change spec to build with gcc-3.2.3
122
123* Mon Jul 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.8-0vl1
124- source upgrade
125- change spec to build with gcc295
126- change make option for SMP and add script
127
128* Sun Jun 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.7-0vl2
129- rebuild with qt-3.1.2 and kde-3.1.2
130
131* Tue Mar  3 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.7-0vl1
132- source upgrade
133- build with qt-3.1.1 and kde-3.1
134
135* Mon Oct 14 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.6-0vl1
136- source upgrade
137- build with qt-3.0.5 and kde-3.0.4
138
139* Tue Aug  6 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 1.2.5-0vl1
140- first release
Note: See TracBrowser for help on using the repository browser.