blob: 308f5d566c470cae34f78bfa0ebc599afff69b37 (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Cryptographic library for EAC version 2"
HOMEPAGE="https://frankmorgner.github.io/openpace"
SRC_URI="https://github.com/frankmorgner/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0/3"
KEYWORDS="~amd64 ~x86"
BDEPEND="
dev-util/gengetopt
sys-apps/help2man
virtual/pkgconfig"
DEPEND="dev-libs/openssl:="
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-openssl.patch
"${FILESDIR}"/${P}-openssl-3.0.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--disable-openssl-install \
--disable-go \
--disable-java \
--disable-python \
--disable-ruby
}
src_compile() {
# not running just 1 job causes a race condition that causes a linking error
emake -j1
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|