summaryrefslogtreecommitdiff
blob: 6252285e3f18be2e51a37503fcd4a6f79babf55e (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit autotools git-r3

DESCRIPTION="Supporting tools for IMA and EVM"
HOMEPAGE="http://linux-ima.sourceforge.net"
EGIT_REPO_URI="git://git.code.sf.net/p/linux-ima/ima-evm-utils"

RDEPEND="
	dev-libs/openssl:0=
	sys-apps/keyutils"
DEPEND="${RDEPEND}
	app-text/docbook-xsl-stylesheets"

LICENSE="GPL-2"
SLOT="0"
IUSE="debug"

src_prepare() {
	default

	sed -i '/^MANPAGE_DOCBOOK_XSL/s:/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl:/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl:' Makefile.am || die

	eautoreconf
}

src_configure() {
	econf $(use_enable debug)
}