blob: e234f840778da0888bb413279e7527640efb8517 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=ZEFRAM
DIST_VERSION=0.009
inherit perl-module
DESCRIPTION="the Eksblowfish block cipher"
SLOT="0"
KEYWORDS="amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
virtual/perl-Carp
>=dev-perl/Class-Mix-0.1.0
virtual/perl-Exporter
>=virtual/perl-MIME-Base64-2.210.0
virtual/perl-XSLoader
virtual/perl-parent
"
DEPEND="
dev-perl/Module-Build
"
BDEPEND="${RDEPEND}
dev-perl/Module-Build
>=virtual/perl-ExtUtils-CBuilder-0.15
test? (
virtual/perl-Test-Simple
)
"
src_configure() {
# Overriding this breaks build,
# as people always set this to a real LD
# but a CCLD is expected
# If you know what you're doing, export CCLD
# Bug: https://bugs.gentoo.org/730390
unset LD
if [[ -n "${CCLD}" ]]; then
export LD="${CCLD}"
fi
perl-module_src_configure
}
src_compile() {
./Build --config optimize="${CFLAGS}" build || die
}
|