From 0af3fe8aecc7ee52a6ee0eb926aab985513c4204 Mon Sep 17 00:00:00 2001 From: Andrew Shadura Date: Tue, 21 Jun 2016 11:57:24 +0200 Subject: Imported Upstream version 0.26 --- ifplugd.spec.in | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 ifplugd.spec.in (limited to 'ifplugd.spec.in') diff --git a/ifplugd.spec.in b/ifplugd.spec.in new file mode 100644 index 0000000..8dfad17 --- /dev/null +++ b/ifplugd.spec.in @@ -0,0 +1,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 +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 0.15 +- Updated to version 0.15 +- Make it depend on libdaemon + +* Thu Jan 9 2003 Asgeir Nilsen 0.11-2 +- Minor adjustments and init file patch -- cgit v1.2.3