source: projects/specs/branches/6/g/garcon/garcon-vl.spec @ 3945

Revision 3945, 3.6 KB checked in by inagaki, 13 years ago (diff)

update: libexo, garcon
new: xfce4-power-manager

Line 
1%global minorversion 0.1
2
3Name:           garcon
4Summary:        Implementation of the freedesktop.org menu specification
5Version:        0.1.7
6Release:        1%{?_dist_release}
7
8Group:          System Environment/Libraries
9# garcon's source code is licensed under the LGPLv2+,
10# while its documentation is licensed under the GFDL 1.1
11License:        LGPLv2+ and GFDL
12URL:            http://xfce.org/
13
14Source0:        http://archive.xfce.org/src/xfce/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2
15Patch0:         garcon-0.1.5-redhat-menus.patch
16
17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18
19BuildRequires:  glib2-devel >= 2.14
20BuildRequires:  gtk2-devel >= 2.12.0
21BuildRequires:  gtk-doc
22BuildRequires:  gettext
23BuildRequires:  intltool
24#Requires:       redhat-menus
25
26Provides:       libxfce4menu = 4.6.2-3
27Obsoletes:      libxfce4menu < 4.6.2-3
28# because of %%{_datadir}/desktop-directories/xfce-*
29Conflicts:      xfdesktop <= 4.6.2
30
31%description
32Garcon is an implementation of the freedesktop.org menu specification replacing
33the former Xfce menu library libxfce4menu. It is based on GLib/GIO only and
34aims at covering the entire specification except for legacy menus.
35
36%package        devel
37Summary:        Development files for %{name}
38Group:          Development/Libraries
39Requires:       %{name} = %{version}-%{release}
40Requires:       gtk2-devel
41Requires:       pkgconfig
42# FIXME not yet in place
43Provides:       libxfce4menu-devel = 4.6.2-3
44Obsoletes:      libxfce4menu-devel < 4.6.2-3
45
46%description    devel
47The %{name}-devel package contains libraries and header files for
48developing applications that use %{name}.
49
50
51%prep
52%setup -q
53#patch0 -p1 -b.redhat-menus
54
55%build
56%configure --disable-static --enable-gtk-doc
57make %{?_smp_mflags} V=1
58
59
60%install
61rm -rf $RPM_BUILD_ROOT
62make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
63find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
64%find_lang %{name}
65
66%clean
67rm -rf $RPM_BUILD_ROOT
68
69
70%post -p /sbin/ldconfig
71
72%postun -p /sbin/ldconfig
73
74
75%files -f %{name}.lang
76%defattr(-,root,root,-)
77%doc AUTHORS ChangeLog COPYING NEWS README
78%config(noreplace) %{_sysconfdir}/xdg/menus/xfce-applications.menu
79%{_libdir}/*.so.*
80%{_datadir}/desktop-directories/xfce-*.directory
81
82%files devel
83%defattr(-,root,root,-)
84%doc HACKING STATUS TODO
85%{_includedir}/*
86%{_libdir}/*.so
87%{_libdir}/pkgconfig/*.pc
88%doc %{_datadir}/gtk-doc/
89
90%changelog
91* Mon May 23 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.7-1
92- new upstrem release
93
94* Tue Mar 29 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.5-4
95- Initial build for Vine Linux
96
97* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-3
98- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
99
100* Mon Jan 17 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.5-2
101- Include rebased redhat-menus.patch
102
103* Sun Jan 16 2011 Kevin Fenzi <kevin@tummy.com> - 0.1.5-1
104- Update to 0.1.5
105
106* Sun Dec 05 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.4-1
107- Update to 0.1.4
108
109* Sat Dec 04 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.3-2
110- Add patch to use redhat-menus
111
112* Mon Nov 08 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.3-1
113- Update to 0.1.2
114
115* Wed Nov 03 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.2-1
116- Update to 0.1.2
117
118* Thu Oct 07 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.1-2
119- Drop dependency on gtk-doc (#604352)
120
121* Fri Feb 26 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.1-1
122- Update to 0.1.1
123
124* Tue Jan 12 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.0-2
125- Build gtk-doc
126
127* Tue Jan 05 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.1.0-1
128- Initial spec file
Note: See TracBrowser for help on using the repository browser.