Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 207 - rdate-1.1.ebuild (New Package)
Summary: rdate-1.1.ebuild (New Package)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Mikael Hallendal (hallski) (RETIRED)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2002-01-17 06:50 UTC by Ferry Meyndert
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ferry Meyndert 2002-01-17 06:50:37 UTC
rdate is a nice little tool i use in some of time sync scripts. ANd can get the
time from ntp server.

thinks fits best in net-misc

example usage:

rdate ntp.xs4all.nl>/dev/null;hwclock --systohc>/dev/null
Comment 1 Ferry Meyndert 2002-01-17 06:53:21 UTC
And Agin i have troubles attachinf files so here it is



#Copyright 2002 Gentoo Technologies,Inc.
#Distributed under the terms of the GNU General Public License, v2 or later
#Author Ferry Meyndert <m0rpheus@poseidon.mine.nu>

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Nice little tool too sync time with a ntp server."
SRC_URI="ftp://people.redhat.com/sopwith/${A}"
HOMEPAGE="http://people.redhat.com/sopwith/"

DEPEND=">=sys-libs/glibc-2.1.3"

RDEPEND=$DEPEND

src_unpack() {

        unpack ${A}


}

src_compile() {

        make || die
}

src_install () {

        into /usr
        dobin rdate
}