blob: 607eb6aeda544d3b09c2259f2a66ccfc4cc4d8c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/tc-play/tc-play-1.1.ebuild,v 1.2 2014/03/01 22:35:11 mgorny Exp $
EAPI=5
inherit toolchain-funcs multilib
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="openssl"
DEPEND="dev-libs/libgpg-error
sys-fs/lvm2
sys-apps/util-linux
dev-libs/libgcrypt:0
openssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
pkg_setup() {
local backend="gcrypt"
use openssl && backend="openssl"
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}"
dodoc README.md
}
|