NetworkManager/NetworkManager.spec

186 lines
4.4 KiB
RPMSpec
Raw Normal View History

ExcludeArch: s390 s390x
##########################################################
# NetworkManager RPM Specfile
##########################################################
##################################
# Main Package Info
##################################
Name: NetworkManager
Summary: A network link manager and user applications
Version: 0.3.1
2004-10-15 14:37:33 +00:00
Release: 1
Group: System Environment/Base
License: GPL
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
########################
PreReq: chkconfig
Requires: wireless-tools >= 27
Requires: dbus >= 0.22
Requires: dbus-glib >= 0.22
Requires: hal >= 0.2.95
Requires: dhclient iproute openssl glib2
########################
BuildRequires: dbus-devel >= 0.22
BuildRequires: hal-devel >= 0.2.95
BuildRequires: wireless-tools >= 27
BuildRequires: glib2-devel gtk2-devel
BuildRequires: libglade2-devel
BuildRequires: openssl-devel
BuildRequires: GConf2-devel
BuildRequires: gnome-panel-devel
BuildRequires: libgnomeui-devel
##################################
%description
NetworkManager is a network link manager that attempts to keep a
wired or wireless network connection active at all times.
##################################
# GNOME Package Info
##################################
%package gnome
Summary: GNOME applications for use with NetworkManager
Group: Applications/Internet
Requires: NetworkManager
Requires: GConf2
Requires: gnome-panel
Requires: dbus >= 0.22
Requires: dbus-glib >= 0.22
Requires: glib2
Requires: libglade2
%description gnome
This package contains GNOME utilities and applications for use
with NetworkManager, including a panel applet for wireless
networks.
##################################
# Prep/Setup
##################################
%prep
%setup -q
##################################
# Build
##################################
%build
%configure
make
##################################
# Install
##################################
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
##################################
# Clean
##################################
%clean
rm -rf $RPM_BUILD_ROOT
##################################
# Post-install
##################################
%post
2004-10-12 15:04:51 +00:00
if ! chkconfig --list | grep NetworkManager | grep on; then
/sbin/chkconfig --add NetworkManager
/sbin/chkconfig --level 123456 NetworkManager off
fi
##################################
# Pre-uninstall
##################################
%preun
if [ $1 = 0 ]; then
service NetworkManager stop > /dev/null 2>&1
/sbin/chkconfig --del NetworkManager
fi
##################################
# Post-uninstall
##################################
%postun
if [ "$1" -ge "1" ]; then
service NetworkManager condrestart > /dev/null 2>&1
fi
##################################
# Main Package Files
##################################
%files
%defattr(-,root,root)
%doc COPYING ChangeLog NEWS AUTHORS README CONTRIBUTING TODO
%{_bindir}/%{name}
%{_bindir}/NMLoadModules
%{_bindir}/NMLaunchHelper
%{_bindir}/NetworkManagerDispatcher
%dir %{_sysconfdir}/dbus-1/system.d
%config %{_sysconfdir}/dbus-1/system.d/%{name}.conf
%config %{_sysconfdir}/rc.d/init.d/%{name}
2004-09-13 21:09:43 +00:00
%{_libdir}/pkgconfig/*
%{_datadir}/locale/*/*/*.mo
%files gnome
%defattr(-,root,root)
%{_bindir}/NetworkManagerInfo
2004-10-12 15:04:51 +00:00
%{_libexecdir}/NetworkManagerNotification
2004-10-15 14:37:33 +00:00
%{_datadir}/NetworkManagerNotification
%{_sysconfdir}/dbus-1/system.d/NetworkManagerInfo.conf
%{_datadir}/NetworkManagerInfo
2004-10-15 14:37:33 +00:00
%{_datadir}/icons/hicolor/22x22/apps/*.png
2004-10-12 15:04:51 +00:00
%{_datadir}/icons/hicolor/48x48/apps/*.png
##################################
# Changelog
##################################
%changelog
* Tue Oct 19 2004 <jrb@redhat.com> - 0.3.1-1
- minor point release to improve error handling and translations
2004-10-15 14:37:33 +00:00
* Fri Oct 15 2004 Dan Williams <dcbw@redhat.com> 0.3-1
- Update from CVS, version 0.3
2004-10-12 15:04:51 +00:00
* Tue Oct 12 2004 Dan Williams <dcbw@redhat.com> 0.2-4
- Update from CVS
- Improvements:
o Better link checking on wireless cards
o Panel applet now a Notification Area icon
o Static IP configuration support
2004-09-13 21:09:43 +00:00
* Mon Sep 13 2004 Dan Williams <dcbw@redhat.com> 0.2-3
- Update from CVS
* Sat Sep 11 2004 Dan Williams <dcbw@redhat.com> 0.2-2
- Require gnome-panel, not gnome-panel-devel
- Turn off by default
* Thu Aug 26 2004 Dan Williams <dcbw@redhat.com> 0.2-1
- Update to 0.2
* Thu Aug 26 2004 Florian La Roche <Florian.LaRoche@redhat.de>
- spec-changes to req glib2 instead of glib
* Fri Aug 20 2004 Dan Williams <dcbw@redhat.com> 0.1-3
- First public release