blob: e0a5e16f802fcbd3f8d32ec7710f8406beae79dd (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-xineliboutput/vdr-xineliboutput-9999.ebuild,v 1.13 2012/05/05 08:27:15 jdhore Exp $
EAPI=3
GENTOO_VDR_CONDITIONAL=yes
inherit vdr-plugin cvs toolchain-funcs eutils
MY_PV=${PV#*_p}
MY_P=${PN}
DESCRIPTION="Video Disk Recorder Xinelib PlugIn"
HOMEPAGE="http://sourceforge.net/projects/xineliboutput/"
ECVS_SERVER="xineliboutput.cvs.sourceforge.net:/cvsroot/xineliboutput"
ECVS_MODULE="${PN}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS=""
IUSE="caps dbus fbcon jpeg libextractor nls +vdr vdpau +X +xine xinerama"
COMMON_DEPEND="
vdr? (
>=media-video/vdr-1.6.0
libextractor? ( >=media-libs/libextractor-0.5.20 )
caps? ( sys-libs/libcap )
)
xine? (
|| ( <media-libs/xine-lib-1.2 ( >=media-libs/xine-lib-1.2 virtual/ffmpeg ) )
fbcon? ( jpeg? ( virtual/jpeg ) )
X? (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
xinerama? ( x11-libs/libXinerama )
dbus? ( dev-libs/dbus-glib dev-libs/glib:2 )
vdpau? ( x11-libs/libvdpau >=media-libs/xine-lib-1.2 )
jpeg? ( virtual/jpeg )
)
)"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
sys-kernel/linux-headers
nls? ( sys-devel/gettext )
xine? (
X? (
x11-proto/xproto
x11-libs/libXxf86vm
)
)"
RDEPEND="${COMMON_DEPEND}"
S=${WORKDIR}/${MY_P}
VDR_CONFD_FILE="${FILESDIR}/confd-1.0.0_pre6"
pkg_setup() {
if ! use vdr && ! use xine; then
die "You either need at least one of these flags: vdr xine"
fi
vdr-plugin_pkg_setup
if use xine; then
XINE_PLUGIN_DIR=$(pkg-config --variable=plugindir libxine)
[ -z "${XINE_PLUGIN_DIR}" ] && die "Could not find xine plugin dir"
fi
}
src_prepare() {
epatch "${FILESDIR}/${P}-build-system.patch"
# Allow user patches to be applied without modifyfing the ebuild
epatch_user
vdr-plugin_src_prepare
sed -i -e 's:^\(LOCALEDIR\) .*:\1 = $(DESTDIR)/usr/share/vdr/locale:' \
-e "s:LIBDIR .*:LIBDIR = ${VDR_PLUGIN_DIR}:" \
Makefile || die
}
src_configure() {
local myconf
if has_version ">=media-libs/xine-lib-1.2"; then
myconf="${myconf} --enable-libavutil"
else
myconf="${myconf} --disable-libavutil"
fi
# No autotools based configure script
# There is no real opengl support, just the switch and some help text is
# left...
./configure \
--cc=$(tc-getCC) \
--cxx=$(tc-getCXX) \
$(use_enable X x11) \
$(use_enable X xshm) \
$(use_enable X xdpms) \
$(use_enable X xshape) \
$(use_enable X xrender) \
$(use_enable fbcon fb) \
$(use_enable vdr) \
$(use_enable xine libxine) \
$(use_enable libextractor) \
$(use_enable caps libcap) \
$(use_enable jpeg libjpeg) \
$(use_enable xinerama) \
$(use_enable vdpau) \
$(use_enable dbus dbus-glib-1) \
$(use_enable nls i18n) \
${myconf} \
--disable-opengl \
|| die
}
src_install() {
if use vdr; then
vdr-plugin_src_install
# bug 346989
insinto /etc/vdr/plugins/xineliboutput/
doins examples/allowed_hosts.conf || die
fowners -R vdr:vdr /etc/vdr/
if use nls; then
emake DESTDIR="${D}" i18n || die
fi
if use xine; then
insinto $XINE_PLUGIN_DIR
doins xineplug_inp_xvdr.so || die
insinto $XINE_PLUGIN_DIR/post
doins xineplug_post_*.so || die
if use fbcon; then
dobin vdr-fbfe || die
insinto $VDR_PLUGIN_DIR
doins libxineliboutput-fbfe.so.* || die
fi
if use X; then
dobin vdr-sxfe || die
insinto $VDR_PLUGIN_DIR
doins libxineliboutput-sxfe.so.* || die
fi
fi
else
emake DESTDIR="${D}" install || die
dodoc HISTORY README
fi
}
|