source: projects/specs/trunk/lib/libx/libxfce4ui/libxfce4ui-vl.spec @ 9446

Revision 9446, 5.0 KB checked in by inagaki, 9 years ago (diff)

2015-03-20 Ryoichi INAGAKI <ryo1@…>

+ libexo, libxfce4ui, xfce4-session, xfwm4: updated


Line 
1Name:           libxfce4ui
2Version:        4.12.1
3Release:        1%{?_dist_release}
4Summary:        Commonly used Xfce widgets
5Summary(ja):    Xfce の共用ウィジェット
6
7Group:          System Environment/Libraries
8License:        LGPLv2+
9URL:            http://xfce.org/
10
11Source0:        http://archive.xfce.org/src/xfce/%{name}/4.12/%{name}-%{version}.tar.bz2
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14BuildRequires:  gettext
15BuildRequires:  glib2-devel >= 2.30.0
16BuildRequires:  gtk-doc
17BuildRequires:  gtk2-devel >= 2.24.0
18BuildRequires:  gtk3-devel >= 3.2.0
19BuildRequires:  intltool
20BuildRequires:  libSM-devel
21BuildRequires:  libxfce4util-devel >= 4.12.0
22BuildRequires:  startup-notification-devel >= 0.4
23BuildRequires:  xfconf-devel >= 4.12.0
24BuildRequires:  perl
25
26Obsoletes:      xfce-utils < 4.9
27
28Vendor:         Project Vine
29Distribution:   Vine Linux
30
31%description
32Libxfce4ui is used to share commonly used Xfce widgets among the Xfce applications.
33
34%package        devel
35Summary:        Development files for %{name}
36Summary(ja):    %{name} の開発用ファイル
37Group:          Development/Libraries
38Requires:       %{name} = %{version}-%{release}
39# FIXME: Enable libglade again one day
40#Requires:       glade3-libgladeui-devel
41Requires:       pkgconfig
42
43%description    devel
44The %{name}-devel package contains libraries and header files for
45developing applications that use %{name}.
46
47
48%prep
49%setup -q
50
51%build
52# FIXME: Enable libglade again one day
53%configure --enable-gtk-doc --disable-static --disable-gladeui
54# Remove rpaths
55sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
56sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
57
58# The LD_LIBRARY_PATH hack is needed for --enable-gtk-doc
59# because lt-libxfce4ui-scan is linked against libxfce4ui
60export LD_LIBRARY_PATH=$( pwd )/libxfce4ui/.libs
61
62make %{?_smp_mflags} V=1
63
64
65%install
66rm -rf $RPM_BUILD_ROOT
67make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
68find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
69%find_lang %{name}
70
71
72%clean
73rm -rf $RPM_BUILD_ROOT
74
75
76%post
77/sbin/ldconfig
78touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
79gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
80update-desktop-database %{_datadir}/applications &> /dev/null || :
81
82%postun
83/sbin/ldconfig
84if [ $1 -eq 0 ]; then
85    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
86    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
87fi
88update-desktop-database %{_datadir}/applications &> /dev/null || :
89
90
91
92%files -f %{name}.lang
93%defattr(-,root,root,-)
94%doc AUTHORS COPYING NEWS README THANKS
95%config(noreplace) %{_sysconfdir}/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
96%{_bindir}/xfce4-about
97%{_libdir}/*.so.*
98%{_datadir}/applications/xfce4-about.desktop
99%{_datadir}/icons/hicolor/48x48/apps/xfce4-logo.png
100
101%files devel
102%defattr(-,root,root,-)
103%doc TODO
104%{_includedir}/*
105%{_libdir}/*.so
106%{_libdir}/pkgconfig/*.pc
107%doc %{_datadir}/gtk-doc/
108
109%changelog
110* Thu Mar 19 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 4.12.1-1
111- new upstream release
112
113* Sat Feb 28 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 4.12.0-1
114- new upstream release
115
116* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 4.10.0-2
117- rebuild with VineSeed environment
118
119* Wed Jun 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 4.10.0-1
120- new upstream release
121- remove Patch0
122- add Obsoletes: xfce-utils < 4.9
123
124* Mon Mar 28 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.8.0-6
125- Initial build for Vine Linux
126
127* Wed Mar 16 2011 Christoph Wickert <cwickert@fedoraproject.org> - 4.8.0-5
128- Remove requirements for libxfcegui4-devel now that glade support was omitted
129
130* Tue Feb 22 2011 Rakesh Pandit <rakesh@fedoraproject.org> - 4.8.0-4
131- Disable glade as it still uses old API
132
133* Tue Feb 22 2011 Rakesh Pandit <rakesh@fedoraproject.org> - 4.8.0-3
134- Rebuild for new glade
135
136* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.0-2
137- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
138
139* Sun Jan 16 2011 Kevin Fenzi <kevin@tummy.com> - 4.8.0-1
140- Update to 4.8.0 final.
141
142* Sun Jan 02 2011 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.6-1
143- Update to 4.7.6
144
145* Mon Nov 29 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.5-1
146- Update to 4.7.5
147
148* Mon Nov 08 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.4-1
149- Update to 4.7.4
150
151* Sun Sep 05 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.3-1
152- Update to 4.7.3
153- Drop dependency on gtk-doc (#604399)
154
155* Tue Jul 27 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.2-2
156- Fix file conflict with libxfce4gui (#618719)
157
158* Fri May 21 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.2-1
159- Update to 4.7.2
160
161* Wed May 19 2010 Kevin Fenzi <kevin@tummy.com> - 4.7.1-3
162- Rebuild for new glade version.
163
164* Tue Jan 12 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.1-2
165- Fix license tag
166- Build gtk-doc
167
168* Tue Jan 05 2010 Christoph Wickert <cwickert@fedoraproject.org> - 4.7.1-1
169- Initial spec file, based on libxfcegui4.spec
170
Note: See TracBrowser for help on using the repository browser.