blob: 013ce8f510cb33d1cb07495fa76a38289525f967 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
MY_P="axc-${PV}"
DESCRIPTION="Client library for libsignal-protocol-c"
HOMEPAGE="https://github.com/gkdr/axc"
SRC_URI="https://github.com/gkdr/axc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3" # not GPL-3+
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="static-libs test"
RDEPEND="
dev-db/sqlite
dev-libs/glib
dev-libs/libgcrypt
net-libs/libsignal-protocol-c
"
DEPEND="
${RDEPEND}
test? ( dev-util/cmocka )
"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}"/${MY_P}
RESTRICT="!test? ( test )"
DOCS=( CHANGELOG.md README.md )
src_prepare() {
rm -R lib || die # unbundle libsignal-protocol-c
default
}
src_compile() {
local make_args=(
PREFIX=/usr
AR="$(tc-getAR)"
CC="$(tc-getCC)"
PKG_CONFIG="$(tc-getPKG_CONFIG)"
)
emake "${make_args[@]}"
}
src_test() {
# TODO: Test failures seem to be ignored in the upstream Makefile?
# e.g. https://github.com/gkdr/axc/blob/master/Makefile#L154
emake CC="$(tc-getCC)" test
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
# Respect libdir other than /usr/lib, e.g. /usr/lib64
local libdir="$(get_libdir)"
if [[ ${libdir} != lib ]]; then
mv "${ED}"/usr/{lib,${libdir}} || die
sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \
-i "${ED}/usr/${libdir}/pkgconfig/libaxc.pc" || die
fi
einstalldocs
if ! use static-libs ; then
rm "${ED}/usr/${libdir}/libaxc.a" || die
fi
}
|