| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.55 2008/04/13 16:26:05 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.64 2008/06/25 21:35:27 zzam Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: |
5 | # Author: |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
6 | # Matthias Schwarzott <zzam@gentoo.org> |
| 7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
| 8 | |
8 | |
| … | |
… | |
| 97 | { |
97 | { |
| 98 | echo "VDRPLUGIN_DB=1" |
98 | echo "VDRPLUGIN_DB=1" |
| 99 | echo "CREATOR=ECLASS" |
99 | echo "CREATOR=ECLASS" |
| 100 | echo "EBUILD=${CATEGORY}/${PN}" |
100 | echo "EBUILD=${CATEGORY}/${PN}" |
| 101 | echo "EBUILD_V=${PVR}" |
101 | echo "EBUILD_V=${PVR}" |
|
|
102 | echo "PLUGINS=\"$@\"" |
| 102 | } > "${D}/${DB_FILE}" |
103 | } > "${D}/${DB_FILE}" |
| 103 | } |
104 | } |
| 104 | |
105 | |
| 105 | # Delete files created outside of vdr-plugin.eclass |
106 | # Delete files created outside of vdr-plugin.eclass |
| 106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
107 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| … | |
… | |
| 130 | create_header_checksum_file() |
131 | create_header_checksum_file() |
| 131 | { |
132 | { |
| 132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
133 | # 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 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 134 | |
135 | |
|
|
136 | local CHKSUM="header-md5-vdr" |
|
|
137 | |
|
|
138 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
139 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
140 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
141 | ( |
|
|
142 | cd "${VDR_INCLUDE_DIR}" |
|
|
143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
144 | ) > "${CHKSUM}" |
|
|
145 | else |
|
|
146 | die "Could not create md5 checksum of headers" |
|
|
147 | fi |
|
|
148 | |
| 135 | insinto "${VDR_CHECKSUM_DIR}" |
149 | insinto "${VDR_CHECKSUM_DIR}" |
| 136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
150 | local p_name |
| 137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
151 | for p_name; do |
| 138 | else |
152 | newins "${CHKSUM}" "header-md5-${p_name}" |
| 139 | if type -p md5sum >/dev/null 2>&1; then |
153 | done |
| 140 | cd "${S}" |
|
|
| 141 | ( |
|
|
| 142 | cd "${VDR_INCLUDE_DIR}" |
|
|
| 143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 144 | ) > header-md5-${PN} |
|
|
| 145 | doins header-md5-${PN} |
|
|
| 146 | fi |
|
|
| 147 | fi |
|
|
| 148 | } |
154 | } |
| 149 | |
155 | |
| 150 | fix_vdr_libsi_include() |
156 | fix_vdr_libsi_include() |
| 151 | { |
157 | { |
| 152 | einfo "Fixing include of libsi-headers" |
158 | einfo "Fixing include of libsi-headers" |
| … | |
… | |
| 161 | vdr_patchmakefile() { |
167 | vdr_patchmakefile() { |
| 162 | einfo "Patching Makefile" |
168 | einfo "Patching Makefile" |
| 163 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
169 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 164 | cp Makefile "${WORKDIR}"/Makefile.before |
170 | cp Makefile "${WORKDIR}"/Makefile.before |
| 165 | |
171 | |
|
|
172 | # plugin makefiles use VDRDIR in strange ways |
|
|
173 | # assumptions: |
|
|
174 | # 1. $(VDRDIR) contains Make.config |
|
|
175 | # 2. $(VDRDIR) contains config.h |
|
|
176 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
177 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
178 | # 5. $(VDRDIR)/locale exists |
|
|
179 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
180 | # |
|
|
181 | # We only have one directory (for now /usr/include/vdr), |
|
|
182 | # that contains vdr-headers and Make.config. |
|
|
183 | # To satisfy 1-3 we do this: |
|
|
184 | # Set VDRDIR=/usr/include/vdr |
|
|
185 | # Set VDRINCDIR=/usr/include |
|
|
186 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
187 | |
| 166 | ebegin " Setting Pathes" |
188 | ebegin " Setting paths" |
| 167 | sed -i Makefile \ |
189 | sed -i Makefile \ |
| 168 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
190 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 169 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
191 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
| 170 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
192 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
| 171 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
193 | \ |
| 172 | -e "/^DVBDIR/d" \ |
|
|
| 173 | -e 's:-I$(DVBDIR)/include::' |
194 | -e 's:-I$(DVBDIR)/include::' \ |
|
|
195 | -e 's:-I$(DVBDIR)::' |
| 174 | eend $? |
196 | eend 0 |
| 175 | |
197 | |
| 176 | # maybe needed for multiproto: |
198 | # maybe needed for multiproto: |
| 177 | #sed -i Makefile \ |
199 | #sed -i Makefile \ |
| 178 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
200 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 179 | # -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
| 180 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
201 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 181 | |
202 | |
| 182 | if ! grep -q APIVERSION Makefile; then |
203 | if ! grep -q APIVERSION Makefile; then |
| 183 | ebegin " Converting to APIVERSION" |
204 | ebegin " Converting to APIVERSION" |
| 184 | sed -i Makefile \ |
205 | sed -i Makefile \ |
| … | |
… | |
| 213 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
234 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 214 | done |
235 | done |
| 215 | fi |
236 | fi |
| 216 | } |
237 | } |
| 217 | |
238 | |
|
|
239 | vdr_has_gettext() { |
|
|
240 | has_version ">=media-video/vdr-1.5.7" |
|
|
241 | } |
|
|
242 | |
|
|
243 | plugin_has_gettext() { |
|
|
244 | [[ -d po ]] |
|
|
245 | } |
|
|
246 | |
|
|
247 | vdr_i18n_convert_to_gettext() { |
|
|
248 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
249 | |
|
|
250 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
251 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
252 | return 1 |
|
|
253 | fi |
|
|
254 | |
|
|
255 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
256 | eerror "Missing ${i18n_tool}" |
|
|
257 | eerror "Please re-emerge vdr" |
|
|
258 | die "Missing ${i18n_tool}" |
|
|
259 | fi |
|
|
260 | |
|
|
261 | ebegin "Auto converting translations to gettext" |
|
|
262 | # call i18n-to-gettext tool |
|
|
263 | # take all texts missing tr call into special file |
|
|
264 | "${i18n_tool}" 2>/dev/null \ |
|
|
265 | |sed -e '/^"/!d' \ |
|
|
266 | -e '/^""$/d' \ |
|
|
267 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
268 | > dummy-translations-trNOOP.c |
|
|
269 | |
|
|
270 | # if there were untranslated texts just run it again |
|
|
271 | # now the missing calls are listed in |
|
|
272 | # dummy-translations-trNOOP.c |
|
|
273 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
274 | "${i18n_tool}" &>/dev/null |
|
|
275 | fi |
|
|
276 | |
|
|
277 | # now use the modified Makefile |
|
|
278 | if [[ -f Makefile.new ]]; then |
|
|
279 | mv Makefile.new Makefile |
|
|
280 | eend 0 "" |
|
|
281 | else |
|
|
282 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
|
|
283 | return 1 |
|
|
284 | fi |
|
|
285 | } |
|
|
286 | |
|
|
287 | vdr_i18n_disable_gettext() { |
|
|
288 | ebegin "Disabling gettext support in plugin" |
|
|
289 | # Remove i18n Target if using older vdr |
|
|
290 | sed -i Makefile \ |
|
|
291 | -e '/^all:/s/ i18n//' |
|
|
292 | eend 0 |
|
|
293 | } |
|
|
294 | |
| 218 | vdr_i18n() { |
295 | vdr_i18n() { |
|
|
296 | if vdr_has_gettext; then |
|
|
297 | einfo "VDR has gettext support" |
|
|
298 | if plugin_has_gettext; then |
|
|
299 | einfo "Plugin has gettext support, fine" |
| 219 | if [[ ${USE_GETTEXT} = 0 ]]; then |
300 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
| 220 | # Remove i18n Target if using older vdr |
301 | ewarn "Please remove left over NO_GETTEXT_HACK." |
| 221 | sed -i Makefile \ |
302 | fi |
| 222 | -e '/^all:/s/ i18n//' |
303 | else |
| 223 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
304 | vdr_i18n_convert_to_gettext |
| 224 | einfo "Plugin is not yet changed for new translation system." |
305 | if [[ $? != 0 ]]; then |
| 225 | einfo "Auto converting translations to gettext" |
306 | eerror "" |
| 226 | |
307 | eerror "Plugin will have only english OSD texts" |
| 227 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
308 | eerror "it needs manual fixing." |
| 228 | if [[ ! -x ${i18n_tool} ]]; then |
309 | fi |
| 229 | eerror "Missing ${i18n_tool}" |
|
|
| 230 | eerror "Please re-emerge vdr" |
|
|
| 231 | die "Missing ${i18n_tool}" |
|
|
| 232 | fi |
310 | fi |
| 233 | |
|
|
| 234 | # call i18n-to-gettext tool |
|
|
| 235 | # take all texts missing tr call into special file |
|
|
| 236 | "${i18n_tool}" 2>/dev/null \ |
|
|
| 237 | |sed -e '/^"/!d' \ |
|
|
| 238 | -e '/^""$/d' \ |
|
|
| 239 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
| 240 | > dummy-translations-trNOOP.c |
|
|
| 241 | |
|
|
| 242 | # if there were untranslated texts just run it again |
|
|
| 243 | # now the missing calls are listed in |
|
|
| 244 | # dummy-translations-trNOOP.c |
|
|
| 245 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
| 246 | "${i18n_tool}" &>/dev/null |
|
|
| 247 | fi |
|
|
| 248 | |
|
|
| 249 | # now use the modified Makefile |
|
|
| 250 | if [[ -f Makefile.new ]]; then |
|
|
| 251 | mv Makefile.new Makefile |
|
|
| 252 | else |
311 | else |
| 253 | ewarn "Conversion to gettext failed. Plugin needs fixing." |
312 | einfo "VDR has no gettext support" |
|
|
313 | if plugin_has_gettext; then |
|
|
314 | vdr_i18n_disable_gettext |
| 254 | fi |
315 | fi |
| 255 | fi |
316 | fi |
| 256 | } |
317 | } |
| 257 | |
318 | |
| 258 | vdr-plugin_copy_source_tree() { |
319 | vdr-plugin_copy_source_tree() { |
| 259 | pushd . >/dev/null |
320 | pushd . >/dev/null |
| 260 | cp -r "${S}" "${T}"/source-tree |
321 | cp -r "${S}" "${T}"/source-tree |
| 261 | cd "${T}"/source-tree |
322 | cd "${T}"/source-tree |
| 262 | cp "${WORKDIR}"/Makefile.before Makefile |
323 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
324 | # TODO: Fix this, maybe no longer needed |
| 263 | sed -i Makefile \ |
325 | sed -i Makefile \ |
| 264 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
326 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 265 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
327 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 266 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
328 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 267 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
329 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| … | |
… | |
| 276 | |
338 | |
| 277 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
339 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 278 | } |
340 | } |
| 279 | |
341 | |
| 280 | vdr-plugin_print_enable_command() { |
342 | vdr-plugin_print_enable_command() { |
|
|
343 | local p_name c=0 l="" |
|
|
344 | for p_name in ${vdr_plugin_list}; do |
|
|
345 | c=$(( c+1 )) |
|
|
346 | l="$l ${p_name#vdr-}" |
|
|
347 | done |
|
|
348 | |
| 281 | elog |
349 | elog |
|
|
350 | case $c in |
|
|
351 | 1) elog "Installed plugin${l}" ;; |
|
|
352 | *) elog "Installed $c plugins:${l}" ;; |
|
|
353 | esac |
| 282 | elog "To activate this vdr-plugin execute the following command:" |
354 | elog "To activate a plugin execute this command:" |
| 283 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
355 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
| 284 | elog |
356 | elog |
| 285 | } |
357 | } |
| 286 | |
358 | |
| 287 | |
359 | |
| 288 | ## exported functions |
360 | ## exported functions |
| … | |
… | |
| 301 | |
373 | |
| 302 | # Pathes to includes |
374 | # Pathes to includes |
| 303 | VDR_INCLUDE_DIR="/usr/include/vdr" |
375 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 304 | DVB_INCLUDE_DIR="/usr/include" |
376 | DVB_INCLUDE_DIR="/usr/include" |
| 305 | |
377 | |
| 306 | |
|
|
| 307 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
378 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 308 | LOCDIR="/usr/share/vdr/locale" |
379 | LOCDIR="/usr/share/vdr/locale" |
| 309 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
| 310 | USE_GETTEXT=1 |
|
|
| 311 | else |
|
|
| 312 | USE_GETTEXT=0 |
|
|
| 313 | fi |
|
|
| 314 | |
380 | |
| 315 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
381 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 316 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
382 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 317 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
383 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 318 | |
384 | |
| … | |
… | |
| 378 | cd "${S}" |
444 | cd "${S}" |
| 379 | |
445 | |
| 380 | emake ${BUILD_PARAMS} \ |
446 | emake ${BUILD_PARAMS} \ |
| 381 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
447 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
| 382 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
448 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
449 | LIBDIR="${S}" \ |
|
|
450 | TMPDIR="${T}" \ |
| 383 | || die "emake failed" |
451 | || die "emake failed" |
| 384 | ;; |
452 | ;; |
| 385 | esac |
453 | esac |
| 386 | |
454 | |
| 387 | shift |
455 | shift |
| … | |
… | |
| 408 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
476 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 409 | doins "${mname}.patched" |
477 | doins "${mname}.patched" |
| 410 | |
478 | |
| 411 | fi |
479 | fi |
| 412 | |
480 | |
|
|
481 | |
|
|
482 | |
| 413 | cd "${S}" |
483 | cd "${S}" |
| 414 | insinto "${VDR_PLUGIN_DIR}" |
484 | insinto "${VDR_PLUGIN_DIR}" |
| 415 | doins libvdr-*.so.* |
485 | doins libvdr-*.so.* |
| 416 | |
486 | |
| 417 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
487 | # create list of all created plugin libs |
|
|
488 | vdr_plugin_list="" |
|
|
489 | local p_name |
|
|
490 | for p in libvdr-*.so.*; do |
|
|
491 | p_name="${p%.so*}" |
|
|
492 | p_name="${p_name#lib}" |
|
|
493 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
494 | done |
|
|
495 | |
|
|
496 | create_header_checksum_file ${vdr_plugin_list} |
|
|
497 | create_plugindb_file ${vdr_plugin_list} |
|
|
498 | |
|
|
499 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 418 | einfo "Installing locales" |
500 | einfo "Installing locales" |
| 419 | cd "${TMP_LOCALE_DIR}" |
501 | cd "${TMP_LOCALE_DIR}" |
| 420 | insinto "${LOCDIR}" |
502 | insinto "${LOCDIR}" |
| 421 | doins -r * |
503 | doins -r * |
| 422 | fi |
504 | fi |
| … | |
… | |
| 440 | |
522 | |
| 441 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
523 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 442 | insinto "${VDR_RC_DIR}" |
524 | insinto "${VDR_RC_DIR}" |
| 443 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
525 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 444 | fi |
526 | fi |
| 445 | |
|
|
| 446 | create_header_checksum_file |
|
|
| 447 | create_plugindb_file |
|
|
| 448 | } |
527 | } |
| 449 | |
528 | |
| 450 | vdr-plugin_pkg_postinst() { |
529 | vdr-plugin_pkg_postinst() { |
| 451 | vdr-plugin_print_enable_command |
530 | vdr-plugin_print_enable_command |
| 452 | |
531 | |