diff --git a/README.md b/README.md index 5a52161..b7f432f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # xinit +The xinit program is used to start the X Window System server and a first client program on systems that cannot start X directly from init or in environments that use multiple window systems. +When this first client exits, xinit will kill the X server and then terminate. + diff --git a/xinit.spec b/xinit.spec new file mode 100644 index 0000000..302f40d --- /dev/null +++ b/xinit.spec @@ -0,0 +1,60 @@ +Name: xinit +Version: 1.3.3 +Release: 1mamba +Summary: xinit - X Window System initializer +Group: Graphical Desktop/Applications/Utilities +Vendor: openmamba +Distribution: openmamba +Packager: Tiziana Ferro +URL: http://xorg.freedesktop.org/ +Source: http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libX11-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The xinit program is used to start the X Window System server and a first client program on systems that cannot start X directly from init or in environments that use multiple window systems. +When this first client exits, xinit will kill the X server and then terminate. + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root) +%config %{_sysconfdir}/X11/xinit/xinitrc +%{_bindir}/%{name} +%{_bindir}/startx +%{_mandir}/man?/* +%doc COPYING +#ChangeLog README + +%changelog +* Sat Sep 14 2013 Automatic Build System 1.3.3-1mamba +- automatic update by autodist + +* Wed May 02 2012 Automatic Build System 1.3.2-1mamba +- automatic version update by autodist + +* Thu Aug 11 2011 Automatic Build System 1.3.1-1mamba +- automatic version update by autodist + +* Tue Apr 26 2011 Tiziana Ferro 1.3.0-1mamba +- package created by autospec \ No newline at end of file