94 lines
2.8 KiB
RPMSpec
94 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package netdate (Version 1.2)
|
|
#
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: netdate
|
|
License: Public Domain, Freeware
|
|
Group: Productivity/Networking/Other
|
|
Provides: nkitb:/usr/sbin/netdate
|
|
AutoReqProv: on
|
|
Version: 1.2
|
|
Release: 713
|
|
Summary: Set Date and Time by ARPA Internet RFC 868
|
|
Url: http://www.ibiblio.org/pub/linux/system/network/sunacm/Other/netdate/
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Patch: %{name}-%{version}.dif
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Netdate takes a list of names of Internet hosts as arguments, selects
|
|
the one that supplies the best time, and sets the system time
|
|
accordingly.
|
|
|
|
The "best" time is chosen by polling the named hosts once each to find
|
|
their times and taking their differences from the local host's time.
|
|
These differences are used to find the largest group of hosts whose
|
|
times agree with each other within a certain limit. The first host in
|
|
the largest group is picked as the best host.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -n netdate
|
|
%patch
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS" \
|
|
CXXFLAGS="$RPM_OPT_FLAGS" \
|
|
make
|
|
|
|
%install
|
|
install -d -m 755 $RPM_BUILD_ROOT/usr/sbin
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_mandir}/man8
|
|
make DESTDIR=$RPM_BUILD_ROOT/ install
|
|
|
|
%clean
|
|
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYRIGHT
|
|
%doc %{_mandir}/man?/*
|
|
/usr/sbin/netdate
|
|
|
|
%changelog
|
|
* Mon May 22 2006 schwab@suse.de
|
|
- Don't strip binaries.
|
|
* Wed Jan 25 2006 mls@suse.de
|
|
- converted neededforbuild to BuildRequires
|
|
* Tue Feb 10 2004 postadal@suse.cz
|
|
- added RPM_OPT_FLAGS to CFLAGS and CXXFLAGS
|
|
* Sun Jan 11 2004 adrian@suse.de
|
|
- build as user
|
|
* Wed Nov 13 2002 kukuk@suse.de
|
|
- fix wtmp corruption [Bug #21740]
|
|
* Thu Feb 28 2002 bk@suse.de
|
|
- fix 64-bit bug: don't use signed when assinging to unsigned long
|
|
* Tue Apr 10 2001 kukuk@suse.de
|
|
- Add IPv6 support
|
|
* Thu Mar 22 2001 ro@suse.de
|
|
- added split-aliases as provides
|
|
* Mon Feb 19 2001 cihlar@suse.cz
|
|
- compile with $RPM_OPT_FLAGS and -D_GNU_SOURCE
|
|
- fixed file list
|
|
* Fri Dec 01 2000 smid@suse.cz
|
|
- new version 1.2
|
|
* Sat Apr 15 2000 kukuk@suse.de
|
|
- Initial package, split from nkitb.
|