biosdevname/biosdevname.spec

81 lines
2.3 KiB
RPMSpec
Raw Normal View History

#
# spec file for package biosdevname (Version 0.2.4)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: biosdevname
Version: 0.2.4
Release: 1
Summary: Udev helper for naming devices per BIOS names
Group: System/Base
License: GPL v2 only
Url: http://linux.dell.com/files/biosdevname/
# SMBIOS and PCI IRQ Routing Tables only exist on these arches. It's
# also likely that other arches don't expect the PCI bus to be sorted
# breadth-first, or of so, there haven't been any comments about that
# on LKML.
ExclusiveArch: %{ix86} x86_64 ia64
Source0: http://linux.dell.com/files/%{name}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: pciutils-devel zlib-devel
# to figure out how to name the rules file
BuildRequires: udev
# for ownership of /etc/udev/rules.d
Requires: udev
%description
biosdevname in its simplest form takes an kernel name name as an
argument, and returns the BIOS-given name it "should" be. This is
necessary on systems where the BIOS name for a given device (e.g. the
label on the chassis is "Gb1") doesn't map directly and obviously to
the kernel name (e.g. eth0).
Authors:
--------
Matt Domsch <Matt_Domsch@dell.com>
%prep
%setup -q
%build
# this is a udev rule, so it needs to live in / rather than /usr
%configure --disable-rpath --libdir=/%{_lib} --prefix=/ --bindir=/bin --sbindir=/sbin
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm %{buildroot}/sbin/%{name}S || :
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc COPYING README
/sbin/%{name}
%config(noreplace) %{_sysconfdir}/udev/rules.d/*%{name}.rules
%{_mandir}/man1/*
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%changelog
* Sat Sep 22 2007 - bwalle@suse.de
- update to 0.2.4
o coordinate udev rules usage with udev maintainer
o fix crashes in pcmcia search, in_ethernet(), and incorrect
command line parsing.
* Mon Sep 03 2007 - bwalle@suse.de
- fix crash on startup
* Mon Sep 03 2007 - bwalle@suse.de
- initial package for SUSE (209107, FATE 301528)