summaryrefslogtreecommitdiff
blob: f8dca86551cfb02608b199d8a1aa1e1bb9d3379e (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools xdg

DESCRIPTION="GTK+ Front-End for libxine"
HOMEPAGE="http://xine.sourceforge.net/"
SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="l10n_cs l10n_de lirc nls udev xinerama"

DEPEND="
	media-libs/xine-lib[gtk]
	x11-libs/gtk+:2
	dev-lang/spidermonkey:0
	dev-libs/glib
	x11-libs/libX11
	x11-libs/libXext
	x11-libs/libXrender
	x11-libs/libxcb
	lirc? ( app-misc/lirc )
	nls? ( virtual/libintl )
	udev? ( dev-libs/libgudev:= )
	xinerama? ( x11-libs/libXinerama )"
RDEPEND="${DEPEND}"
BDEPEND="
	virtual/pkgconfig
	nls? ( sys-devel/gettext )"

PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )

src_prepare() {
	default
	# need to disable calling of xine-list when running without
	# userpriv, otherwise we get sandbox violations (bug #233847)
	if [[ ${EUID} == 0 ]]; then
		sed -i -e 's:^XINE_LIST=.*$:XINE_LIST=:' configure.ac || die
	fi

	eautoreconf
}

src_configure() {
	econf \
		--enable-watchdog \
		--with-xcb \
		--without-browser-plugin \
		--without-dbus \
		--without-hal \
		$(use_enable nls) \
		$(use_enable lirc) \
		$(use_with udev gudev) \
		$(use_with xinerama)
}

src_install() {
	emake DESTDIR="${D}" \
		docdir="${EPREFIX}"/usr/share/doc/${PF} \
		docsdir="${EPREFIX}"/usr/share/doc/${PF} \
		install

	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO

	use l10n_cs && dodoc README.cs
	use l10n_de && dodoc README.de
}