]> git.pld-linux.org Git - packages/afbinit.git/commitdiff
- cleaned up init script, added status, force-reload and try-restart actions
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 8 Feb 2008 18:20:31 +0000 (18:20 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- pl, package licensing information (acc. to debian/copyright it's on GPL v2)

Changed files:
    afbinit.spec -> 1.2

afbinit.spec

index 8a7e0fb755a3dfd3113aa37475c41b068eff0a0e..37f9a94859887907adb564adbc3e73925279a064 100644 (file)
@@ -1,8 +1,9 @@
-Summary:       Loads the microcode for Elite3D framebuffers to use X
+Summary:       Utility to load the microcode for Elite3D framebuffers to use X
+Summary(pl.UTF-8):     Narzędzie do wczytywania mikrokodu framebufferów Elite3D potrzebnego dla X
 Name:          afbinit
 Version:       1.0.3
 Release:       1
-License:       GPL/MIT
+License:       GPL v2
 Group:         Applications/System
 Source0:       http://ftp.pl.debian.org/debian/pool/contrib/a/afbinit/%{name}_1.0.orig.tar.gz
 # Source0-md5: c126b3ebb72e5028fd5d35fb6128316f
@@ -20,30 +21,44 @@ Graphics Accelerators aka Sun Microsystems Elite 3D found in many
 UltraSPARC systems. The microcode is necessary if you want to run X11
 with acceleration on these cards.
 
-%prep
+Note: you need to obtain Sun proprietary microcode (e.g. from Solaris
+or Sun website) and place it into /lib/firmware/afb.ucode file.
+
+%description -l pl.UTF-8
+afbinit wczytuje mikrokod do akceleratorów graficznych Sun
+Microsystems AFB Graphics Accellerator, znanych także pod nazwą Sun
+Microsystems Elite 3D, spotykanych w wielu systemach UltraSPARC.
+Mikrokod ten jest niezbędny do uruchamiania na tych kartach X11 z
+w akceleracją grafiki.
+
+Uwaga: ten program wymaga zdobycia własnościowego mikrokodu Suna (np.
+z Solarisa lub strony WWW Suna) i umieszczenia go w pliku
+/lib/firmware/afb.ucode .
 
+%prep
 %setup -q -n %{name}-1.0.orig
 %{__gzip} -dc %{SOURCE1} | patch -p1 -s
 
+# extract copyright information and adapt for PLD
+sed -ne '4,11p;$abe found in common-licenses package.' debian/copyright > LICENSE
 
 %build
-%{__cc} %{rpmcflags} \
+%{__cc} %{rpmldflags} %{rpmcflags} \
 %ifarch sparc
-    -mv8plus \
+       -mv8plus \
 %endif
-    afbinit.c -o afbinit
+       afbinit.c -o afbinit
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man8,/etc/rc.d/init.d}
 
-install -d $RPM_BUILD_ROOT/%{_sbindir}
-install afbinit $RPM_BUILD_ROOT/%{_sbindir}
-
-install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
-install %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/afbinit
+install afbinit $RPM_BUILD_ROOT%{_sbindir}
+install %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/afbinit
+install debian/afbinit.8 $RPM_BUILD_ROOT%{_mandir}/man8
 
-install -d $RPM_BUILD_ROOT%{_mandir}/man8
-install debian/afbinit.8 $RPM_BUILD_ROOT%{_mandir}/man8/
+%clean
+rm -rf $RPM_BUILD_ROOT
 
 %post
 /sbin/chkconfig --add %{name}
@@ -54,11 +69,9 @@ if [ "$1" = "0" ]; then
        /sbin/chkconfig --del %{name}
 fi
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(644,root,root,755)
+%doc LICENSE
 %attr(754,root,root) /etc/rc.d/init.d/afbinit
-%attr(755,root,root) %{_sbindir}/*
+%attr(755,root,root) %{_sbindir}/afbinit
 %{_mandir}/man8/afbinit.8*
This page took 0.071346 seconds and 4 git commands to generate.