diff options
author | Sam James <sam@gentoo.org> | 2022-08-01 04:06:10 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-01 04:14:23 +0100 |
commit | 42c11dcac7716d6b0566fd9b9bd63026d956b696 (patch) | |
tree | 120e070192b9e27bceb647f800c73973e0d234a3 /app-crypt/tc-play/tc-play-2.0-r2.ebuild | |
parent | app-text/html-xml-utils: [QA] EAPI 8, drop multilib, fix tests, fix deps (diff) | |
download | gentoo-42c11dcac7716d6b0566fd9b9bd63026d956b696.tar.gz gentoo-42c11dcac7716d6b0566fd9b9bd63026d956b696.tar.bz2 gentoo-42c11dcac7716d6b0566fd9b9bd63026d956b696.zip |
app-crypt/tc-play: [QA] EAPI 8, fix useless multilib
Multilib is only ever used here in src_configure because
it's exported. The program isn't even built for multilib
(which is a good thing, or it'd be even more of a waste,
as it's not like it'd get installed anyway).
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/tc-play/tc-play-2.0-r2.ebuild')
-rw-r--r-- | app-crypt/tc-play/tc-play-2.0-r2.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-crypt/tc-play/tc-play-2.0-r2.ebuild b/app-crypt/tc-play/tc-play-2.0-r2.ebuild new file mode 100644 index 000000000000..244696e5f144 --- /dev/null +++ b/app-crypt/tc-play/tc-play-2.0-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A free, pretty much fully featured and stable TrueCrypt implementation" +HOMEPAGE="https://github.com/bwalex/tc-play" +SRC_URI="https://github.com/bwalex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gnutls" + +DEPEND=" + dev-libs/libgcrypt:= + dev-libs/libgpg-error + sys-apps/util-linux + sys-fs/lvm2 + gnutls? ( net-libs/gnutls ) + !gnutls? ( + dev-libs/openssl:= + ) +" +RDEPEND="${DEPEND}" + +DOCS=( README.md ) + +PATCHES=( + "${FILESDIR}/${P}-build.patch" +) + +pkg_setup() { + local backend="openssl" + use gnutls && local backend="gcrypt" + + EXTRA_MAKE_FLAGS=( + PBKDF_BACKEND="${backend}" + WARNFLAGS="" + CC="$(tc-getCC)" + AR="$(tc-getAR)" + PREFIX=/usr + LIBDIR=/usr/$(get_libdir) + ) +} + +src_compile() { + emake -f Makefile.classic \ + tcplay \ + "${EXTRA_MAKE_FLAGS[@]}" +} + +src_install() { + emake -f Makefile.classic \ + "${EXTRA_MAKE_FLAGS[@]}" \ + install_program \ + DESTDIR="${ED}" +} |