1
0
Fork 0
mirror of synced 2024-05-26 03:51:11 -04:00

Implement Gentoo bugzilla review feedback

This commit is contained in:
Espen Henriksen 2016-04-26 19:37:42 +02:00
parent 18ce904b9e
commit 0cd8faf53e
No known key found for this signature in database
GPG key ID: D27FDB6528795773

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
}