blob: b9238c16220a6234d887d5b69c6ea4c0696b04bf (
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
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic
DESCRIPTION="Generic framework for C development - used by the Icecast project"
HOMEPAGE="https://gitlab.xiph.org/xiph/icecast-libigloo/"
SRC_URI="https://downloads.xiph.org/releases/igloo/${P}.tar.gz"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
RDEPEND="app-crypt/rhash:="
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
# lto mismatch, see https://gitlab.xiph.org/xiph/icecast-libigloo/-/issues/7
filter-lto
default
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|