summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-11-27 10:51:26 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-11-27 10:51:26 +0000
commit4d5738d04cba6c82cd9a66aa00619197f49ac762 (patch)
tree7a97228a519703e2001159f79ed1bb4bdb6c4da3 /net-misc
parentFixed for older libtool versions and forcing posix threads in the ebuild if g... (diff)
downloadgentoo-2-4d5738d04cba6c82cd9a66aa00619197f49ac762.tar.gz
gentoo-2-4d5738d04cba6c82cd9a66aa00619197f49ac762.tar.bz2
gentoo-2-4d5738d04cba6c82cd9a66aa00619197f49ac762.zip
Bug #248887, version bump.
(Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc5-00117-g7f0f598 x86_64)
Diffstat (limited to 'net-misc')
-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
+}