blob: 8f516121a6e45170b6b698d67d6428a62b901460 (
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
74
75
76
77
78
79
|
# Copyright 2021-2024 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="C library implementing the OAuth secure authentication protocol"
HOMEPAGE="https://sourceforge.net/projects/liboauth/"
GIT_COMMIT="c26f038eb9a4d97782e3f9f1e3da2b9356581869"
SRC_URI="https://github.com/x42/liboauth/archive/c26f038eb9a4d97782e3f9f1e3da2b9356581869.tar.gz -> ${PN}-${GIT_COMMIT}.tar.gz"
LICENSE="|| ( GPL-2 MIT )"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x64-macos"
IUSE="bindist doc +nss"
REQUIRED_USE="bindist? ( nss )"
PATCHES=(
"${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch
)
CDEPEND="
net-misc/curl
nss? ( dev-libs/nss )
"
RDEPEND="
${CDEPEND}
virtual/libcrypt
"
DEPEND="
${CDEPEND}
doc? (
app-text/doxygen
media-gfx/graphviz
media-fonts/freefont
)
"
BDEPEND="
virtual/pkgconfig
"
S=${WORKDIR}/${PN}-${GIT_COMMIT}
src_prepare(){
default
eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-static
--enable-curl
--disable-libcurl
$(use_enable nss)
)
econf "${myeconfargs[@]}"
}
src_compile() {
default
if use doc ; then
# make sure fonts are found
export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
emake dox
fi
}
DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README.md )
src_install() {
use doc && HTML_DOCS=( doc/html/. )
default
find "${ED}" -name "*.la" -delete || die
}
|