-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifplugd.spec.in
67 lines (54 loc) · 1.9 KB
/
ifplugd.spec.in
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
67
%define debug_package %{nil}
Summary: Detect and perform actions when an ethernet cable is (un)plugged.
Name: ifplugd
Version: @PACKAGE_VERSION@
Release: 1
Copyright: GPL
Group: Networking/Daemons
URL: http://0pointer.de/lennart/projects/ifplugd/
Source: %{name}-%{version}.tar.gz
Packager: Diego Santa Cruz <[email protected]>
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildPrereq: libdaemon-devel
%description
ifplugd is a Linux daemon which will automatically configure your
ethernet device when a cable is plugged in and automatically
unconfigure it if the cable is pulled. This is useful on laptops with
network adapters onboard , since it will only configure the interface
when a cable is really connected.
ifplugd is a rather simplistic approach to this target since it relies
on your distribution's native interface configuration system.
%prep
%setup -q
%build
%configure
make
%install
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT"
mkdir -p "$RPM_BUILD_ROOT"/usr/sbin
make DESTDIR=$RPM_BUILD_ROOT PREFIX=%{prefix} install
%clean
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf "$RPM_BUILD_ROOT"
%post
/sbin/chkconfig --add ifplugd
%preun
/sbin/chkconfig --del ifplugd
%files
%defattr(755,root,root)
%doc LICENSE README
%doc doc/README.html doc/style.css
%{_sbindir}/ifplugd
%{_sbindir}/ifplugstatus
%{_mandir}/man?/ifplugd*
%{_mandir}/man?/ifplugstatus*
%{_sysconfdir}/init.d/ifplugd
%config %{_sysconfdir}/ifplugd/ifplugd.conf
%config %{_sysconfdir}/ifplugd/ifplugd.action
%changelog
* Mon Jul 21 2003 Lennart Poettering 0.16
- Modified slightly to be auto generated by autoconf
* Wed Jul 16 2003 Diego Santa Cruz <[email protected]> 0.15
- Updated to version 0.15
- Make it depend on libdaemon
* Thu Jan 9 2003 Asgeir Nilsen <[email protected]> 0.11-2
- Minor adjustments and init file patch