summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Østergaard <kloeri@gentoo.org>2004-06-02 20:34:22 +0000
committerBryan Østergaard <kloeri@gentoo.org>2004-06-02 20:34:22 +0000
commit41b6b9bdb00811a181704620e667c85685fe81f9 (patch)
tree09bb0a223008d4719759feb68705058924289f5e /net-misc/rsnapshot
parentFix use invocation and a couple bugs involving use, particularly involving am... (diff)
downloadgentoo-2-41b6b9bdb00811a181704620e667c85685fe81f9.tar.gz
gentoo-2-41b6b9bdb00811a181704620e667c85685fe81f9.tar.bz2
gentoo-2-41b6b9bdb00811a181704620e667c85685fe81f9.zip
Bump version and add metadata.xml, see bug 52791.
Diffstat (limited to 'net-misc/rsnapshot')
-rw-r--r--net-misc/rsnapshot/ChangeLog8
-rw-r--r--net-misc/rsnapshot/Manifest2
-rw-r--r--net-misc/rsnapshot/files/digest-rsnapshot-1.1.41
-rw-r--r--net-misc/rsnapshot/metadata.xml8
-rw-r--r--net-misc/rsnapshot/rsnapshot-1.1.4.ebuild46
5 files changed, 64 insertions, 1 deletions
diff --git a/net-misc/rsnapshot/ChangeLog b/net-misc/rsnapshot/ChangeLog
index 58c829dfadde..dd7f1719a020 100644
--- a/net-misc/rsnapshot/ChangeLog
+++ b/net-misc/rsnapshot/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/rsnapshot
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.5 2004/05/01 17:15:08 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.6 2004/06/02 20:34:22 kloeri Exp $
+
+*rsnapshot-1.1.4 (02 Jun 2004)
+
+ 02 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> +metadata.xml,
+ +rsnapshot-1.1.4.ebuild:
+ Bump version and add metadata.xml, see bug 52791.
*rsnapshot-1.1.3 (01 May 2004)
diff --git a/net-misc/rsnapshot/Manifest b/net-misc/rsnapshot/Manifest
index bb9aac1b4ac9..972c76d55f82 100644
--- a/net-misc/rsnapshot/Manifest
+++ b/net-misc/rsnapshot/Manifest
@@ -1,7 +1,9 @@
MD5 4950d0bab8dc8ad8450c5106b16c44e4 rsnapshot-1.1.0.ebuild 1132
MD5 47819e81fe7f6ab467f165080a831613 rsnapshot-1.1.3.ebuild 1134
MD5 32d2f445c1af31f27be768c0065fba58 rsnapshot-1.1.2.ebuild 1133
+MD5 47819e81fe7f6ab467f165080a831613 rsnapshot-1.1.4.ebuild 1134
MD5 abe7c4ff4c8bdbc08671590886927581 ChangeLog 856
+MD5 315eef7b4a2572bb536a9f331ef3cab8 files/digest-rsnapshot-1.1.4 66
MD5 f31d0ab4d53d35c7b0ce66e85abd750d files/digest-rsnapshot-1.1.2 66
MD5 d04dca931593a33d1996d1e7ee6f64fb files/digest-rsnapshot-1.1.3 66
MD5 72b2d3805df87cc643ab774eeffa10bf files/digest-rsnapshot-1.1.0 66
diff --git a/net-misc/rsnapshot/files/digest-rsnapshot-1.1.4 b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.4
new file mode 100644
index 000000000000..5766352b7b24
--- /dev/null
+++ b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.4
@@ -0,0 +1 @@
+MD5 938a065a0da619d7d94908dc9374b63c rsnapshot-1.1.4.tar.gz 87089
diff --git a/net-misc/rsnapshot/metadata.xml b/net-misc/rsnapshot/metadata.xml
new file mode 100644
index 000000000000..2498c401fddd
--- /dev/null
+++ b/net-misc/rsnapshot/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+<maintainer>
+ <email>@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/net-misc/rsnapshot/rsnapshot-1.1.4.ebuild b/net-misc/rsnapshot/rsnapshot-1.1.4.ebuild
new file mode 100644
index 000000000000..cdab672eb6d0
--- /dev/null
+++ b/net-misc/rsnapshot/rsnapshot-1.1.4.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/rsnapshot-1.1.4.ebuild,v 1.1 2004/06/02 20:34:22 kloeri Exp $
+
+inherit eutils
+
+
+DESCRIPTION="rsnapshot is a filesystem backup utility based on rsync."
+HOMEPAGE="http://www.rsnapshot.org"
+SRC_URI="http://www.rsnapshot.org/downloads/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+RDEPEND=">=dev-lang/perl-5.8.2
+ >=sys-apps/util-linux-2.12-r4
+ >=sys-apps/coreutils-5.0.91-r4
+ >=net-misc/openssh-3.7.1_p2-r1
+ >=net-misc/rsync-2.6.0"
+
+src_compile() {
+ econf \
+ --prefix=/usr \
+ --sysconfdir=/etc || die
+
+ emake || die "emake failed"
+}
+
+src_install() {
+ make install DESTDIR=${D} || die "make install failed"
+}
+
+pkg_postinst() {
+ einfo
+ einfo "The configuration file: "
+ einfo " /etc/rsnapshot.conf.default "
+ einfo " has been installed. "
+ einfo "This is a template. "
+ einfo "Copy, or move, the above file to: "
+ einfo " /etc/rsnapshot.conf "
+ einfo "Note that upgrading will update "
+ einfo " the template, not real config. "
+ einfo
+}