diff options
-rw-r--r-- | app-crypt/tc-play/tc-play-2.0-r1.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app-crypt/tc-play/tc-play-2.0-r1.ebuild b/app-crypt/tc-play/tc-play-2.0-r1.ebuild index 2bb6073c93cb..7725897bc4c2 100644 --- a/app-crypt/tc-play/tc-play-2.0-r1.ebuild +++ b/app-crypt/tc-play/tc-play-2.0-r1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit toolchain-funcs multilib +inherit toolchain-funcs multilib-minimal DESCRIPTION="a free, pretty much fully featured and stable TrueCrypt implementation" HOMEPAGE="https://github.com/bwalex/tc-play" @@ -27,6 +27,10 @@ DEPEND=" )" RDEPEND="${DEPEND}" +DOCS=( + README.md +) + pkg_setup() { local backend="openssl" use gnutls && local backend="gcrypt" @@ -52,5 +56,4 @@ src_install() { "${EXTRA_MAKE_FLAGS[@]}" \ install_program \ DESTDIR="${ED}" - dodoc README.md } |