-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathvbetool.spec
66 lines (57 loc) · 1.81 KB
/
vbetool.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Summary: vbetool - run real-mode video BIOS code to alter hardware state
Summary(pl.UTF-8): vbetool - modyfikacja trybu karty graficznej za pomocą jej BIOS-u
Name: vbetool
Version: 1.1
Release: 1
License: GPL v2
Group: Applications/System
Source0: http://www.codon.org.uk/~mjg59/vbetool/download/%{name}-%{version}.tar.gz
# Source0-md5: ffb03b118867a02296d7449019ad8846
URL: http://www.codon.org.uk/~mjg59/vbetool/
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libx86-devel
BuildRequires: pciutils-devel >= 3.0.0
BuildRequires: pkgconfig
BuildRequires: zlib-devel
# it's supposed to be arch independant; see libx86.spec
ExclusiveArch: %{ix86} %{x8664}
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
vbetool uses lrmi in order to run code from the video BIOS. Currently,
it is able to alter DPMS states, save/restore video card state, and
attempt to initialize the video card from scratch. It exists primarily
in order to increase the chances of successfully recovering video
state after an ACPI S3 suspend.
%description -l pl.UTF-8
vbetool używa lrmi do uruchamiania kodu BIOS-u karty graficznej.
Aktualnie potrafi zmieniać stany DPMS, zapisywać/odtwarzać stan karty
graficznej oraz próbować zainicjować kartę od zera. Służy głównie
zwiększeniu szans właściwego odtworzenia stanu grafiki po uśpieniu
przez ACPI S3.
%prep
%setup -q
%build
%{__aclocal}
%{__autoconf}
%{__automake}
%configure \
%ifnarch %{ix86}
--with-x86emu
%endif
%{__make} \
CC="%{__cc}" \
OPT="%{rpmcflags}" \
vbetool_DEPENDENCIES= \
vbetool_LDADD=$(pkg-config --libs libpci)
%install
rm -rf $RPM_BUILD_ROOT
%{__make} install \
DESTDIR=$RPM_BUILD_ROOT \
vbetool_DEPENDENCIES=
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(644,root,root,755)
%attr(755,root,root) %{_sbindir}/vbetool
%{_mandir}/man1/vbetool.1*