| 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.62 2008/06/02 05:15:27 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.69 2009/03/24 21:10:13 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 | |
| … | |
… | |
| 71 | |
71 | |
| 72 | # works in most cases |
72 | # works in most cases |
| 73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 74 | |
74 | |
| 75 | # depend on headers for DVB-driver |
75 | # depend on headers for DVB-driver |
| 76 | DEPEND=">=media-tv/gentoo-vdr-scripts-0.3.8 |
76 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
| 77 | || ( >=media-tv/gentoo-vdr-scripts-0.4.2 >=media-tv/vdrplugin-rebuild-0.2 ) |
77 | |
| 78 | >=app-admin/eselect-vdr-0.0.2 |
78 | DEPEND="${COMMON_DEPEND} |
| 79 | media-tv/linuxtv-dvb-headers" |
79 | media-tv/linuxtv-dvb-headers" |
|
|
80 | RDEPEND="${COMMON_DEPEND} |
|
|
81 | >=app-admin/eselect-vdr-0.0.2" |
| 80 | |
82 | |
|
|
83 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
|
|
84 | # conditionally install a vdr-plugin |
|
|
85 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then |
|
|
86 | # make DEPEND conditional |
|
|
87 | IUSE="${IUSE} vdr" |
|
|
88 | DEPEND="vdr? ( ${DEPEND} )" |
|
|
89 | RDEPEND="vdr? ( ${RDEPEND} )" |
|
|
90 | fi |
| 81 | |
91 | |
| 82 | # New method of storing plugindb |
92 | # New method of storing plugindb |
| 83 | # Called from src_install |
93 | # Called from src_install |
| 84 | # file maintained by normal portage-methods |
94 | # file maintained by normal portage-methods |
| 85 | create_plugindb_file() { |
95 | create_plugindb_file() { |
| … | |
… | |
| 183 | # To satisfy 1-3 we do this: |
193 | # To satisfy 1-3 we do this: |
| 184 | # Set VDRDIR=/usr/include/vdr |
194 | # Set VDRDIR=/usr/include/vdr |
| 185 | # Set VDRINCDIR=/usr/include |
195 | # Set VDRINCDIR=/usr/include |
| 186 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
196 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
| 187 | |
197 | |
| 188 | ebegin " Setting Pathes" |
198 | ebegin " Setting paths" |
| 189 | sed -i Makefile \ |
199 | sed -i Makefile \ |
| 190 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
200 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 191 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
201 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
| 192 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
202 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
| 193 | \ |
203 | \ |
| … | |
… | |
| 338 | |
348 | |
| 339 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
349 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 340 | } |
350 | } |
| 341 | |
351 | |
| 342 | vdr-plugin_print_enable_command() { |
352 | vdr-plugin_print_enable_command() { |
|
|
353 | local p_name c=0 l="" |
|
|
354 | for p_name in ${vdr_plugin_list}; do |
|
|
355 | c=$(( c+1 )) |
|
|
356 | l="$l ${p_name#vdr-}" |
|
|
357 | done |
|
|
358 | |
| 343 | elog |
359 | elog |
|
|
360 | case $c in |
|
|
361 | 1) elog "Installed plugin${l}" ;; |
|
|
362 | *) elog "Installed $c plugins:${l}" ;; |
|
|
363 | esac |
| 344 | elog "To activate this vdr-plugin execute the following command:" |
364 | elog "To activate a plugin execute this command:" |
| 345 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
365 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
| 346 | elog |
366 | elog |
| 347 | } |
367 | } |
| 348 | |
368 | |
|
|
369 | has_vdr() { |
|
|
370 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
371 | } |
| 349 | |
372 | |
| 350 | ## exported functions |
373 | ## exported functions |
| 351 | |
374 | |
| 352 | vdr-plugin_pkg_setup() { |
375 | vdr-plugin_pkg_setup() { |
| 353 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
376 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| … | |
… | |
| 366 | DVB_INCLUDE_DIR="/usr/include" |
389 | DVB_INCLUDE_DIR="/usr/include" |
| 367 | |
390 | |
| 368 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
391 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 369 | LOCDIR="/usr/share/vdr/locale" |
392 | LOCDIR="/usr/share/vdr/locale" |
| 370 | |
393 | |
|
|
394 | if ! has_vdr; then |
|
|
395 | # set to invalid values to detect abuses |
|
|
396 | VDRVERSION="eclass_no_vdr_installed" |
|
|
397 | APIVERSION="eclass_no_vdr_installed" |
|
|
398 | |
|
|
399 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
400 | einfo "VDR not found!" |
|
|
401 | else |
|
|
402 | # if vdr is required |
|
|
403 | die "VDR not found!" |
|
|
404 | fi |
|
|
405 | return |
|
|
406 | fi |
|
|
407 | |
| 371 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
408 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 372 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
409 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 373 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
410 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 374 | |
411 | |
| 375 | einfo "Compiling against" |
412 | einfo "Compiling against" |
| 376 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
413 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
414 | } |
|
|
415 | |
|
|
416 | vdr-plugin_src_util() { |
|
|
417 | |
|
|
418 | while [ "$1" ]; do |
|
|
419 | |
|
|
420 | case "$1" in |
|
|
421 | all) |
|
|
422 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
423 | ;; |
|
|
424 | prepare|all_but_unpack) |
|
|
425 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
426 | ;; |
|
|
427 | unpack) |
|
|
428 | base_src_unpack |
|
|
429 | ;; |
|
|
430 | add_local_patch) |
|
|
431 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
432 | vdr_add_local_patch |
|
|
433 | ;; |
|
|
434 | patchmakefile) |
|
|
435 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
436 | vdr_patchmakefile |
|
|
437 | ;; |
|
|
438 | i18n) |
|
|
439 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
440 | vdr_i18n |
|
|
441 | ;; |
|
|
442 | esac |
|
|
443 | |
|
|
444 | shift |
|
|
445 | done |
| 377 | } |
446 | } |
| 378 | |
447 | |
| 379 | vdr-plugin_src_unpack() { |
448 | vdr-plugin_src_unpack() { |
| 380 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
449 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 381 | eerror "Wrong use of vdr-plugin.eclass." |
450 | eerror "Wrong use of vdr-plugin.eclass." |
| 382 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
451 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 383 | echo |
452 | echo |
| 384 | eerror "Please report this at bugs.gentoo.org." |
453 | eerror "Please report this at bugs.gentoo.org." |
| 385 | die "vdr-plugin_pkg_setup not called!" |
454 | die "vdr-plugin_pkg_setup not called!" |
| 386 | fi |
455 | fi |
| 387 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
456 | if [ -z "$1" ]; then |
|
|
457 | case "${EAPI:-0}" in |
|
|
458 | 2) |
|
|
459 | vdr-plugin_src_util unpack |
|
|
460 | ;; |
|
|
461 | *) |
|
|
462 | vdr-plugin_src_util all |
|
|
463 | ;; |
|
|
464 | esac |
|
|
465 | |
|
|
466 | else |
|
|
467 | vdr-plugin_src_util $@ |
|
|
468 | fi |
|
|
469 | } |
|
|
470 | |
|
|
471 | vdr-plugin_src_prepare() { |
|
|
472 | base_src_prepare |
|
|
473 | vdr-plugin_src_util prepare |
|
|
474 | } |
|
|
475 | |
|
|
476 | vdr-plugin_src_compile() { |
|
|
477 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
| 388 | |
478 | |
| 389 | while [ "$1" ]; do |
479 | while [ "$1" ]; do |
| 390 | |
480 | |
| 391 | case "$1" in |
481 | case "$1" in |
| 392 | all_but_unpack) |
482 | copy_source) |
| 393 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
| 394 | ;; |
|
|
| 395 | unpack) |
|
|
| 396 | base_src_unpack |
|
|
| 397 | ;; |
|
|
| 398 | add_local_patch) |
|
|
| 399 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 400 | vdr_add_local_patch |
|
|
| 401 | ;; |
|
|
| 402 | patchmakefile) |
|
|
| 403 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 404 | vdr_patchmakefile |
|
|
| 405 | ;; |
|
|
| 406 | i18n) |
|
|
| 407 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 408 | vdr_i18n |
|
|
| 409 | ;; |
|
|
| 410 | esac |
|
|
| 411 | |
|
|
| 412 | shift |
|
|
| 413 | done |
|
|
| 414 | } |
|
|
| 415 | |
|
|
| 416 | vdr-plugin_src_compile() { |
|
|
| 417 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
| 418 | |
|
|
| 419 | while [ "$1" ]; do |
|
|
| 420 | |
|
|
| 421 | case "$1" in |
|
|
| 422 | prepare) |
|
|
| 423 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
483 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 424 | ;; |
484 | ;; |
| 425 | compile) |
485 | compile) |
| 426 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
486 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
| 427 | eerror "Wrong use of vdr-plugin.eclass." |
487 | eerror "Wrong use of vdr-plugin.eclass." |
| … | |
… | |
| 431 | eerror "Please report this at bugs.gentoo.org." |
491 | eerror "Please report this at bugs.gentoo.org." |
| 432 | die "vdr-plugin_src_unpack not called!" |
492 | die "vdr-plugin_src_unpack not called!" |
| 433 | fi |
493 | fi |
| 434 | cd "${S}" |
494 | cd "${S}" |
| 435 | |
495 | |
|
|
496 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
497 | |
| 436 | emake ${BUILD_PARAMS} \ |
498 | emake ${BUILD_PARAMS} \ |
| 437 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
499 | ${BUILD_TARGETS} \ |
| 438 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
500 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
| 439 | LIBDIR="${S}" \ |
501 | LIBDIR="${S}" \ |
| 440 | TMPDIR="${T}" \ |
502 | TMPDIR="${T}" \ |
| 441 | || die "emake failed" |
503 | || die "emake failed" |
| 442 | ;; |
504 | ;; |
| … | |
… | |
| 473 | cd "${S}" |
535 | cd "${S}" |
| 474 | insinto "${VDR_PLUGIN_DIR}" |
536 | insinto "${VDR_PLUGIN_DIR}" |
| 475 | doins libvdr-*.so.* |
537 | doins libvdr-*.so.* |
| 476 | |
538 | |
| 477 | # create list of all created plugin libs |
539 | # create list of all created plugin libs |
| 478 | local p_list="" p_name |
540 | vdr_plugin_list="" |
|
|
541 | local p_name |
| 479 | for p in libvdr-*.so.*; do |
542 | for p in libvdr-*.so.*; do |
| 480 | p_name="${p%.so*}" |
543 | p_name="${p%.so*}" |
| 481 | p_name="${p_name#lib}" |
544 | p_name="${p_name#lib}" |
| 482 | p_list="${p_list} ${p_name}" |
545 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
| 483 | done |
546 | done |
| 484 | |
547 | |
| 485 | create_header_checksum_file ${p_list} |
548 | create_header_checksum_file ${vdr_plugin_list} |
| 486 | create_plugindb_file ${p_list} |
549 | create_plugindb_file ${vdr_plugin_list} |
| 487 | |
550 | |
| 488 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
551 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 489 | einfo "Installing locales" |
552 | einfo "Installing locales" |
| 490 | cd "${TMP_LOCALE_DIR}" |
553 | cd "${TMP_LOCALE_DIR}" |
| 491 | insinto "${LOCDIR}" |
554 | insinto "${LOCDIR}" |
| … | |
… | |
| 532 | vdr-plugin_pkg_config() { |
595 | vdr-plugin_pkg_config() { |
| 533 | ewarn "emerge --config ${PN} is no longer supported" |
596 | ewarn "emerge --config ${PN} is no longer supported" |
| 534 | vdr-plugin_print_enable_command |
597 | vdr-plugin_print_enable_command |
| 535 | } |
598 | } |
| 536 | |
599 | |
|
|
600 | case "${EAPI:-0}" in |
|
|
601 | 2) |
|
|
602 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
603 | ;; |
|
|
604 | *) |
| 537 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
605 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
606 | ;; |
|
|
607 | esac |