blob: e2fc8dac19890bf058053ed6412edb4fd31e77a2 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Very small xine frontend for playing audio events"
HOMEPAGE="http://www.kde-apps.org/content/show.php?content=39596"
SRC_URI="http://www.kde-apps.org/content/files/39596-${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="media-libs/xine-lib:="
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
rm -f ${PN} INSTALL || die
}
src_configure() {
tc-export CC
append-cppflags $($(tc-getPKG_CONFIG) --cflags libxine)
export LDLIBS="$($(tc-getPKG_CONFIG) --libs libxine) -lm"
}
src_compile() {
emake ${PN}
}
src_install() {
dobin ${PN}
einstalldocs
}
|