diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-04-27 20:38:17 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-04-27 20:38:17 +0000 |
commit | da30e30df63c881e0be9f6c653000e0edb4873ba (patch) | |
tree | ad9c365070035adda78f07d27cac898cad23670f /net-misc/rsnapshot | |
parent | PPC stable profile update (Manifest recommit) (diff) | |
download | gentoo-2-da30e30df63c881e0be9f6c653000e0edb4873ba.tar.gz gentoo-2-da30e30df63c881e0be9f6c653000e0edb4873ba.tar.bz2 gentoo-2-da30e30df63c881e0be9f6c653000e0edb4873ba.zip |
Version bumped.
Diffstat (limited to 'net-misc/rsnapshot')
-rw-r--r-- | net-misc/rsnapshot/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/rsnapshot/Manifest | 2 | ||||
-rw-r--r-- | net-misc/rsnapshot/files/digest-rsnapshot-1.1.2 | 1 | ||||
-rw-r--r-- | net-misc/rsnapshot/rsnapshot-1.1.2.ebuild | 46 |
4 files changed, 55 insertions, 1 deletions
diff --git a/net-misc/rsnapshot/ChangeLog b/net-misc/rsnapshot/ChangeLog index d1711bd829a9..a7f8f1c89ca6 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.2 2004/03/19 10:12:49 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.3 2004/04/27 20:38:14 mholzer Exp $ + +*rsnapshot-1.1.2 (27 Apr 2004) + + 27 Apr 2004; Martin Holzer <mholzer@gentoo.org> rsnapshot-1.1.2.ebuild: + Version bumped. 19 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> rsnapshot-1.1.0.ebuild: fix depend (bug #45110); tidy diff --git a/net-misc/rsnapshot/Manifest b/net-misc/rsnapshot/Manifest index 6a32c65975ab..d3f59c019c24 100644 --- a/net-misc/rsnapshot/Manifest +++ b/net-misc/rsnapshot/Manifest @@ -1,3 +1,5 @@ MD5 4fbab5ce36c33869c70ada4a79639832 ChangeLog 509 MD5 4950d0bab8dc8ad8450c5106b16c44e4 rsnapshot-1.1.0.ebuild 1132 +MD5 4950d0bab8dc8ad8450c5106b16c44e4 rsnapshot-1.1.2.ebuild 1132 MD5 72b2d3805df87cc643ab774eeffa10bf files/digest-rsnapshot-1.1.0 66 +MD5 f31d0ab4d53d35c7b0ce66e85abd750d files/digest-rsnapshot-1.1.2 66 diff --git a/net-misc/rsnapshot/files/digest-rsnapshot-1.1.2 b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.2 new file mode 100644 index 000000000000..45e490ce3dbd --- /dev/null +++ b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.2 @@ -0,0 +1 @@ +MD5 806e7a6ce6a31a1890f9e7a6501e1c35 rsnapshot-1.1.2.tar.gz 82737 diff --git a/net-misc/rsnapshot/rsnapshot-1.1.2.ebuild b/net-misc/rsnapshot/rsnapshot-1.1.2.ebuild new file mode 100644 index 000000000000..7be71258fcb9 --- /dev/null +++ b/net-misc/rsnapshot/rsnapshot-1.1.2.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.2.ebuild,v 1.1 2004/04/27 20:38:17 mholzer 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" +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 +} |