OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/startup-notification?expand=0&rev=7
This commit is contained in:
parent
a0735ac5fc
commit
8a77277f6d
3
startup-notification-0.10.tar.bz2
Normal file
3
startup-notification-0.10.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:25b3585682b14aa1528d43c8d6c9180493bf8878f0a2ff248a37d3d96c5cf9a4
|
||||||
|
size 248651
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:61de1aed379ea9d44a835baf76567e0aaa813b6d6e995db7e83e8986f69b580d
|
|
||||||
size 226231
|
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 14 15:16:13 CEST 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 0.10:
|
||||||
|
+ Remove useless functions
|
||||||
|
+ Add XCB backend
|
||||||
|
- Remove autoreconf call.
|
||||||
|
- Remove -fno-strict-aliasing from CFLAGS.
|
||||||
|
- Pass --disable-static to configure and remove .la files.
|
||||||
|
- Remove gnome-common BuildRequires.
|
||||||
|
- Do not package empty README.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 7 12:34:56 CET 2009 - olh@suse.de
|
Wed Jan 7 12:34:56 CET 2009 - olh@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package startup-notification (Version 0.9)
|
# spec file for package startup-notification (Version 0.10)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,12 +19,12 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: startup-notification
|
Name: startup-notification
|
||||||
BuildRequires: gnome-common xorg-x11-devel
|
BuildRequires: xorg-x11-devel
|
||||||
Url: http://www.freedesktop.org/wiki/Software/startup-notification
|
Url: http://www.freedesktop.org/wiki/Software/startup-notification
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: System/X11/Utilities
|
Group: System/X11/Utilities
|
||||||
Version: 0.9
|
Version: 0.10
|
||||||
Release: 103
|
Release: 1
|
||||||
Summary: Reference Implementation for the Startup-Notification Protocol
|
Summary: Reference Implementation for the Startup-Notification Protocol
|
||||||
Source: startup-notification-%{version}.tar.bz2
|
Source: startup-notification-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -69,19 +69,12 @@ Authors:
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
#{?suse_update_config:{suse_update_config -f}}
|
%configure --disable-static
|
||||||
#libtoolize --force
|
|
||||||
#aclocal
|
|
||||||
#automake -c -a -f
|
|
||||||
#autoconf
|
|
||||||
autoreconf -f -i
|
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
|
||||||
%configure
|
|
||||||
make %{?jobs:-j %jobs}
|
make %{?jobs:-j %jobs}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
#export LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir}
|
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
find %{buildroot} -type f -name "*.la" -exec %{__rm} -fv {} +
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -89,20 +82,28 @@ make %{?jobs:-j %jobs}
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS COPYING README NEWS ChangeLog
|
%doc AUTHORS COPYING NEWS ChangeLog
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/startup-notification-1.0
|
%{_includedir}/startup-notification-1.0
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_libdir}/*.*a
|
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 14 2009 vuntz@novell.com
|
||||||
|
- Update to version 0.10:
|
||||||
|
+ Remove useless functions
|
||||||
|
+ Add XCB backend
|
||||||
|
- Remove autoreconf call.
|
||||||
|
- Remove -fno-strict-aliasing from CFLAGS.
|
||||||
|
- Pass --disable-static to configure and remove .la files.
|
||||||
|
- Remove gnome-common BuildRequires.
|
||||||
|
- Do not package empty README.
|
||||||
* Wed Jan 07 2009 olh@suse.de
|
* Wed Jan 07 2009 olh@suse.de
|
||||||
- obsolete old -XXbit packages (bnc#437293)
|
- obsolete old -XXbit packages (bnc#437293)
|
||||||
* Thu Apr 10 2008 ro@suse.de
|
* Thu Apr 10 2008 ro@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user