2008-05-31 02:51:13 +00:00
|
|
|
Summary: Plymouth Graphical Boot Animation and Logger
|
|
|
|
Name: plymouth
|
2008-06-22 05:29:51 +00:00
|
|
|
Version: 0.4.0
|
|
|
|
Release: 1%{?dist}
|
2008-05-31 02:51:13 +00:00
|
|
|
License: GPLv2+
|
|
|
|
Group: System Environment/Base
|
|
|
|
Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2
|
|
|
|
URL: http://freedesktop.org/software/plymouth/releases
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
Obsoletes: rhgb < 1:10.0.0
|
|
|
|
Provides: rhgb = 1:10.0.0
|
|
|
|
|
|
|
|
Requires: system-logos >= 9.0.1
|
2008-06-22 05:29:51 +00:00
|
|
|
Patch0: fix-harmless-spew.patch
|
2008-05-31 02:51:13 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Plymouth provides an attractive graphical boot animation in
|
|
|
|
place of the text messages that normally get shown. Text
|
|
|
|
messages are instead redirected to a log file for viewing
|
|
|
|
after boot.
|
|
|
|
|
2008-06-09 18:26:39 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Plymouth libraries
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
This package contains the libply and libplybootsplash libraries
|
|
|
|
used by Plymouth.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Libraries and headers for writing Plymouth splash plugins
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains the libply and libplybootsplash libraries
|
|
|
|
and headers needed to develop 3rd party splash plugins for Plymouth.
|
|
|
|
|
2008-05-31 02:51:13 +00:00
|
|
|
%package plugin-fade-in
|
|
|
|
Summary: Plymouth "Fade-In" plugin
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %name = %{version}-%{release}
|
|
|
|
BuildRequires: libpng-devel
|
|
|
|
|
|
|
|
%description plugin-fade-in
|
|
|
|
This package contains the "Fade-In" boot splash plugin for
|
|
|
|
Plymouth. It features a centered logo that fades in and out
|
|
|
|
while stars twinkle around the logo during system boot up.
|
|
|
|
|
|
|
|
%package plugin-spinfinity
|
|
|
|
Summary: Plymouth "Spinfinity" plugin
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %name = %{version}-%{release}
|
|
|
|
BuildRequires: libpng-devel
|
|
|
|
|
|
|
|
%description plugin-spinfinity
|
|
|
|
This package contains the "Spinfinity" boot splash plugin for
|
|
|
|
Plymouth. It features a centered logo and animated spinner that
|
|
|
|
spins in the shape of an infinity sign.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2008-06-22 05:29:51 +00:00
|
|
|
%patch0 -p1 -b .fix-harmless-spew
|
2008-05-31 02:51:13 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --enable-tracing --disable-tests --without-boot-entry \
|
2008-06-12 14:40:29 +00:00
|
|
|
--without-default-plugin \
|
2008-05-31 02:51:13 +00:00
|
|
|
--with-logo=%{_datadir}/pixmaps/system-logo-white.png \
|
2008-06-12 14:40:29 +00:00
|
|
|
--with-background-start-color-stop=0x0073B3 \
|
2008-06-16 21:33:14 +00:00
|
|
|
--with-background-end-color-stop=0x00457E \
|
|
|
|
--with-background-color=0x00457E
|
2008-05-31 02:51:13 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2008-06-17 17:43:57 +00:00
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
rm %{_libdir}/plymouth/default.so
|
2008-06-12 14:40:29 +00:00
|
|
|
fi
|
|
|
|
|
2008-06-17 17:43:57 +00:00
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
2008-06-12 14:40:29 +00:00
|
|
|
%post plugin-spinfinity
|
|
|
|
if [ $1 -eq 1 ]; then
|
|
|
|
%{_sbindir}/plymouth-set-default-plugin spinfinity
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun plugin-spinfinity
|
|
|
|
if [ $1 -eq 0 ]; then
|
2008-06-17 17:43:57 +00:00
|
|
|
if [ "$(%{_sbindir}/plymouth-set-default-plugin)" == "spinfinity" ]; then
|
|
|
|
%{_sbindir}/plymouth-set-default-plugin --reset
|
|
|
|
fi
|
2008-06-12 14:40:29 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%post plugin-fade-in
|
2008-06-22 05:29:51 +00:00
|
|
|
#if [ $1 -eq 1 ]; then
|
|
|
|
# %{_sbindir}/plymouth-set-default-plugin fade-in
|
|
|
|
#fi
|
2008-06-12 14:40:29 +00:00
|
|
|
|
|
|
|
%postun plugin-fade-in
|
|
|
|
if [ $1 -eq 0 ]; then
|
2008-06-17 17:43:57 +00:00
|
|
|
if [ "$(%{_sbindir}/plymouth-set-default-plugin)" == "fade-in" ]; then
|
|
|
|
%{_sbindir}/plymouth-set-default-plugin --reset
|
|
|
|
fi
|
2008-06-12 14:40:29 +00:00
|
|
|
fi
|
2008-05-31 02:51:13 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc AUTHORS NEWS README
|
|
|
|
%dir %{_datadir}/plymouth
|
|
|
|
%{_libexecdir}/plymouth/plymouthd
|
|
|
|
%{_libexecdir}/plymouth/plymouth-update-initrd
|
2008-06-09 18:26:39 +00:00
|
|
|
%{_libexecdir}/plymouth/plymouth-populate-initrd
|
2008-06-12 14:40:29 +00:00
|
|
|
%{_sbindir}/plymouth-set-default-plugin
|
2008-05-31 02:51:13 +00:00
|
|
|
%{_bindir}/plymouth
|
|
|
|
%{_bindir}/rhgb-client
|
|
|
|
%{_libdir}/plymouth/details.so
|
|
|
|
%{_libdir}/plymouth/text.so
|
|
|
|
%{_localstatedir}/run/plymouth
|
|
|
|
|
2008-06-09 18:26:39 +00:00
|
|
|
%files devel
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_libdir}/libply.so
|
|
|
|
%{_libdir}/libplybootsplash.so
|
|
|
|
%{_libdir}/pkgconfig/plymouth-1.pc
|
|
|
|
%{_includedir}/plymouth-1
|
|
|
|
|
|
|
|
%files libs
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_libdir}/libply.so.*
|
|
|
|
%{_libdir}/libplybootsplash.so.*
|
|
|
|
|
2008-05-31 02:51:13 +00:00
|
|
|
%files plugin-fade-in
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%dir %{_datadir}/plymouth/fade-in
|
|
|
|
%{_datadir}/plymouth/fade-in/bullet.png
|
|
|
|
%{_datadir}/plymouth/fade-in/entry.png
|
|
|
|
%{_datadir}/plymouth/fade-in/lock.png
|
|
|
|
%{_datadir}/plymouth/fade-in/star.png
|
|
|
|
%{_libdir}/plymouth/fade-in.so
|
|
|
|
|
|
|
|
%files plugin-spinfinity
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%dir %{_datadir}/plymouth/spinfinity
|
|
|
|
%{_datadir}/plymouth/spinfinity/box.png
|
|
|
|
%{_datadir}/plymouth/spinfinity/bullet.png
|
|
|
|
%{_datadir}/plymouth/spinfinity/entry.png
|
|
|
|
%{_datadir}/plymouth/spinfinity/lock.png
|
|
|
|
%{_datadir}/plymouth/spinfinity/throbber-[0-3][0-9].png
|
|
|
|
%{_libdir}/plymouth/spinfinity.so
|
|
|
|
|
|
|
|
%changelog
|
2008-06-22 05:29:51 +00:00
|
|
|
* Sun Jun 22 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-1
|
|
|
|
- Update to version 0.4.0
|
|
|
|
- Only run if rhgb is on kernel command line
|
|
|
|
- Make text plugin more animated
|
|
|
|
|
2008-06-16 21:33:14 +00:00
|
|
|
* Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-2
|
|
|
|
- dont go back to text mode on exit
|
|
|
|
|
2008-06-16 19:10:38 +00:00
|
|
|
* Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-1
|
|
|
|
- Update to version 0.3.2
|
|
|
|
- show gradient in spinfinity plugin
|
|
|
|
- Drop fade out in spinfinity plugin
|
|
|
|
- fix throbber placement
|
|
|
|
- rename graphical.so to default.so
|
|
|
|
|
2008-06-13 03:20:02 +00:00
|
|
|
* Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-3
|
|
|
|
- scriplet should be preun, not postun
|
|
|
|
|
2008-06-12 16:47:45 +00:00
|
|
|
* Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-2
|
|
|
|
- Fix postun scriptlet
|
|
|
|
|
2008-06-12 16:20:49 +00:00
|
|
|
* Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-1
|
|
|
|
- Update to version 0.3.1
|
|
|
|
- Don't ship generated initrd scripts in tarball
|
|
|
|
|
2008-06-12 14:40:29 +00:00
|
|
|
* Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.0-1
|
|
|
|
- Update to version 0.3.0
|
|
|
|
- Better plugin handling
|
|
|
|
- Better integration with mkinitrd (pending mkinitrd changes)
|
|
|
|
- random bug fixes
|
|
|
|
|
2008-06-09 18:26:39 +00:00
|
|
|
* Mon Jun 9 2008 Ray Strode <rstrode@redhat.com> - 0.2.0-1
|
|
|
|
- Update to version 0.2.0
|
|
|
|
- Integrate more tightly with nash (pending nash changes)
|
|
|
|
- ship libs for out of tree splash plugins
|
|
|
|
- gradient support
|
|
|
|
- random bug fixes
|
|
|
|
|
2008-05-31 02:51:13 +00:00
|
|
|
* Fri May 30 2008 Ray Strode <rstrode@redhat.com> - 0.1.0-1
|
|
|
|
- Initial import, version 0.1.0
|