summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/openrdate')
-rw-r--r--net-misc/openrdate/ChangeLog7
-rw-r--r--net-misc/openrdate/openrdate-1.2.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/net-misc/openrdate/ChangeLog b/net-misc/openrdate/ChangeLog
index 07d18fba7a76..536e9bcf5ef9 100644
--- a/net-misc/openrdate/ChangeLog
+++ b/net-misc/openrdate/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/openrdate
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openrdate/ChangeLog,v 1.1 2008/06/18 21:55:25 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openrdate/ChangeLog,v 1.2 2008/11/27 10:51:26 robbat2 Exp $
+
+*openrdate-1.2 (27 Nov 2008)
+
+ 27 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> +openrdate-1.2.ebuild:
+ Bug #248887, version bump.
*openrdate-1.1.3 (18 Jun 2008)
diff --git a/net-misc/openrdate/openrdate-1.2.ebuild b/net-misc/openrdate/openrdate-1.2.ebuild
new file mode 100644
index 000000000000..7c330986b29a
--- /dev/null
+++ b/net-misc/openrdate/openrdate-1.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openrdate/openrdate-1.2.ebuild,v 1.1 2008/11/27 10:51:26 robbat2 Exp $
+
+inherit autotools
+
+DESCRIPTION="use TCP or UDP to retrieve the current time of another machine"
+HOMEPAGE="http://sourceforge.net/projects/openrdate/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64 ~ppc"
+IUSE=""
+
+DEPEND="virtual/libc"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/${PN}-1.1.3-rename.patch
+ eautomake
+ mv docs/{,open}rdate.8
+}
+
+src_install(){
+ emake -j1 DESTDIR="${D}" install || die "make install failed"
+ newinitd "${FILESDIR}"/openrdate-initd openrdate
+ newconfd "${FILESDIR}"/openrdate-confd openrdate
+}