diff options
author | 2011-05-27 20:56:49 +0000 | |
---|---|---|
committer | 2011-05-27 20:56:49 +0000 | |
commit | 346e3702fcf027694f35a231156c28b49e5b7706 (patch) | |
tree | af69af19b7bbaaab8aa4df71ba011924c51d4b39 /app-backup | |
parent | Remove 9.6.x. (diff) | |
download | gentoo-2-346e3702fcf027694f35a231156c28b49e5b7706.tar.gz gentoo-2-346e3702fcf027694f35a231156c28b49e5b7706.tar.bz2 gentoo-2-346e3702fcf027694f35a231156c28b49e5b7706.zip |
Bump EAPI to 4; change installation of documentation so that dodoc is not used on a directory.
(Portage version: 2.2.0_alpha36/cvs/Linux x86_64)
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/rsnapshot/ChangeLog | 9 | ||||
-rw-r--r-- | app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild | 25 |
2 files changed, 21 insertions, 13 deletions
diff --git a/app-backup/rsnapshot/ChangeLog b/app-backup/rsnapshot/ChangeLog index 2d47d7e4281e..1ca48fae66f8 100644 --- a/app-backup/rsnapshot/ChangeLog +++ b/app-backup/rsnapshot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-backup/rsnapshot -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/rsnapshot/ChangeLog,v 1.31 2010/10/13 08:31:53 hwoarang Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/rsnapshot/ChangeLog,v 1.32 2011/05/27 20:56:49 flameeyes Exp $ + + 27 May 2011; Diego E. Pettenò <flameeyes@gentoo.org> + rsnapshot-1.3.1-r1.ebuild: + Bump EAPI to 4; change installation of documentation so that dodoc is not + used on a directory. 13 Oct 2010; Markos Chandras <hwoarang@gentoo.org> metadata.xml: Remove myself from metadata.xml diff --git a/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild b/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild index bbfd9d2ff6bf..d2054036253d 100644 --- a/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild +++ b/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild,v 1.1 2010/10/10 17:23:49 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/rsnapshot/rsnapshot-1.3.1-r1.ebuild,v 1.2 2011/05/27 20:56:49 flameeyes Exp $ -EAPI=2 +EAPI=4 inherit eutils @@ -22,9 +22,10 @@ RDEPEND=">=dev-lang/perl-5.8.2 >=net-misc/rsync-2.6.0" DEPEND="${RDEPEND}" -src_prepare() { - epatch "${FILESDIR}"/${P}-cp_al.patch -} + +PATCHES=( + "${FILESDIR}"/${P}-cp_al.patch +) src_install() { # Change sysconfdir to install the template file as documentation @@ -33,13 +34,15 @@ src_install() { sysconfdir="/usr/share/doc/${PF}" \ || die - dodoc README AUTHORS TODO ChangeLog docs/* || die - insinto /usr/share/doc/${PF}/HOWTOs - doins docs/HOWTOs/* || die + dodoc README AUTHORS TODO ChangeLog \ + docs/Upgrading_from_1.1 \ + docs/HOWTOs/rsnapshot-{Mac,windows}-howto + docinto utils - dodoc utils/{README,rsnaptar,*.sh,*.pl} || die + dodoc utils/{README,rsnaptar,*.sh,*.pl} + docinto utils/rsnapshotdb - dodoc utils/rsnapshotdb/* || die + dodoc utils/rsnapshotdb/* } pkg_postinst() { |