diff options
-rw-r--r-- | net-misc/rsnapshot/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/rsnapshot/Manifest | 16 | ||||
-rw-r--r-- | net-misc/rsnapshot/files/digest-rsnapshot-1.2.1 | 1 | ||||
-rw-r--r-- | net-misc/rsnapshot/rsnapshot-1.2.1.ebuild | 42 |
4 files changed, 54 insertions, 13 deletions
diff --git a/net-misc/rsnapshot/ChangeLog b/net-misc/rsnapshot/ChangeLog index 8ca90088ce99..c602010788b4 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.14 2005/03/11 14:20:55 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rsnapshot/ChangeLog,v 1.15 2005/04/11 20:56:42 kloeri Exp $ + +*rsnapshot-1.2.1 (11 Apr 2005) + + 11 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> + +rsnapshot-1.2.1.ebuild: + Security bump, x86 + alpha stable, bug 88681. 11 Mar 2005; Jan Brinkmann <luckyduck@gentoo.org> rsnapshot-1.2.0.ebuild: added ~amd64 to KEYWORDS, fixes #65040 diff --git a/net-misc/rsnapshot/Manifest b/net-misc/rsnapshot/Manifest index 23bfe40027d4..7c692ec2ee89 100644 --- a/net-misc/rsnapshot/Manifest +++ b/net-misc/rsnapshot/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 54b164ecb450e3f6b9be8f69ab5ece98 rsnapshot-1.2.0.ebuild 1105 -MD5 5fe21c22983583e68ef11af817f81be6 rsnapshot-1.1.6.ebuild 1130 +MD5 eb16b6bd6ab7b21fe08e4e697661a625 rsnapshot-1.2.1.ebuild 1103 MD5 bd02acb294801467afe9c65022185086 ChangeLog 2066 +MD5 54b164ecb450e3f6b9be8f69ab5ece98 rsnapshot-1.2.0.ebuild 1105 MD5 3125bec127754bb5fb5fd85f47d9ff4c metadata.xml 202 +MD5 5fe21c22983583e68ef11af817f81be6 rsnapshot-1.1.6.ebuild 1130 +MD5 98526d4680fb46b5516a19e8c48956c4 files/digest-rsnapshot-1.2.1 67 MD5 5cb328274e5b013d754bfb3993ca7c57 files/digest-rsnapshot-1.1.6 66 MD5 4347d3f04a1fee7959d80b296eff3732 files/digest-rsnapshot-1.2.0 67 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.0 (GNU/Linux) - -iD8DBQFCMalS06ebR+OMO78RAi5kAJ9SUyICbahdq3bslNpEb/dmiThazQCdGFmE -TFkxjR3bCGOekN5e0gXX0QM= -=9Ty0 ------END PGP SIGNATURE----- diff --git a/net-misc/rsnapshot/files/digest-rsnapshot-1.2.1 b/net-misc/rsnapshot/files/digest-rsnapshot-1.2.1 new file mode 100644 index 000000000000..8232250e245e --- /dev/null +++ b/net-misc/rsnapshot/files/digest-rsnapshot-1.2.1 @@ -0,0 +1 @@ +MD5 b126ae490889e5514f4a5d14a1128897 rsnapshot-1.2.1.tar.gz 137194 diff --git a/net-misc/rsnapshot/rsnapshot-1.2.1.ebuild b/net-misc/rsnapshot/rsnapshot-1.2.1.ebuild new file mode 100644 index 000000000000..52775b76e899 --- /dev/null +++ b/net-misc/rsnapshot/rsnapshot-1.2.1.ebuild @@ -0,0 +1,42 @@ +# 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.2.1.ebuild,v 1.1 2005/04/11 20:56:42 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 ~amd64" +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: /etc/rsnapshot.conf.default " + einfo " has been installed. " + einfo "This is a template. " + einfo "Copy, or move, the above file to: /etc/rsnapshot.conf " + einfo "Note that upgrading will update the template, not real config. " + einfo +} |