Implement Gentoo bugzilla review feedback

This commit is contained in:
Espen Henriksen 2016-04-26 19:37:42 +02:00 committed by Tim Byrne
parent 3677b3b740
commit 14690cf706
1 changed files with 9 additions and 18 deletions

View File

@ -2,34 +2,25 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
EAPI=6
DESCRIPTION="Yet Another Dotfiles Manager"
DESCRIPTION="A dotfile manager for config files in your home folder"
HOMEPAGE="https://github.com/TheLocehiliosan/yadm/"
SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPLv3"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86 ~alpha ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc"
IUSE="doc"
KEYWORDS="~amd64 ~x86 ~alpha ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc"
DOCS=( CHANGES CONTRIBUTORS yadm.md README.md )
DOCS=( CHANGES CONTRIBUTORS README.md )
DEPEND="dev-vcs/git
app-shells/bash"
app-crypt/gnupg"
RDEPEND="${DEPEND}"
src_compile() {
# Bash scripts don't need to compile
true
}
src_install() {
if use doc; then
dodoc "${DOCS[@]}"
fi
dodoc "${DOCS[@]}"
dobin yadm
doman yadm.1
dobin yadm
doman yadm.1
}