summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Østergaard <kloeri@gentoo.org>2004-05-01 17:15:08 +0000
committerBryan Østergaard <kloeri@gentoo.org>2004-05-01 17:15:08 +0000
commitd37174bfbb779b6ffb358c68dd11341eced337c1 (patch)
treeb671afc386409ee2d00c11118eac9b97cbb3baae /net-misc
parentversion bump. Closes #49458. (diff)
downloadhistorical-d37174bfbb779b6ffb358c68dd11341eced337c1.tar.gz
historical-d37174bfbb779b6ffb358c68dd11341eced337c1.tar.bz2
historical-d37174bfbb779b6ffb358c68dd11341eced337c1.zip
Bump version, bug #49612.
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/rsnapshot/ChangeLog7
-rw-r--r--net-misc/rsnapshot/Manifest6
-rw-r--r--net-misc/rsnapshot/files/digest-rsnapshot-1.1.31
-rw-r--r--net-misc/rsnapshot/rsnapshot-1.1.3.ebuild46
4 files changed, 57 insertions, 3 deletions
diff --git a/net-misc/rsnapshot/ChangeLog b/net-misc/rsnapshot/ChangeLog
index 1a155cc26e02..58c829dfadde 100644
--- a/net-misc/rsnapshot/ChangeLog
+++ b/net-misc/rsnapshot/ChangeLog
@@ -1,6 +1,11 @@
# 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.4 2004/04/28 16:33:50 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.5 2004/05/01 17:15:08 kloeri Exp $
+
+*rsnapshot-1.1.3 (01 May 2004)
+
+ 01 May 2004; Bryan Østergaard <kloeri@gentoo.org> +rsnapshot-1.1.3.ebuild:
+ Bump version, bug #49612.
28 Apr 2004; David Holm <dholm@gentoo.org> rsnapshot-1.1.2.ebuild:
Added to ~ppc.
diff --git a/net-misc/rsnapshot/Manifest b/net-misc/rsnapshot/Manifest
index 7766775f6222..bb9aac1b4ac9 100644
--- a/net-misc/rsnapshot/Manifest
+++ b/net-misc/rsnapshot/Manifest
@@ -1,5 +1,7 @@
-MD5 6bfc5506c5b7ac05acf76b79da32cc81 ChangeLog 717
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 72b2d3805df87cc643ab774eeffa10bf files/digest-rsnapshot-1.1.0 66
+MD5 abe7c4ff4c8bdbc08671590886927581 ChangeLog 856
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.3 b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.3
new file mode 100644
index 000000000000..c175583d3315
--- /dev/null
+++ b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.3
@@ -0,0 +1 @@
+MD5 d621e818340f5e52b5efe4b7861df3a7 rsnapshot-1.1.3.tar.gz 83829
diff --git a/net-misc/rsnapshot/rsnapshot-1.1.3.ebuild b/net-misc/rsnapshot/rsnapshot-1.1.3.ebuild
new file mode 100644
index 000000000000..68066cb280eb
--- /dev/null
+++ b/net-misc/rsnapshot/rsnapshot-1.1.3.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.3.ebuild,v 1.1 2004/05/01 17:15:08 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
+}