diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2005-04-13 20:28:21 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2005-04-13 20:28:21 +0000 |
commit | 03c3ff421c2ba84922f3e06e9af3367978b25793 (patch) | |
tree | eec87a96f77c82beeb63630b4a738749174570ba /net-misc | |
parent | new upstream version, fixes #88979. also added ~amd64 to KEYWORDS and did som... (diff) | |
download | gentoo-2-03c3ff421c2ba84922f3e06e9af3367978b25793.tar.gz gentoo-2-03c3ff421c2ba84922f3e06e9af3367978b25793.tar.bz2 gentoo-2-03c3ff421c2ba84922f3e06e9af3367978b25793.zip |
Latest 1.1.x version.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rsnapshot/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/rsnapshot/Manifest | 12 | ||||
-rw-r--r-- | net-misc/rsnapshot/files/digest-rsnapshot-1.1.7 | 1 | ||||
-rw-r--r-- | net-misc/rsnapshot/rsnapshot-1.1.7.ebuild | 45 |
4 files changed, 55 insertions, 11 deletions
diff --git a/net-misc/rsnapshot/ChangeLog b/net-misc/rsnapshot/ChangeLog index 05980bcf5c34..f506e7e4d6ad 100644 --- a/net-misc/rsnapshot/ChangeLog +++ b/net-misc/rsnapshot/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/rsnapshot # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.16 2005/04/12 06:16:15 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.17 2005/04/13 20:28:21 kloeri Exp $ + +*rsnapshot-1.1.7 (13 Apr 2005) + + 13 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> + +rsnapshot-1.1.7.ebuild: + Latest 1.1.x version. 12 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> -rsnapshot-1.1.6.ebuild, -rsnapshot-1.2.0.ebuild: diff --git a/net-misc/rsnapshot/Manifest b/net-misc/rsnapshot/Manifest index 446a3843893a..1efc7c2aa6b2 100644 --- a/net-misc/rsnapshot/Manifest +++ b/net-misc/rsnapshot/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 5dab675e2e26ac64cf96d0e5014b05db rsnapshot-1.2.1.ebuild 1100 +MD5 5799f6da0bcf619a4c4a8309b2355d1c rsnapshot-1.1.7.ebuild 1135 MD5 da52b3f0d64608f60c505f6ae7fbe70e ChangeLog 2365 MD5 3125bec127754bb5fb5fd85f47d9ff4c metadata.xml 202 MD5 98526d4680fb46b5516a19e8c48956c4 files/digest-rsnapshot-1.2.1 67 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCW2fAKf2g/qXtneoRAtSxAJ9KiEVwjge9akjXuYQvmNx5Ntd/XACgtZQe -n+WBJBjbmurhaE4VelezjSQ= -=QCoJ ------END PGP SIGNATURE----- +MD5 d048e8113a23305b3583f6abb78850f5 files/digest-rsnapshot-1.1.7 66 diff --git a/net-misc/rsnapshot/files/digest-rsnapshot-1.1.7 b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.7 new file mode 100644 index 000000000000..972a9e05be21 --- /dev/null +++ b/net-misc/rsnapshot/files/digest-rsnapshot-1.1.7 @@ -0,0 +1 @@ +MD5 032acc23c182a6138790155ec1fb997d rsnapshot-1.1.7.tar.gz 97305 diff --git a/net-misc/rsnapshot/rsnapshot-1.1.7.ebuild b/net-misc/rsnapshot/rsnapshot-1.1.7.ebuild new file mode 100644 index 000000000000..9a4e645b11ca --- /dev/null +++ b/net-misc/rsnapshot/rsnapshot-1.1.7.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/rsnapshot-1.1.7.ebuild,v 1.1 2005/04/13 20:28:21 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 alpha" +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 +} |