diff options
author | James Mills <prologic@shortcircuit.net.au> | 2006-12-18 15:28:28 +1000 |
---|---|---|
committer | James Mills <prologic@shortcircuit.net.au> | 2006-12-18 15:28:28 +1000 |
commit | 5cb8630ad0ed8d4e464e11996df513f159ff9eee (patch) | |
tree | 2bd5a0c134e3ec1c73c4c8be99744bfcd3f6f980 | |
parent | 97dd2b03d99a5bc24558ca33f5499f1e08d11ca3 (diff) | |
download | contrib-5cb8630ad0ed8d4e464e11996df513f159ff9eee.tar.gz contrib-5cb8630ad0ed8d4e464e11996df513f159ff9eee.tar.xz |
ntp: New Port
-rw-r--r-- | ntp/.footprint | 15 | ||||
-rw-r--r-- | ntp/.md5sum | 1 | ||||
-rw-r--r-- | ntp/Pkgfile | 19 |
3 files changed, 35 insertions, 0 deletions
diff --git a/ntp/.footprint b/ntp/.footprint new file mode 100644 index 000000000..aea00b4fd --- /dev/null +++ b/ntp/.footprint @@ -0,0 +1,15 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ntp-keygen +-rwxr-xr-x root/root usr/bin/ntp-wait +-rwxr-xr-x root/root usr/bin/ntpd +-rwxr-xr-x root/root usr/bin/ntpdate +-rwxr-xr-x root/root usr/bin/ntpdc +-rwxr-xr-x root/root usr/bin/ntpq +-rwxr-xr-x root/root usr/bin/ntptime +-rwxr-xr-x root/root usr/bin/ntptrace +-rwxr-xr-x root/root usr/bin/sntp +-rwxr-xr-x root/root usr/bin/tickadj +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/sntp.1.gz diff --git a/ntp/.md5sum b/ntp/.md5sum new file mode 100644 index 000000000..22a8200ba --- /dev/null +++ b/ntp/.md5sum @@ -0,0 +1 @@ +916fe57525f8327f340b203f129088fa ntp-4.2.2p4.tar.gz diff --git a/ntp/Pkgfile b/ntp/Pkgfile new file mode 100644 index 000000000..ea931b73d --- /dev/null +++ b/ntp/Pkgfile @@ -0,0 +1,19 @@ +# Description: Network Time Protocol - Client and Daemon +# URL: http://ntp.isc.org/ +# Maintainer: James Mills prologic at shortcircuit dot net dot au +# Packager: James Mills prologic at shortcircuit dot net dot au +# +# Depends on: + +name=ntp +version=4.2.2p4 +release=1 +source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + chown -R root:root $PKG +} |