diff --git a/gentoo/yadm-1.04.ebuild b/gentoo/yadm-1.04.ebuild index 298e43b..338967f 100644 --- a/gentoo/yadm-1.04.ebuild +++ b/gentoo/yadm-1.04.ebuild @@ -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 } -