summaryrefslogtreecommitdiff
path: root/media-video/oxine/oxine-0.7.1-r4.ebuild
blob: c827c4ee22035fe646bf794ccf43c1dd8233cd05 (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
72
73
74
75
76
77
78
79
80
81
82
83
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit flag-o-matic

DESCRIPTION="OSD frontend for Xine"
HOMEPAGE="http://oxine.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="curl debug dvb exif joystick jpeg lirc nls png v4l X"

COMMON_DEPEND="
	dev-libs/libcdio
	media-libs/xine-lib[v4l?,X,imagemagick]
	virtual/libcrypt:=
	curl? ( net-misc/curl )
	dvb? ( media-libs/xine-lib[v4l] )
	joystick? ( media-libs/libjsw )
	jpeg? (
		media-gfx/imagemagick
		media-libs/netpbm[jpeg,zlib]
		media-video/mjpegtools
	)
	lirc? ( app-misc/lirc )
	nls? (
		virtual/libintl
		sys-devel/gettext
	)
	png? (
		media-gfx/imagemagick
		media-libs/netpbm[png,zlib]
		media-video/mjpegtools
	)
	X? (
		x11-libs/libXext
		x11-libs/libX11
	)"
RDEPEND="${COMMON_DEPEND}
	sys-apps/util-linux"
DEPEND="${COMMON_DEPEND}
	virtual/pkgconfig"

HTML_DOCS=( doc/README.html )

src_configure() {
	# Fix underlinking by falling back to
	# GNU89 inline semantics, bug 590946
	append-cflags -std=gnu89

	# Note on images: Image support will be automatically disabled if
	# netpbm, imagemagick or mjpegtools is not installed, regardless
	# of what the USE flags are set to.
	# If one of the image USE flags is unset, disable image support
	local myconf=()
	if use !png || use !jpeg; then
		myconf+=( --disable-images )
	fi

	econf \
		--disable-hal \
		--disable-rpath \
		--disable-extractor \
		$(use_with curl) \
		$(use_enable debug) \
		$(use_enable dvb) \
		$(use_enable exif) \
		$(use_enable joystick) \
		$(use_enable lirc) \
		$(use_enable nls) \
		$(use_enable v4l) \
		$(use_with X x) \
		"${myconf[@]}"
}

src_install() {
	default
	dodoc doc/keymapping.pdf
}