1 |
idl0r |
1.78 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
zzam |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
hd_brummy |
1.85 |
# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.84 2012/03/18 23:33:49 hd_brummy Exp $ |
4 |
idl0r |
1.79 |
|
5 |
|
|
# @ECLASS: vdr-plugin.eclass |
6 |
|
|
# @MAINTAINER: |
7 |
|
|
# vdr@gentoo.org |
8 |
|
|
# @BLURB: common vdr plugin ebuild functions |
9 |
|
|
# @DESCRIPTION: |
10 |
|
|
# Eclass for easing maitenance of vdr plugin ebuilds |
11 |
|
|
|
12 |
idl0r |
1.80 |
# Authors: |
13 |
|
|
# Matthias Schwarzott <zzam@gentoo.org> |
14 |
|
|
# Joerg Bornkessel <hd_brummy@gentoo.org> |
15 |
|
|
# Christian Ruppert <idl0r@gentoo.org> |
16 |
|
|
|
17 |
|
|
# Plugin config file installation: |
18 |
|
|
# |
19 |
|
|
# A plugin config file can be specified through the $VDR_CONFD_FILE variable, it |
20 |
|
|
# defaults to ${FILESDIR}/confd. Each config file will be installed as e.g. |
21 |
|
|
# ${D}/etc/conf.d/vdr.${VDRPLUGIN} |
22 |
|
|
|
23 |
|
|
# Installation of rc-addon files: |
24 |
|
|
# NOTE: rc-addon files must be valid shell scripts! |
25 |
|
|
# |
26 |
|
|
# Installing rc-addon files is basically the same as for plugin config files |
27 |
|
|
# (see above), it's just using the $VDR_RCADDON_FILE variable instead. |
28 |
|
|
# The default value when $VDR_RCADDON_FILE is undefined is: |
29 |
|
|
# ${FILESDIR}/rc-addon.sh and will be installed as |
30 |
|
|
# ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
31 |
|
|
# |
32 |
|
|
# The rc-addon files will be sourced by the startscript when the specific plugin |
33 |
|
|
# has been enabled. |
34 |
|
|
# rc-addon files may be used to prepare everything that is necessary for the |
35 |
|
|
# plugin start/stop, like passing extra command line options and so on. |
36 |
|
|
|
37 |
|
|
# Applying your own local/user patches: |
38 |
|
|
# This is done by using the epatch_user() function of the eutils.eclass. |
39 |
|
|
# Simply put your patches into one of these directories: |
40 |
|
|
# /etc/portage/patches/<CATEGORY>/<PF|P|PN>/ |
41 |
|
|
# Quote: where the first of these three directories to exist will be the one to |
42 |
|
|
# use, ignoring any more general directories which might exist as well. |
43 |
hd_brummy |
1.27 |
# |
44 |
idl0r |
1.80 |
# For more details about it please take a look at the eutils.class. |
45 |
hd_brummy |
1.27 |
|
46 |
zzam |
1.22 |
inherit base multilib eutils flag-o-matic |
47 |
zzam |
1.1 |
|
48 |
idl0r |
1.78 |
if ! has "${EAPI:-0}" 0 1 2 3 4; then |
49 |
hd_brummy |
1.72 |
die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
50 |
|
|
fi |
51 |
|
|
|
52 |
zzam |
1.39 |
IUSE="" |
53 |
zzam |
1.15 |
|
54 |
zzam |
1.1 |
# Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
55 |
|
|
VDRPLUGIN="${PN/#vdrplugin-/}" |
56 |
zzam |
1.2 |
VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
57 |
zzam |
1.1 |
VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
58 |
|
|
|
59 |
|
|
DESCRIPTION="vdr Plugin: ${VDRPLUGIN} (based on vdr-plugin.eclass)" |
60 |
|
|
|
61 |
|
|
# works in most cases |
62 |
|
|
S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
63 |
|
|
|
64 |
|
|
# depend on headers for DVB-driver |
65 |
zzam |
1.65 |
COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
66 |
|
|
|
67 |
|
|
DEPEND="${COMMON_DEPEND} |
68 |
hd_brummy |
1.81 |
virtual/linuxtv-dvb-headers" |
69 |
zzam |
1.65 |
RDEPEND="${COMMON_DEPEND} |
70 |
|
|
>=app-admin/eselect-vdr-0.0.2" |
71 |
zzam |
1.2 |
|
72 |
zzam |
1.69 |
# this is a hack for ebuilds like vdr-xineliboutput that want to |
73 |
|
|
# conditionally install a vdr-plugin |
74 |
|
|
if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then |
75 |
|
|
# make DEPEND conditional |
76 |
|
|
IUSE="${IUSE} vdr" |
77 |
|
|
DEPEND="vdr? ( ${DEPEND} )" |
78 |
|
|
RDEPEND="vdr? ( ${RDEPEND} )" |
79 |
|
|
fi |
80 |
|
|
|
81 |
zzam |
1.37 |
# New method of storing plugindb |
82 |
|
|
# Called from src_install |
83 |
|
|
# file maintained by normal portage-methods |
84 |
|
|
create_plugindb_file() { |
85 |
|
|
local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
86 |
zzam |
1.50 |
local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
87 |
|
|
insinto "${NEW_VDRPLUGINDB_DIR}" |
88 |
zzam |
1.52 |
|
89 |
|
|
# BUG: portage-2.1.4_rc9 will delete the EBUILD= line, so we cannot use this code. |
90 |
|
|
# cat <<-EOT > "${D}/${DB_FILE}" |
91 |
|
|
# VDRPLUGIN_DB=1 |
92 |
|
|
# CREATOR=ECLASS |
93 |
|
|
# EBUILD=${CATEGORY}/${PN} |
94 |
|
|
# EBUILD_V=${PVR} |
95 |
|
|
# EOT |
96 |
|
|
{ |
97 |
|
|
echo "VDRPLUGIN_DB=1" |
98 |
|
|
echo "CREATOR=ECLASS" |
99 |
|
|
echo "EBUILD=${CATEGORY}/${PN}" |
100 |
|
|
echo "EBUILD_V=${PVR}" |
101 |
zzam |
1.60 |
echo "PLUGINS=\"$@\"" |
102 |
zzam |
1.52 |
} > "${D}/${DB_FILE}" |
103 |
zzam |
1.37 |
} |
104 |
|
|
|
105 |
|
|
# Delete files created outside of vdr-plugin.eclass |
106 |
|
|
# vdrplugin-rebuild.ebuild converted plugindb and files are |
107 |
|
|
# not deleted by portage itself - should only be needed as |
108 |
|
|
# long as not every system has switched over to |
109 |
zzam |
1.51 |
# vdrplugin-rebuild-0.2 / gentoo-vdr-scripts-0.4.2 |
110 |
zzam |
1.37 |
delete_orphan_plugindb_file() { |
111 |
hd_brummy |
1.40 |
#elog Testing for orphaned plugindb file |
112 |
zzam |
1.37 |
local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
113 |
zzam |
1.50 |
local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
114 |
zzam |
1.37 |
|
115 |
|
|
# file exists |
116 |
|
|
[[ -f ${DB_FILE} ]] || return |
117 |
|
|
|
118 |
|
|
# will portage handle the file itself |
119 |
zzam |
1.50 |
if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
120 |
hd_brummy |
1.40 |
#elog file owned by eclass - don't touch it |
121 |
zzam |
1.37 |
return |
122 |
|
|
fi |
123 |
|
|
|
124 |
hd_brummy |
1.40 |
elog "Removing orphaned plugindb-file." |
125 |
zzam |
1.41 |
elog "\t#rm ${DB_FILE}" |
126 |
zzam |
1.50 |
rm "${DB_FILE}" |
127 |
zzam |
1.37 |
} |
128 |
|
|
|
129 |
zzam |
1.45 |
|
130 |
|
|
create_header_checksum_file() |
131 |
|
|
{ |
132 |
|
|
# Danger: Not using $ROOT here, as compile will also not use it !!! |
133 |
|
|
# If vdr in $ROOT and / differ, plugins will not run anyway |
134 |
|
|
|
135 |
zzam |
1.60 |
local CHKSUM="header-md5-vdr" |
136 |
|
|
|
137 |
zzam |
1.45 |
if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
138 |
zzam |
1.60 |
cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
139 |
|
|
elif type -p md5sum >/dev/null 2>&1; then |
140 |
|
|
( |
141 |
|
|
cd "${VDR_INCLUDE_DIR}" |
142 |
|
|
md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
143 |
|
|
) > "${CHKSUM}" |
144 |
zzam |
1.45 |
else |
145 |
zzam |
1.60 |
die "Could not create md5 checksum of headers" |
146 |
zzam |
1.45 |
fi |
147 |
zzam |
1.60 |
|
148 |
|
|
insinto "${VDR_CHECKSUM_DIR}" |
149 |
|
|
local p_name |
150 |
|
|
for p_name; do |
151 |
|
|
newins "${CHKSUM}" "header-md5-${p_name}" |
152 |
|
|
done |
153 |
zzam |
1.45 |
} |
154 |
|
|
|
155 |
zzam |
1.55 |
fix_vdr_libsi_include() |
156 |
|
|
{ |
157 |
zzam |
1.70 |
#einfo "Fixing include of libsi-headers" |
158 |
zzam |
1.55 |
local f |
159 |
|
|
for f; do |
160 |
|
|
sed -i "${f}" \ |
161 |
|
|
-e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
162 |
|
|
-e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
163 |
|
|
done |
164 |
|
|
} |
165 |
|
|
|
166 |
|
|
vdr_patchmakefile() { |
167 |
|
|
einfo "Patching Makefile" |
168 |
|
|
[[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
169 |
|
|
cp Makefile "${WORKDIR}"/Makefile.before |
170 |
|
|
|
171 |
zzam |
1.60 |
# plugin makefiles use VDRDIR in strange ways |
172 |
|
|
# assumptions: |
173 |
|
|
# 1. $(VDRDIR) contains Make.config |
174 |
|
|
# 2. $(VDRDIR) contains config.h |
175 |
|
|
# 3. $(VDRDIR)/include/vdr contains the headers |
176 |
|
|
# 4. $(VDRDIR) contains main vdr Makefile |
177 |
|
|
# 5. $(VDRDIR)/locale exists |
178 |
|
|
# 6. $(VDRDIR) allows to access vdr source files |
179 |
|
|
# |
180 |
|
|
# We only have one directory (for now /usr/include/vdr), |
181 |
|
|
# that contains vdr-headers and Make.config. |
182 |
|
|
# To satisfy 1-3 we do this: |
183 |
|
|
# Set VDRDIR=/usr/include/vdr |
184 |
|
|
# Set VDRINCDIR=/usr/include |
185 |
|
|
# Change $(VDRDIR)/include to $(VDRINCDIR) |
186 |
|
|
|
187 |
zzam |
1.55 |
sed -i Makefile \ |
188 |
|
|
-e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
189 |
zzam |
1.60 |
-e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
190 |
|
|
-e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
191 |
|
|
\ |
192 |
zzam |
1.59 |
-e 's:-I$(DVBDIR)/include::' \ |
193 |
|
|
-e 's:-I$(DVBDIR)::' |
194 |
zzam |
1.55 |
|
195 |
|
|
# maybe needed for multiproto: |
196 |
|
|
#sed -i Makefile \ |
197 |
|
|
# -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
198 |
|
|
# -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
199 |
|
|
|
200 |
|
|
if ! grep -q APIVERSION Makefile; then |
201 |
|
|
ebegin " Converting to APIVERSION" |
202 |
|
|
sed -i Makefile \ |
203 |
|
|
-e 's:^APIVERSION = :APIVERSION ?= :' \ |
204 |
|
|
-e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
205 |
|
|
-e '/VDRVERSION =/a\APIVERSION = $(shell sed -ne '"'"'/define APIVERSION/s/^.*"\\(.*\\)".*$$/\\1/p'"'"' $(VDRDIR)/config.h)' |
206 |
|
|
eend $? |
207 |
|
|
fi |
208 |
|
|
|
209 |
|
|
# Correcting Compile-Flags |
210 |
|
|
# Do not overwrite CXXFLAGS, add LDFLAGS if missing |
211 |
|
|
sed -i Makefile \ |
212 |
|
|
-e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
213 |
|
|
-e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
214 |
|
|
|
215 |
|
|
# Disabling file stripping, useful for debugging |
216 |
|
|
sed -i Makefile \ |
217 |
|
|
-e '/@.*strip/d' \ |
218 |
|
|
-e '/strip \$(LIBDIR)\/\$@/d' \ |
219 |
zzam |
1.70 |
-e 's/STRIP.*=.*$/STRIP = true/' |
220 |
zzam |
1.55 |
|
221 |
|
|
# Use a file instead of a variable as single-stepping via ebuild |
222 |
|
|
# destroys environment. |
223 |
|
|
touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
224 |
|
|
} |
225 |
|
|
|
226 |
zzam |
1.56 |
vdr_has_gettext() { |
227 |
|
|
has_version ">=media-video/vdr-1.5.7" |
228 |
|
|
} |
229 |
|
|
|
230 |
|
|
plugin_has_gettext() { |
231 |
|
|
[[ -d po ]] |
232 |
hd_brummy |
1.85 |
# some plugins gives false positive results, keep this list short |
233 |
|
|
# temporary workout, ToDo: fix the plugins/eclass |
234 |
|
|
has_version ">=media-plugins/vdr-streamdev-0.5.0" |
235 |
zzam |
1.56 |
} |
236 |
|
|
|
237 |
|
|
vdr_i18n_convert_to_gettext() { |
238 |
hd_brummy |
1.77 |
if has_version ">=media-video/vdr-1.7.22"; then |
239 |
|
|
local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext" |
240 |
|
|
else |
241 |
|
|
local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
242 |
|
|
fi |
243 |
zzam |
1.56 |
|
244 |
|
|
if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
245 |
|
|
ewarn "Conversion to gettext disabled in ebuild" |
246 |
|
|
return 1 |
247 |
|
|
fi |
248 |
|
|
|
249 |
|
|
if [[ ! -x ${i18n_tool} ]]; then |
250 |
|
|
eerror "Missing ${i18n_tool}" |
251 |
|
|
eerror "Please re-emerge vdr" |
252 |
|
|
die "Missing ${i18n_tool}" |
253 |
|
|
fi |
254 |
|
|
|
255 |
|
|
ebegin "Auto converting translations to gettext" |
256 |
|
|
# call i18n-to-gettext tool |
257 |
|
|
# take all texts missing tr call into special file |
258 |
|
|
"${i18n_tool}" 2>/dev/null \ |
259 |
|
|
|sed -e '/^"/!d' \ |
260 |
|
|
-e '/^""$/d' \ |
261 |
|
|
-e 's/\(.*\)/trNOOP(\1)/' \ |
262 |
|
|
> dummy-translations-trNOOP.c |
263 |
|
|
|
264 |
|
|
# if there were untranslated texts just run it again |
265 |
|
|
# now the missing calls are listed in |
266 |
|
|
# dummy-translations-trNOOP.c |
267 |
|
|
if [[ -s dummy-translations-trNOOP.c ]]; then |
268 |
|
|
"${i18n_tool}" &>/dev/null |
269 |
|
|
fi |
270 |
|
|
|
271 |
|
|
# now use the modified Makefile |
272 |
|
|
if [[ -f Makefile.new ]]; then |
273 |
|
|
mv Makefile.new Makefile |
274 |
|
|
eend 0 "" |
275 |
|
|
else |
276 |
|
|
eend 1 "Conversion to gettext failed. Plugin needs fixing." |
277 |
|
|
return 1 |
278 |
|
|
fi |
279 |
|
|
} |
280 |
zzam |
1.55 |
|
281 |
zzam |
1.56 |
vdr_i18n_disable_gettext() { |
282 |
zzam |
1.70 |
#einfo "Disabling gettext support in plugin" |
283 |
|
|
|
284 |
zzam |
1.56 |
# Remove i18n Target if using older vdr |
285 |
|
|
sed -i Makefile \ |
286 |
|
|
-e '/^all:/s/ i18n//' |
287 |
|
|
} |
288 |
zzam |
1.55 |
|
289 |
zzam |
1.56 |
vdr_i18n() { |
290 |
|
|
if vdr_has_gettext; then |
291 |
zzam |
1.70 |
#einfo "VDR has gettext support" |
292 |
zzam |
1.56 |
if plugin_has_gettext; then |
293 |
zzam |
1.70 |
#einfo "Plugin has gettext support, fine" |
294 |
zzam |
1.62 |
if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
295 |
zzam |
1.70 |
ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
296 |
zzam |
1.62 |
fi |
297 |
zzam |
1.55 |
else |
298 |
zzam |
1.56 |
vdr_i18n_convert_to_gettext |
299 |
|
|
if [[ $? != 0 ]]; then |
300 |
hd_brummy |
1.84 |
einfo "Plugin has no OSD texts or will have only english OSD texts" |
301 |
zzam |
1.56 |
fi |
302 |
|
|
fi |
303 |
|
|
else |
304 |
zzam |
1.70 |
#einfo "VDR has no gettext support" |
305 |
zzam |
1.56 |
if plugin_has_gettext; then |
306 |
|
|
vdr_i18n_disable_gettext |
307 |
zzam |
1.55 |
fi |
308 |
|
|
fi |
309 |
|
|
} |
310 |
|
|
|
311 |
|
|
vdr-plugin_copy_source_tree() { |
312 |
|
|
pushd . >/dev/null |
313 |
|
|
cp -r "${S}" "${T}"/source-tree |
314 |
|
|
cd "${T}"/source-tree |
315 |
|
|
cp "${WORKDIR}"/Makefile.before Makefile |
316 |
zzam |
1.59 |
# TODO: Fix this, maybe no longer needed |
317 |
zzam |
1.55 |
sed -i Makefile \ |
318 |
|
|
-e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
319 |
|
|
-e 's:^CXXFLAGS:#CXXFLAGS:' \ |
320 |
|
|
-e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
321 |
|
|
-e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
322 |
|
|
popd >/dev/null |
323 |
|
|
} |
324 |
|
|
|
325 |
|
|
vdr-plugin_install_source_tree() { |
326 |
|
|
einfo "Installing sources" |
327 |
|
|
destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
328 |
|
|
insinto "${destdir}-${PV}" |
329 |
|
|
doins -r "${T}"/source-tree/* |
330 |
|
|
|
331 |
|
|
dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
332 |
|
|
} |
333 |
|
|
|
334 |
|
|
vdr-plugin_print_enable_command() { |
335 |
zzam |
1.64 |
local p_name c=0 l="" |
336 |
|
|
for p_name in ${vdr_plugin_list}; do |
337 |
|
|
c=$(( c+1 )) |
338 |
|
|
l="$l ${p_name#vdr-}" |
339 |
|
|
done |
340 |
|
|
|
341 |
zzam |
1.55 |
elog |
342 |
zzam |
1.64 |
case $c in |
343 |
|
|
1) elog "Installed plugin${l}" ;; |
344 |
|
|
*) elog "Installed $c plugins:${l}" ;; |
345 |
|
|
esac |
346 |
|
|
elog "To activate a plugin execute this command:" |
347 |
|
|
elog "\teselect vdr-plugin enable <plugin_name> ..." |
348 |
zzam |
1.55 |
elog |
349 |
|
|
} |
350 |
|
|
|
351 |
zzam |
1.69 |
has_vdr() { |
352 |
|
|
[[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
353 |
|
|
} |
354 |
zzam |
1.55 |
|
355 |
|
|
## exported functions |
356 |
|
|
|
357 |
zzam |
1.1 |
vdr-plugin_pkg_setup() { |
358 |
|
|
# -fPIC is needed for shared objects on some platforms (amd64 and others) |
359 |
|
|
append-flags -fPIC |
360 |
|
|
|
361 |
hd_brummy |
1.72 |
# Plugins need to be compiled with position independent code, otherwise linking |
362 |
|
|
# VDR against it will fail |
363 |
|
|
if has_version ">=media-video/vdr-1.7.13"; then |
364 |
|
|
append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
365 |
|
|
fi |
366 |
|
|
|
367 |
zzam |
1.22 |
# Where should the plugins live in the filesystem |
368 |
|
|
VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
369 |
|
|
VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
370 |
|
|
|
371 |
zzam |
1.35 |
# was /usr/lib/... some time ago |
372 |
|
|
# since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
373 |
|
|
VDR_RC_DIR="/usr/share/vdr/rcscript" |
374 |
zzam |
1.22 |
|
375 |
|
|
# Pathes to includes |
376 |
zzam |
1.29 |
VDR_INCLUDE_DIR="/usr/include/vdr" |
377 |
zzam |
1.22 |
DVB_INCLUDE_DIR="/usr/include" |
378 |
|
|
|
379 |
zzam |
1.48 |
TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
380 |
hd_brummy |
1.75 |
if has_version ">=media-video/vdr-1.6.0_p2-r7"; then |
381 |
hd_brummy |
1.73 |
LOCDIR="/usr/share/locale" |
382 |
|
|
else |
383 |
|
|
LOCDIR="/usr/share/vdr/locale" |
384 |
|
|
fi |
385 |
zzam |
1.48 |
|
386 |
zzam |
1.69 |
if ! has_vdr; then |
387 |
|
|
# set to invalid values to detect abuses |
388 |
|
|
VDRVERSION="eclass_no_vdr_installed" |
389 |
|
|
APIVERSION="eclass_no_vdr_installed" |
390 |
|
|
|
391 |
|
|
if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
392 |
|
|
einfo "VDR not found!" |
393 |
|
|
else |
394 |
|
|
# if vdr is required |
395 |
|
|
die "VDR not found!" |
396 |
|
|
fi |
397 |
|
|
return |
398 |
|
|
fi |
399 |
maekke |
1.71 |
|
400 |
zzam |
1.50 |
VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
401 |
|
|
APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
402 |
zzam |
1.18 |
[[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
403 |
|
|
|
404 |
zzam |
1.55 |
einfo "Compiling against" |
405 |
|
|
einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
406 |
idl0r |
1.80 |
|
407 |
|
|
|
408 |
|
|
if [ -n "${VDR_LOCAL_PATCHES_DIR}" ]; then |
409 |
|
|
eerror "Using VDR_LOCAL_PATCHES_DIR is deprecated!" |
410 |
|
|
eerror "Please move all your patches into" |
411 |
|
|
eerror "${EROOT}/etc/portage/patches/${CATEGORY}/${P}" |
412 |
|
|
eerror "and remove or unset the VDR_LOCAL_PATCHES_DIR variable." |
413 |
|
|
die |
414 |
|
|
fi |
415 |
zzam |
1.1 |
} |
416 |
|
|
|
417 |
zzam |
1.66 |
vdr-plugin_src_util() { |
418 |
zzam |
1.1 |
while [ "$1" ]; do |
419 |
|
|
case "$1" in |
420 |
zzam |
1.66 |
all) |
421 |
|
|
vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
422 |
|
|
;; |
423 |
zzam |
1.68 |
prepare|all_but_unpack) |
424 |
zzam |
1.66 |
vdr-plugin_src_util add_local_patch patchmakefile i18n |
425 |
zzam |
1.34 |
;; |
426 |
zzam |
1.1 |
unpack) |
427 |
zzam |
1.12 |
base_src_unpack |
428 |
zzam |
1.1 |
;; |
429 |
zzam |
1.55 |
add_local_patch) |
430 |
|
|
cd "${S}" || die "Could not change to plugin-source-directory!" |
431 |
idl0r |
1.80 |
epatch_user |
432 |
zzam |
1.55 |
;; |
433 |
zzam |
1.1 |
patchmakefile) |
434 |
zzam |
1.55 |
cd "${S}" || die "Could not change to plugin-source-directory!" |
435 |
|
|
vdr_patchmakefile |
436 |
zzam |
1.1 |
;; |
437 |
zzam |
1.55 |
i18n) |
438 |
|
|
cd "${S}" || die "Could not change to plugin-source-directory!" |
439 |
|
|
vdr_i18n |
440 |
hd_brummy |
1.27 |
;; |
441 |
zzam |
1.1 |
esac |
442 |
|
|
|
443 |
|
|
shift |
444 |
|
|
done |
445 |
|
|
} |
446 |
|
|
|
447 |
zzam |
1.66 |
vdr-plugin_src_unpack() { |
448 |
|
|
if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
449 |
|
|
eerror "Wrong use of vdr-plugin.eclass." |
450 |
|
|
eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
451 |
|
|
echo |
452 |
|
|
eerror "Please report this at bugs.gentoo.org." |
453 |
|
|
die "vdr-plugin_pkg_setup not called!" |
454 |
|
|
fi |
455 |
|
|
if [ -z "$1" ]; then |
456 |
|
|
case "${EAPI:-0}" in |
457 |
idl0r |
1.78 |
2|3|4) |
458 |
zzam |
1.66 |
vdr-plugin_src_util unpack |
459 |
|
|
;; |
460 |
|
|
*) |
461 |
|
|
vdr-plugin_src_util all |
462 |
|
|
;; |
463 |
|
|
esac |
464 |
|
|
|
465 |
|
|
else |
466 |
|
|
vdr-plugin_src_util $@ |
467 |
|
|
fi |
468 |
|
|
} |
469 |
|
|
|
470 |
|
|
vdr-plugin_src_prepare() { |
471 |
zzam |
1.67 |
base_src_prepare |
472 |
zzam |
1.68 |
vdr-plugin_src_util prepare |
473 |
zzam |
1.66 |
} |
474 |
|
|
|
475 |
zzam |
1.1 |
vdr-plugin_src_compile() { |
476 |
zzam |
1.68 |
[ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
477 |
zzam |
1.6 |
|
478 |
zzam |
1.7 |
while [ "$1" ]; do |
479 |
|
|
|
480 |
|
|
case "$1" in |
481 |
zzam |
1.68 |
copy_source) |
482 |
zzam |
1.7 |
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
483 |
|
|
;; |
484 |
|
|
compile) |
485 |
zzam |
1.33 |
if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
486 |
zzam |
1.32 |
eerror "Wrong use of vdr-plugin.eclass." |
487 |
|
|
eerror "An ebuild for a vdr-plugin will not work without" |
488 |
|
|
eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
489 |
|
|
echo |
490 |
|
|
eerror "Please report this at bugs.gentoo.org." |
491 |
|
|
die "vdr-plugin_src_unpack not called!" |
492 |
|
|
fi |
493 |
zzam |
1.50 |
cd "${S}" |
494 |
zzam |
1.7 |
|
495 |
zzam |
1.65 |
BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
496 |
|
|
|
497 |
zzam |
1.48 |
emake ${BUILD_PARAMS} \ |
498 |
zzam |
1.65 |
${BUILD_TARGETS} \ |
499 |
zzam |
1.48 |
LOCALEDIR="${TMP_LOCALE_DIR}" \ |
500 |
zzam |
1.61 |
LIBDIR="${S}" \ |
501 |
zzam |
1.60 |
TMPDIR="${T}" \ |
502 |
zzam |
1.48 |
|| die "emake failed" |
503 |
zzam |
1.7 |
;; |
504 |
|
|
esac |
505 |
zzam |
1.1 |
|
506 |
zzam |
1.7 |
shift |
507 |
|
|
done |
508 |
zzam |
1.1 |
} |
509 |
|
|
|
510 |
|
|
vdr-plugin_src_install() { |
511 |
zzam |
1.6 |
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
512 |
zzam |
1.46 |
cd "${WORKDIR}" |
513 |
zzam |
1.1 |
|
514 |
zzam |
1.22 |
if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
515 |
zzam |
1.50 |
local mname="${P}-Makefile" |
516 |
|
|
cp "${S}"/Makefile "${mname}.patched" |
517 |
|
|
cp Makefile.before "${mname}.before" |
518 |
zzam |
1.22 |
|
519 |
zzam |
1.50 |
diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
520 |
zzam |
1.22 |
|
521 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
522 |
zzam |
1.50 |
doins "${mname}.diff" |
523 |
zzam |
1.22 |
|
524 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-before" |
525 |
zzam |
1.50 |
doins "${mname}.before" |
526 |
zzam |
1.22 |
|
527 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
528 |
zzam |
1.50 |
doins "${mname}.patched" |
529 |
zzam |
1.22 |
|
530 |
|
|
fi |
531 |
|
|
|
532 |
zzam |
1.60 |
|
533 |
zzam |
1.61 |
|
534 |
|
|
cd "${S}" |
535 |
|
|
insinto "${VDR_PLUGIN_DIR}" |
536 |
|
|
doins libvdr-*.so.* |
537 |
|
|
|
538 |
|
|
# create list of all created plugin libs |
539 |
zzam |
1.64 |
vdr_plugin_list="" |
540 |
|
|
local p_name |
541 |
zzam |
1.60 |
for p in libvdr-*.so.*; do |
542 |
|
|
p_name="${p%.so*}" |
543 |
|
|
p_name="${p_name#lib}" |
544 |
zzam |
1.64 |
vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
545 |
zzam |
1.60 |
done |
546 |
|
|
|
547 |
zzam |
1.64 |
create_header_checksum_file ${vdr_plugin_list} |
548 |
|
|
create_plugindb_file ${vdr_plugin_list} |
549 |
zzam |
1.48 |
|
550 |
zzam |
1.56 |
if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
551 |
zzam |
1.48 |
einfo "Installing locales" |
552 |
|
|
cd "${TMP_LOCALE_DIR}" |
553 |
|
|
insinto "${LOCDIR}" |
554 |
|
|
doins -r * |
555 |
|
|
fi |
556 |
|
|
|
557 |
|
|
cd "${S}" |
558 |
zzam |
1.23 |
local docfile |
559 |
|
|
for docfile in README* HISTORY CHANGELOG; do |
560 |
|
|
[[ -f ${docfile} ]] && dodoc ${docfile} |
561 |
|
|
done |
562 |
zzam |
1.2 |
|
563 |
zzam |
1.17 |
# if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
564 |
|
|
[[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
565 |
|
|
|
566 |
|
|
if [[ -n ${VDR_CONFD_FILE} ]]; then |
567 |
zzam |
1.44 |
newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
568 |
zzam |
1.17 |
fi |
569 |
|
|
|
570 |
|
|
|
571 |
|
|
# if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
572 |
|
|
[[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
573 |
|
|
|
574 |
|
|
if [[ -n ${VDR_RCADDON_FILE} ]]; then |
575 |
|
|
insinto "${VDR_RC_DIR}" |
576 |
|
|
newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
577 |
|
|
fi |
578 |
zzam |
1.1 |
} |
579 |
|
|
|
580 |
zzam |
1.50 |
vdr-plugin_pkg_postinst() { |
581 |
|
|
vdr-plugin_print_enable_command |
582 |
|
|
|
583 |
zzam |
1.17 |
if [[ -n "${VDR_CONFD_FILE}" ]]; then |
584 |
zzam |
1.50 |
elog "Please have a look at the config-file" |
585 |
|
|
elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
586 |
hd_brummy |
1.40 |
elog |
587 |
zzam |
1.13 |
fi |
588 |
zzam |
1.1 |
} |
589 |
|
|
|
590 |
zzam |
1.2 |
vdr-plugin_pkg_postrm() { |
591 |
zzam |
1.37 |
delete_orphan_plugindb_file |
592 |
zzam |
1.2 |
} |
593 |
|
|
|
594 |
hd_brummy |
1.83 |
vdr-plugin_pkg_config() { |
595 |
|
|
: |
596 |
|
|
} |
597 |
|
|
|
598 |
zzam |
1.66 |
case "${EAPI:-0}" in |
599 |
idl0r |
1.78 |
2|3|4) |
600 |
zzam |
1.66 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
601 |
|
|
;; |
602 |
|
|
*) |
603 |
|
|
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
604 |
|
|
;; |
605 |
|
|
esac |