Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Pierre Carrier
3f1fc05f21 Initial import (#647926) 2010-10-31 01:21:36 +00:00
3 changed files with 48 additions and 0 deletions

1
.gitignore vendored
View file

@ -0,0 +1 @@
/derat-xsettingsd-7804894.tar.gz

View file

@ -0,0 +1 @@
5a1d656cae9460553d9a09f9fc8436c2 derat-xsettingsd-7804894.tar.gz

46
xsettingsd.spec Normal file
View file

@ -0,0 +1,46 @@
Name: xsettingsd
Version: 0
%define commit_id 7804894
Release: 0.1.20091208git%{commit_id}%{?dist}
Summary: Provides settings to X11 clients via the XSETTINGS specification
Group: System Environment/Daemons
License: BSD
URL: http://code.google.com/p/xsettingsd/
# from http://github.com/derat/xsettingsd/tarball/%{commid_id}
Source0: derat-xsettingsd-%{commit_id}.tar.gz
BuildRequires: scons libstdc++-devel libX11-devel
%description
xsettingsd is a daemon that implements the XSETTINGS specification.
It is intended to be small, fast, and minimally dependent on other libraries.
It can serve as an alternative to gnome-settings-daemon for users who are not
using the GNOME desktop environment but who still run GTK+ applications and
want to configure things such as themes, font anti-aliasing/hinting, and UI
sound effects.
%prep
%setup -q -n derat-%{name}-%{commit_id}
sed -i -e "s|-Wall -Werror|%{optflags}|g" SConstruct
%build
scons
%install
install -Dm0755 xsettingsd %{buildroot}%{_bindir}/xsettingsd
install -Dm0755 dump_xsettings %{buildroot}%{_bindir}/dump_xsettings
install -Dm0644 xsettingsd.1 %{buildroot}%{_mandir}/man1/xsettingsd.1
install -Dm0644 dump_xsettings.1 %{buildroot}%{_mandir}/man1/dump_xsettings.1
%files
%defattr(-,root,root,-)
%{_bindir}/*
%{_mandir}/man1/*
%doc README COPYING
%changelog
* Fri Oct 29 2010 Pierre Carrier <prc@redhat.com> 0-0.1.20091208git7804894
- Initial packaging