Compare commits

..

6 commits

Author SHA1 Message Date
Fedora Release Engineering
3ab6c75a0e dist-git conversion 2010-07-29 14:51:50 +00:00
Bill Nottingham
ebc0b06064 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:17:01 +00:00
5dd9eaed16 - New upstream 0.30 release 2009-10-26 23:04:33 +00:00
88609ea8a0 - New upstream 0.29 release 2009-10-14 19:32:16 +00:00
046fa1b662 - Initial import 2009-10-13 16:52:02 +00:00
6b1233b3ce Initialize branch F-12 for uxlaunch 2009-10-13 16:32:31 +00:00
5 changed files with 76 additions and 3 deletions

3
.gitignore vendored
View file

@ -1,2 +1 @@
uxlaunch-0.53.tar.bz2
/uxlaunch-0.56.tar.bz2
uxlaunch-0.30.tar.bz2

View file

@ -1 +0,0 @@
This package is dead

1
sources Normal file
View file

@ -0,0 +1 @@
be3597115c3ae17ef4beec906e12a21c uxlaunch-0.30.tar.bz2

11
uxlaunch-fixppc.patch Normal file
View file

@ -0,0 +1,11 @@
--- uxlaunch-0.23/desktop.c.orig 2009-09-08 17:56:45.000000000 +0100
+++ uxlaunch-0.23/desktop.c 2009-09-08 17:57:21.000000000 +0100
@@ -26,6 +26,8 @@
# define __NR_ioprio_set 289
#elif defined(__x86_64__)
# define __NR_ioprio_set 251
+#elif defined (__powerpc__)
+# define __NR_ioprio_set 273
#else
# error "Unsupported arch"
#endif

63
uxlaunch.spec Normal file
View file

@ -0,0 +1,63 @@
Name: uxlaunch
Version: 0.30
Release: 1%{?dist}
Summary: A small and quick interface to start the Moblin Desktop
Group: User Interface/X
License: GPLv2
URL: http://www.moblin.org/
Source0: http://git.moblin.org/cgit.cgi/%{name}/snapshot/%{name}-%{version}.tar.bz2
Patch0: uxlaunch-fixppc.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: ConsoleKit-devel
BuildRequires: dbus-glib-devel
BuildRequires: libXau-devel
BuildRequires: pam-devel
Requires: dbus
%description
An ultra-lightweight, very cut down gdm and gnome-session replacement
designed to get the Moblin Desktop running as quick as possible.
%prep
%setup -q
%patch0 -p1 -b .fixppc
# make build verbose
sed -i 's!^\(\t\+\)@!\1!' Makefile
%build
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot} INSTALL='install -p'
# Remove execute bit from config and man files
chmod -x %{buildroot}/%{_sysconfdir}/sysconfig/uxlaunch
chmod -x %{buildroot}/%{_datadir}/man/man1/uxlaunch*
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc COPYING
%config(noreplace) %{_sysconfdir}/sysconfig/uxlaunch
%{_sbindir}/uxlaunch
%doc %{_datadir}/man/man1/uxlaunch.1.gz
%changelog
* Mon Oct 26 2009 Peter Robinson <pbrobinson@gmail.com> 0.30-1
- New upstream 0.30 release
* Wed Oct 14 2009 Peter Robinson <pbrobinson@gmail.com> 0.29-1
- New upstream 0.29 release
* Tue Oct 13 2009 Peter Robinson <pbrobinson@gmail.com> 0.28-1
- New upstream 0.28 release, updates from review
* Tue Sep 8 2009 Peter Robinson <pbrobinson@gmail.com> 0.23-1
- Initial packaging