source: projects/specs/trunk/lib/libe/libexo/libexo-vl.spec @ 1880

Revision 1880, 5.3 KB checked in by inagaki, 14 years ago (diff)

rebuilt with rpm-4.8.1: libexo, xfce4-panel

Line 
1%define srcname exo
2
3Summary: extension library to Xfce
4Summary(ja): Xfce の拡張ライブラリ
5Name: libexo
6Version: 0.3.107
7Release: 2%{?_dist_release}
8
9Group: System Environment/Libraries
10License: LGPL
11URL: http://www.xfce.org/
12
13Source0: http://www.xfce.org/archive/xfce-%{version}/src/%{srcname}-%{version}.tar.bz2
14
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16BuildRequires: glib2-devel >= 2.6.4
17BuildRequires: gtk2-devel >= 2.6.0
18BuildRequires: libxfce4util-devel >= 4.2.2
19BuildRequires: libnotify-devel >= 0.4.0
20BuildRequires: hal-devel >= 0.5.7
21BuildRequires: python-devel pygtk2-devel
22BuildRequires: perl-URI
23Requires(post): gtk2
24Requires(postun): gtk2
25
26Provides: %{srcname} = %{version}-%{release}
27
28Vendor: Project Vine
29Distribution: Vine Linux
30
31%description
32libexo is the extension library to Xfce developed by os-cillation.
33While Xfce ships with quite a few libraries that are primarly targeted
34at desktop development, libexo is targeted at application development,
35with a focus on applications for Xfce.
36
37%description -l ja
38libexo は os-cillation により開発された Xfce の拡張ライブラリです.
39Xfce はデスクトップ環境の開発を第一の目的としたごくわずかのライブラリ
40と共に作成されていますが,libexo はアプリケーションの開発,それも
41Xfce 用のアプリケーション開発に焦点を定めています.
42
43%package -n %{name}-devel
44Summary: Header files and libraries for developing apps which will use %{name}
45Summary(ja): libexo の開発用ヘッダファイル及びライブラリ
46Group: Development/Libraries
47Requires: %{name} = %{version}-%{release}
48Requires: glib2-devel >= 2.6.4
49Requires: gtk2-devel >= 2.6.0
50Requires: libxfce4util-devel >= 4.2.2
51Requires: hal-devel >= 0.5.7
52Provides: %{srcname}-devel = %{version}-%{release}
53
54%description -n %{name}-devel
55The libexo-devel package contains the header files and libraries needed
56to develop programs that use the libexo library.
57
58%description -n %{name}-devel -l ja
59libexo-develはlibexoライブラリを用いるプログラムの開発に
60必要なヘッダファイル及びライブラリを含むパッケージです。
61
62%prep
63%setup -q -n %{srcname}-%{version}
64
65%build
66%configure --disable-static
67%__make
68
69%install
70rm -rf $RPM_BUILD_ROOT
71%makeinstall
72
73rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
74rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
75
76%clean
77rm -rf $RPM_BUILD_ROOT
78
79%post
80touch --no-create %{_datadir}/icons/hicolor
81if [ -x /usr/bin/gtk-update-icon-cache ]; then
82  /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/hicolor;
83fi
84/sbin/ldconfig
85
86%postun
87touch --no-create %{_datadir}/icons/hicolor
88if [ -x /usr/bin/gtk-update-icon-cache ]; then
89  /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/hicolor;
90fi
91/sbin/ldconfig
92
93%files
94%defattr(-,root,root)
95%doc AUTHORS COPYING ChangeLog README THANKS TODO
96%{_sysconfdir}/xdg/xfce4/helpers.rc
97%{_sysconfdir}/xdg/xfce4/mount.rc
98%{_bindir}/*
99%{_libdir}/lib*.so.*
100%{_libdir}/python?.?/site-packages/*
101%{_libexecdir}/*
102%{_datadir}/applications/*.desktop
103%{_datadir}/icons/hicolor/*/apps/*.png
104%{_datadir}/pixmaps/exo-0.3
105%{_datadir}/pygtk/2.0/*
106%{_datadir}/xfce4/doc/*/*
107%{_datadir}/xfce4/helpers
108%{_localedir}/*/LC_MESSAGES/lib*.mo
109%{_mandir}/man1/*
110
111%files -n %{name}-devel
112%defattr(-,root,root)
113%{_libdir}/lib*.so
114%{_libdir}/pkgconfig/*.pc
115%{_includedir}/exo-0.3
116%{_datadir}/gtk-doc/html/exo-0.3
117
118%changelog
119* Thu Sep 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.107-2
120- rebuilt with rpm-4.8.1 for pkg-config
121
122* Sun May 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.107-1
123- new upstrem release
124- built with new toolchain
125
126* Mon Feb  8 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.106-1
127- new upstrem release
128- added BR: perl-URI
129
130* Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.3.105-2
131- rebuilt with python-2.6.4
132
133* Sun Nov  1 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.105-1
134- new upstrem release
135
136* Fri May 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.101-1
137- new upstrem release
138- removed lib*.a from devel package
139
140* Sun Aug 17 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.4-1
141- applied with new versioning policy
142- spec in UTF-8
143
144* Fri Jan 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.3.4-0vl3
145- add BuildRequires: libnotify >= 0.4.0, xfce-mcs-plugins >= 4.2.2
146
147* Sun Dec 23 2007 UECHI Yasumasa <uechi@potaway.net> 0.3.4-0vl2
148- new upstream release.
149
150* Sun Jul 29 2007 UECHI Yasumasa <uechi@potaway.net> 0.3.2-0vl2
151- build for VineSeed
152
153* Sat Jul 28 2007 UECHI Yasumasa <uechi@potaway.net> 0.3.2-0vl1
154- new upstream version
155- add %{_sysconfdir}/xdg/xfce4/helpers.rc in files section.
156- add %{_bindir}/* in files section.
157- add %{_libdir}/xfce4 in files section.
158- add %{_libexecdir}/* in files section.
159- add %{_datadir}/icons/hicolor/*/apps/*.png in files section.
160- add %{_mandir}/man1/* in files section.
161- add %{_datadir}/xfce4/doc/*/* in files section.
162- add %{_datadir}/xfce4/helpers in files section.
163- remove %{_datadir}/gtk-doc/html/exo in files section.
164- update icon-cache in %post and %postun.
165
166* Fri Aug 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.0-0vl3
167- changed Group to System Environment/Libraires
168- changed devel Group to Development/Libraries
169- added %post and %postun section
170
171* Fri Apr 22 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.3.0-0vl2
172- rebuild for VineSeed
173
174* Sun Apr 17 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 0.3.0-0vl1
175- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.