123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- Summary: A configuration applet for the Direct Rendering Infrastructure
- Summary(ja): DRI を設定するためのアプレット
- Name: driconf
- Version: 0.9.1
- Release: 3%{?_dist_release}
- Group: User Interface/X
- License: GPLv2+
- URL: http://dri.freedesktop.org/wiki/DriConf
- Source0: http://people.freedesktop.org/~fxkuehl/driconf/driconf-%{version}.tar.gz
- Patch1: driconf-0.9.1-setup.patch
- Patch2: driconf-0.9.1-glxinfo-unicode.patch
- Patch3: driconf-0.9.1-update-toolbar-methods.patch
- Patch4: http://patch-tracking.debian.net/patch/misc/dl/driconf/0.9.1-2/driconf_simpleui.py
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: python-devel
- BuildRequires: desktop-file-utils
- Requires: pygtk2
- Requires: glx-utils
- %description
- DRIconf is a configuration applet for the Direct Rendering Infrastructure.
- It allows customizing performance and visual quality settings of OpenGL
- drivers on a per-driver, per-screen and/or per-application level.
- The settings are stored in system wide and per-user XML configuration files,
- which are parsed by the OpenGL drivers on startup.
- DRIConf is written in Python with the python-gtk toolkit bindings.
- %prep
- %setup -q
- %patch1 -p1
- %patch2 -p1
- %patch3 -p1
- %patch4 -p1
- %build
- %{__python} setup.py build
- %install
- rm -rf $RPM_BUILD_ROOT
- %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT --prefix=%{_prefix}
- %find_lang driconf
- cat << EOF > %{name}.desktop
- [Desktop Entry]
- Name=Driconf
- Comment=configuration applet for the Direct Rendering Infrastructure
- Exec=/usr/bin/driconf
- Icon=/usr/share/driconf/driconf-icon.png
- Terminal=false
- Type=Application
- Encoding=UTF-8
- Categories=Settings;
- EOF
- desktop-file-install --vendor "" \
- --dir $RPM_BUILD_ROOT/%{_datadir}/applications/ %{name}.desktop
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files -f driconf.lang
- %defattr(-,root,root,-)
- %doc COPYING CHANGELOG README TODO
- %{_bindir}/driconf
- %{python_sitelib}/dri.py
- %{python_sitelib}/dri.pyc
- %{python_sitelib}/dri.pyo
- %{python_sitelib}/driconf.py
- %{python_sitelib}/driconf.pyc
- %{python_sitelib}/driconf.pyo
- %{python_sitelib}/driconf_commonui.py
- %{python_sitelib}/driconf_commonui.pyc
- %{python_sitelib}/driconf_commonui.pyo
- %{python_sitelib}/driconf_complexui.py
- %{python_sitelib}/driconf_complexui.pyc
- %{python_sitelib}/driconf_complexui.pyo
- %{python_sitelib}/driconf_simpleui.py
- %{python_sitelib}/driconf_simpleui.pyc
- %{python_sitelib}/driconf_simpleui.pyo
- %{python_sitelib}/driconf-0.9.1-py?.?.egg-info
- %dir %{_datadir}/driconf
- %{_datadir}/driconf/card.png
- %{_datadir}/driconf/drilogo.jpg
- %{_datadir}/driconf/screen.png
- %{_datadir}/driconf/screencard.png
- %{_datadir}/driconf/driconf-icon.png
- %{_datadir}/applications/*.desktop
- %changelog
- * Thu Feb 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.1-3
- - rebuilt
- * Fri Feb 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.1-2
- - rebuild with python-2.6
- * Sun Sep 14 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.1-1
- - initial build for Vine Linux
- * Sun Jun 8 2008 Kevin Fenzi <kevin@tummy.com> - 0.9.1-8
- - Improve unicode support (fixes bug #450083)
- * Tue Jan 15 2008 Kevin Fenzi <kevin@tummy.com> - 0.9.1-7
- - Add egginfo file.
- * Tue Aug 21 2007 Kevin Fenzi <kevin@tummy.com> - 0.9.1-6
- - Update license tag.
- * Wed Dec 20 2006 Kevin Fenzi <kevin@tummy.com> - 0.9.1-5
- - Remove unneeded post/postun.
- * Tue Dec 19 2006 Kevin Fenzi <kevin@tummy.com> - 0.9.1-4
- - Changed desktop catigory to Settings.
- * Mon Dec 18 2006 Kevin Fenzi <kevin@tummy.com> - 0.9.1-3
- - Changed pygtk2-devel BuildRequires to python-devel
- - Added desktop file.
- * Sat Dec 16 2006 Kevin Fenzi <kevin@tummy.com> - 0.9.1-2
- - Added Requires for pygtk2 and glx-utils
- * Sat Dec 16 2006 Kevin Fenzi <kevin@tummy.com> - 0.9.1-1
- - Inital fedora extras packaging
- * Fri Mar 31 2005 D. Hageman <dhageman@dracken.com> 0.9.0-1
- - Updated RPM spec file to handle new version
- * Mon Mar 14 2005 D. Hageman <dhageman@dracken.com> 0.2.3-1
- - Created the initial rpm spec file.
|