source: projects/specs/trunk/k/kdbg/kdbg-vl.spec @ 653

Revision 653, 3.6 KB checked in by inagaki, 14 years ago (diff)

upload: kuftp, kcoloredit, kdbg, kiconedit

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