summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2007-01-30 20:21:52 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2007-01-30 20:21:52 +0000
commit3bfc91415520e580243c57b889a39459537fad80 (patch)
tree9c7920d747a09751cdc5f1d069e59c75352ca67e /app-admin
parentUpdate HOMEPAGE, bug #155466 (diff)
downloadgentoo-2-3bfc91415520e580243c57b889a39459537fad80.tar.gz
gentoo-2-3bfc91415520e580243c57b889a39459537fad80.tar.bz2
gentoo-2-3bfc91415520e580243c57b889a39459537fad80.zip
1.7.1 version bump.
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/radmind/ChangeLog9
-rw-r--r--app-admin/radmind/files/digest-radmind-1.7.13
-rw-r--r--app-admin/radmind/radmind-1.7.1.ebuild34
3 files changed, 44 insertions, 2 deletions
diff --git a/app-admin/radmind/ChangeLog b/app-admin/radmind/ChangeLog
index 3ef3a47bc2b8..271a73db917e 100644
--- a/app-admin/radmind/ChangeLog
+++ b/app-admin/radmind/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-admin/radmind
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/radmind/ChangeLog,v 1.1 2006/10/09 20:24:49 jokey Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/radmind/ChangeLog,v 1.2 2007/01/30 20:21:52 vanquirius Exp $
+
+*radmind-1.7.1 (30 Jan 2007)
+
+ 30 Jan 2007; Marcelo Goes <vanquirius@gentoo.org> +radmind-1.7.1.ebuild:
+ 1.7.1 version bump.
*radmind-1.7.0 (09 Oct 2006)
diff --git a/app-admin/radmind/files/digest-radmind-1.7.1 b/app-admin/radmind/files/digest-radmind-1.7.1
new file mode 100644
index 000000000000..253601fc7563
--- /dev/null
+++ b/app-admin/radmind/files/digest-radmind-1.7.1
@@ -0,0 +1,3 @@
+MD5 cdc83d33a111bdf883ca8291129c81fc radmind-1.7.1.tar.gz 378163
+RMD160 9ee6990f72a022e2c42380e6936462afb3191bb7 radmind-1.7.1.tar.gz 378163
+SHA256 24e5a12bb3d6d94d3587a1ed5c31df97da168d765507b4ec33ab212403542bdd radmind-1.7.1.tar.gz 378163
diff --git a/app-admin/radmind/radmind-1.7.1.ebuild b/app-admin/radmind/radmind-1.7.1.ebuild
new file mode 100644
index 000000000000..8434fd9626da
--- /dev/null
+++ b/app-admin/radmind/radmind-1.7.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/radmind/radmind-1.7.1.ebuild,v 1.1 2007/01/30 20:21:52 vanquirius Exp $
+
+inherit eutils
+
+DESCRIPTION="A suite of Unix command-line tools and a server designed to remotely administer the file systems of multiple Unix machines."
+HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/"
+SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="ssl"
+
+DEPEND="virtual/libc
+ ssl? ( dev-libs/openssl )"
+RDEPEND=${DEPEND}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
+}
+
+src_compile() {
+ econf $(use_with ssl) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc README VERSION COPYRIGHT
+}