diff options
author | 2016-07-31 17:35:32 +0000 | |
---|---|---|
committer | 2016-07-31 17:35:49 +0000 | |
commit | cb2e51364fd7206bc22b2656437b2c0af9e7b11b (patch) | |
tree | a08e39d56d67194b61545c59f1eaf62a3f6b8797 /app-backup/duply/duply-1.11.3.ebuild | |
parent | sys-kernel/aufs-sources: Bump to latest aufs, linux and genpatch release (diff) | |
download | gentoo-cb2e51364fd7206bc22b2656437b2c0af9e7b11b.tar.gz gentoo-cb2e51364fd7206bc22b2656437b2c0af9e7b11b.tar.bz2 gentoo-cb2e51364fd7206bc22b2656437b2c0af9e7b11b.zip |
app-backup/duply: Version Bump
Bump to EAPI=6 and readme.gentoo-r1
Drop old
Package-Manager: portage-2.3.0
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'app-backup/duply/duply-1.11.3.ebuild')
-rw-r--r-- | app-backup/duply/duply-1.11.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-backup/duply/duply-1.11.3.ebuild b/app-backup/duply/duply-1.11.3.ebuild new file mode 100644 index 000000000000..7de7578a7df6 --- /dev/null +++ b/app-backup/duply/duply-1.11.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit readme.gentoo-r1 + +DESCRIPTION="A shell frontend for duplicity" +HOMEPAGE="http://duply.net" +SRC_URI="mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/1.11.x/${PN}_${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-text/txt2man" +RDEPEND="app-backup/duplicity" + +S=${WORKDIR}/${PN}_${PV} + +src_install() { + dobin ${PN} + ./${PN} txt2man > ${PN}.1 || die + doman ${PN}.1 + dodoc CHANGELOG.txt + readme.gentoo_create_doc +} |