package created by autospec [release 1.0.4-1mamba;Tue Apr 26 2011]

This commit is contained in:
Tiziana Ferro 2024-01-05 19:36:30 +01:00
parent a902e49d7c
commit 6bdf9b7793
2 changed files with 69 additions and 0 deletions

View File

@ -1,2 +1,15 @@
# xdriinfo
xdriinfo can be used to query configuration information of direct rendering drivers.
If no command argument is specified it lists the names of the direct rendering drivers for all screens.
Valid commands are:
- nscreens: Print the number of screens.
- driver screen: Print the name of the direct rendering driver for screen.
- options screen|driver: Print the XML document describing the configuration options of a driver.
The driver can be specified directly by driver name or indirectly by screen number.
If the driver name is specified directly then no X connection is needed.

56
xdriinfo.spec Normal file
View File

@ -0,0 +1,56 @@
Name: xdriinfo
Version: 1.0.4
Release: 1mamba
Summary: xdriinfo - query configuration information of DRI drivers
Group: Graphical Desktop/Applications/Utilities
Vendor: openmamba
Distribution: openmamba
Packager: Tiziana Ferro <tiziana.ferro@email.it>
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: libGL-devel
BuildRequires: libX11-devel
## AUTOBUILDREQ-END
BuildRequires: glproto-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
xdriinfo can be used to query configuration information of direct rendering drivers.
If no command argument is specified it lists the names of the direct rendering drivers for all screens.
Valid commands are:
- nscreens: Print the number of screens.
- driver screen: Print the name of the direct rendering driver for screen.
- options screen|driver: Print the XML document describing the configuration options of a driver.
The driver can be specified directly by driver name or indirectly by screen number.
If the driver name is specified directly then no X connection is needed.
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/%{name}
%{_mandir}/man?/*
%doc COPYING ChangeLog README
%changelog
* Tue Apr 26 2011 Tiziana Ferro <tiziana.ferro@email.it> 1.0.4-1mamba
- package created by autospec