You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-crypt/aescrypt/aescrypt-3.0.6b.ebuild

32 lines
638 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs flag-o-matic
DESCRIPTION="Advanced file encryption using AES"
HOMEPAGE="https://www.aescrypt.com/"
SRC_URI="https://www.aescrypt.com/download/v3/${P}.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="static"
DEPEND=""
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${P}-build.patch"
"${FILESDIR}/${P}-iconv.patch"
)
src_compile() {
if use static; then
append-cflags "-DDISABLE_ICONV"
append-ldflags "-static"
fi
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
}