]> git.pld-linux.org Git - packages/nvidia-settings.git/commitdiff
- new (based on altlinux spec)
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 30 Jan 2006 21:11:16 +0000 (21:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- need for libXNVCtrl library

Changed files:
    nvidia-settings.spec -> 1.1

nvidia-settings.spec [new file with mode: 0644]

diff --git a/nvidia-settings.spec b/nvidia-settings.spec
new file mode 100644 (file)
index 0000000..9e09e2f
--- /dev/null
@@ -0,0 +1,125 @@
+%bcond_with    nvidia_settings # build the main package
+%bcond_without libXNVCtrl      # build libXNVCtrl for http://websvn.kde.org/trunk/kdenonbeta/nvidia/
+Summary:       Tool for configuring the NVIDIA driver
+Name:          nvidia-settings
+Version:       1.0
+Release:       0.3
+License:       GPL
+Group:         X11
+URL:           ftp://download.nvidia.com/XFree86/nvidia-settings/
+Source0:       ftp://download.nvidia.com/XFree86/nvidia-settings/%{name}-%{version}.tar.gz
+# Source0-md5: e6025e7fe05162c4608333702895f97c
+Patch0:                %{name}-shared.patch
+Patch1:                %{name}-xlibs.patch
+%if %{with nvidia_settings}
+#BuildRequires:        XFree86-devel
+#BuildRequires:        XFree86-libs
+#BuildRequires:        fontconfig
+#BuildRequires:        freetype2
+#BuildRequires:        glib2-devel
+#BuildRequires:        libatk-devel
+#BuildRequires:        libgtk+2-devel
+#BuildRequires:        libpango-devel
+#BuildRequires:        pkgconfig
+%endif
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The `nvidia-settings` utility is a tool for configuring the NVIDIA
+Linux graphics driver. It operates by communicating with the NVIDIA X
+driver, querying and updating state as appropriate. This communication
+is done with the NV-CONTROL X extension.
+
+Values such as brightness and gamma, XVideo attributes, temperature,
+and OpenGL settings can be queried and configured via nvidia-settings.
+
+When nvidia-settings starts, it reads the current settings from its
+configuration file and sends those settings to the X server. Then, it
+displays a graphical user interface (GUI) interface for configuring
+the current settings. When nvidia-settings exits, it queries the
+current settings from the X server and saves them to the configuration
+file.
+
+%package -n libXNVCtrl
+Summary:       libXNVCtrl library
+Group:         Libraries
+
+%description -n libXNVCtrl
+Library for accessing NV-CONTROL extension in NVIDIA's latest drivers.
+
+%package -n libXNVCtrl-devel
+Summary:       libXNVCtrl development headers and library
+Group:         Development/Libraries
+Requires:      libXNVCtrl = %{version}-%{release}
+Requires:      XFree86-devel
+
+%description -n libXNVCtrl-devel
+Library and development headers for libXNVCtrl.
+
+%package -n libXNVCtrl-static
+Summary:       libXNVCtrl static library
+Group:         Developmment/Libraries
+Requires:      libXNVCtrl-devel = %{version}-%{release}
+
+%description -n libXNVCtrl-static
+Static library for libXNVCtrl.
+
+%prep
+%setup -q
+%patch0 -p1
+%patch1 -p1
+
+%build
+%if %{with libXNVCtrl}
+cd src/libXNVCtrl
+xmkmf
+%{__make} clean
+%{__make}
+cd ../../
+%endif
+
+%if %{with nvidia_settings}
+%{__make} \
+       CC="%{__cc}" \
+       CFLAGS="%{rpmcflags}"
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%if %{with nvidia_settings}
+install -d $RPM_BUILD_ROOT%{_bindir}
+install nvidia-settings $RPM_BUILD_ROOT%{_bindir}
+%endif
+
+%if %{with libXNVCtrl}
+%{__make} install \
+       -C src/libXNVCtrl \
+       DESTDIR=$RPM_BUILD_ROOT
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -n libXNVCtrl -p /sbin/ldconfig
+%postun        -n libXNVCtrl -p /sbin/ldconfig
+
+%if %{with nvidia_settings}
+%files
+%defattr(644,root,root,755)
+%doc doc/*.txt samples
+%attr(755,root,root) %{_bindir}/%{name}
+%endif
+
+%files -n libXNVCtrl
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_prefix}/X11R6/lib64/libXNVCtrl.so.*.*.*
+
+%files -n libXNVCtrl-devel
+%defattr(644,root,root,755)
+%{_prefix}/X11R6/include/X11/extensions/NVCtrl.h
+%{_prefix}/X11R6/include/X11/extensions/NVCtrlLib.h
+%{_prefix}/X11R6/lib64/libXNVCtrl.so
+
+%files -n libXNVCtrl-static
+%defattr(644,root,root,755)
+%{_prefix}/X11R6/lib64/libXNVCtrl.a
This page took 0.035092 seconds and 4 git commands to generate.