blob: 3b4c5080cfe97e46395091f736ad7fae14160588 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Playlist handling library"
HOMEPAGE="https://libspiff.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/libspiff/${P}.tar.bz2"
LICENSE="BSD LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/expat-2
>=dev-libs/uriparser-0.7.5"
DEPEND="${RDEPEND}
test? ( >=dev-util/cpptest-1.1 )"
BDEPEND="virtual/pkgconfig"
src_configure() {
econf \
--disable-doc \
--disable-static \
$(use_enable test)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|