blob: 08448ab7923e16447b5aaef769aaa5e07bd70740 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit multilib-minimal
DESCRIPTION="Tools for computing and checking HMAC values for files"
HOMEPAGE="https://pagure.io/hmaccalc"
SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+fips"
DEPEND="dev-libs/nss
sys-devel/prelink"
RDEPEND="${DEPEND}"
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--enable-sum-directory=/usr/$(get_libdir)/${PN}/ \
$(use_enable !fips non-fips)
}
|