blob: 17f25f701370b4ee51f8d886eb7dac132ab7061c (
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
|
# Copyright 2021-2026 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs
DESCRIPTION="BitTorrent library written in C++ for *nix"
HOMEPAGE="https://github.com/rakshasa/libtorrent"
SRC_URI="https://github.com/rakshasa/libtorrent/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
# The README says that the library ABI is not yet stable and dependencies on
# the library should be an explicit, syncronized version until the library
# has had more time to mature. Until it matures we should not include a soname
# subslot.
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~hppa ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
IUSE="debug libressl test"
RDEPEND="
sys-libs/zlib
net-libs/udns
!libressl? ( dev-libs/openssl:= )
libressl? ( dev-libs/libressl:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? ( dev-util/cppunit )
"
src_prepare() {
default
# use system-udns
rm -r src/net/udns || die
sed -e 's@"net/udns/udns.h"@<udns.h>@' \
-e '\@^#include "net/udns/udns_.*.c"@d' \
-i src/net/udns_library.cc src/net/udns_library.h src/net/udns_resolver.cc || die
if [[ ${CHOST} != *-darwin* ]]; then
# syslibroot is only for macos, change to sysroot for others
sed -i 's/Wl,-syslibroot,/Wl,--sysroot,/' "${S}/scripts/common.m4" || die
fi
eautoreconf
}
src_configure() {
local myeconfargs=(
LIBS="-ludns"
--enable-aligned
$(use_enable debug)
--with-posix-fallocate
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|