| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 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.77 2011/12/31 01:01:56 hd_brummy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.84 2012/03/18 23:33:49 hd_brummy Exp $ |
|
|
4 | |
|
|
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 | # 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: |
| 4 | # |
18 | # |
| 5 | # Author: |
19 | # A plugin config file can be specified through the $VDR_CONFD_FILE variable, it |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
20 | # defaults to ${FILESDIR}/confd. Each config file will be installed as e.g. |
| 7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
21 | # ${D}/etc/conf.d/vdr.${VDRPLUGIN} |
| 8 | |
22 | |
| 9 | # vdr-plugin.eclass |
23 | # Installation of rc-addon files: |
|
|
24 | # NOTE: rc-addon files must be valid shell scripts! |
| 10 | # |
25 | # |
| 11 | # eclass to create ebuilds for vdr plugins |
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 |
| 12 | # |
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. |
| 13 | |
36 | |
| 14 | # Example ebuild (basic version without patching): |
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. |
| 15 | # |
43 | # |
| 16 | # EAPI="2" |
44 | # For more details about it please take a look at the eutils.class. |
| 17 | # inherit vdr-plugin |
|
|
| 18 | # IUSE="" |
|
|
| 19 | # SLOT="0" |
|
|
| 20 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
|
|
| 21 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
|
|
| 22 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
|
|
| 23 | # LICENSE="GPL-2" |
|
|
| 24 | # KEYWORDS="~x86" |
|
|
| 25 | # DEPEND=">=media-video/vdr-1.6.0" |
|
|
| 26 | # |
|
|
| 27 | # |
|
|
| 28 | |
|
|
| 29 | # For patching you should modify src_prepare phase: |
|
|
| 30 | # |
|
|
| 31 | # src_prepare() { |
|
|
| 32 | # epatch "${FILESDIR}"/${P}-xxx.patch |
|
|
| 33 | # vdr-plugin_src_prepare |
|
|
| 34 | # } |
|
|
| 35 | |
|
|
| 36 | # Installation of a config file for the plugin |
|
|
| 37 | # |
|
|
| 38 | # If ${VDR_CONFD_FILE} is set install this file |
|
|
| 39 | # else install ${FILESDIR}/confd if it exists. |
|
|
| 40 | |
|
|
| 41 | # Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
|
|
| 42 | # For the plugin vdr-femon this would be /etc/conf.d/vdr.femon |
|
|
| 43 | |
|
|
| 44 | |
|
|
| 45 | # Installation of an rc-addon file for the plugin |
|
|
| 46 | # |
|
|
| 47 | # If ${VDR_RCADDON_FILE} is set install this file |
|
|
| 48 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
|
|
| 49 | # |
|
|
| 50 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
|
|
| 51 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
|
|
| 52 | # |
|
|
| 53 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
|
|
| 54 | # It could be used for special startup actions for this plugins, or to create the |
|
|
| 55 | # plugin command line options from a nicer version of a conf.d file. |
|
|
| 56 | |
|
|
| 57 | # HowTo use own local patches; Example |
|
|
| 58 | # |
|
|
| 59 | # Add to your /etc/make.conf: |
|
|
| 60 | # VDR_LOCAL_PATCHES_DIR="/usr/local/patch" |
|
|
| 61 | # |
|
|
| 62 | # Add two DIR's in your local patch dir, ${PN}/${PV}, |
|
|
| 63 | # e.g for vdr-burn-0.1.0 should be: |
|
|
| 64 | # /usr/local/patch/vdr-burn/0.1.0/ |
|
|
| 65 | # |
|
|
| 66 | # all patches which ending on diff or patch in this DIR will automatically applied |
|
|
| 67 | # |
|
|
| 68 | |
45 | |
| 69 | inherit base multilib eutils flag-o-matic |
46 | inherit base multilib eutils flag-o-matic |
| 70 | |
47 | |
| 71 | if ! has "${EAPI:-0}" 0 1 2 3; then |
48 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 72 | die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
49 | die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
| 73 | fi |
50 | fi |
| 74 | |
51 | |
| 75 | IUSE="" |
52 | IUSE="" |
| 76 | |
53 | |
| … | |
… | |
| 86 | |
63 | |
| 87 | # depend on headers for DVB-driver |
64 | # depend on headers for DVB-driver |
| 88 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
65 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
| 89 | |
66 | |
| 90 | DEPEND="${COMMON_DEPEND} |
67 | DEPEND="${COMMON_DEPEND} |
| 91 | media-tv/linuxtv-dvb-headers" |
68 | virtual/linuxtv-dvb-headers" |
| 92 | RDEPEND="${COMMON_DEPEND} |
69 | RDEPEND="${COMMON_DEPEND} |
| 93 | >=app-admin/eselect-vdr-0.0.2" |
70 | >=app-admin/eselect-vdr-0.0.2" |
| 94 | |
71 | |
| 95 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
72 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
| 96 | # conditionally install a vdr-plugin |
73 | # conditionally install a vdr-plugin |
| … | |
… | |
| 244 | # Use a file instead of a variable as single-stepping via ebuild |
221 | # Use a file instead of a variable as single-stepping via ebuild |
| 245 | # destroys environment. |
222 | # destroys environment. |
| 246 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
223 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
| 247 | } |
224 | } |
| 248 | |
225 | |
| 249 | vdr_add_local_patch() { |
|
|
| 250 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
| 251 | echo |
|
|
| 252 | einfo "Applying local patches" |
|
|
| 253 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
|
|
| 254 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
| 255 | done |
|
|
| 256 | fi |
|
|
| 257 | } |
|
|
| 258 | |
|
|
| 259 | vdr_has_gettext() { |
226 | vdr_has_gettext() { |
| 260 | has_version ">=media-video/vdr-1.5.7" |
227 | has_version ">=media-video/vdr-1.5.7" |
| 261 | } |
228 | } |
| 262 | |
229 | |
| 263 | plugin_has_gettext() { |
230 | plugin_has_gettext() { |
| … | |
… | |
| 325 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
292 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
| 326 | fi |
293 | fi |
| 327 | else |
294 | else |
| 328 | vdr_i18n_convert_to_gettext |
295 | vdr_i18n_convert_to_gettext |
| 329 | if [[ $? != 0 ]]; then |
296 | if [[ $? != 0 ]]; then |
| 330 | eerror "" |
|
|
| 331 | eerror "Plugin will have only english OSD texts" |
297 | einfo "Plugin has no OSD texts or will have only english OSD texts" |
| 332 | eerror "it needs manual fixing." |
|
|
| 333 | fi |
298 | fi |
| 334 | fi |
299 | fi |
| 335 | else |
300 | else |
| 336 | #einfo "VDR has no gettext support" |
301 | #einfo "VDR has no gettext support" |
| 337 | if plugin_has_gettext; then |
302 | if plugin_has_gettext; then |
| … | |
… | |
| 433 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
398 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 434 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
399 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 435 | |
400 | |
| 436 | einfo "Compiling against" |
401 | einfo "Compiling against" |
| 437 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
402 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
403 | |
|
|
404 | |
|
|
405 | if [ -n "${VDR_LOCAL_PATCHES_DIR}" ]; then |
|
|
406 | eerror "Using VDR_LOCAL_PATCHES_DIR is deprecated!" |
|
|
407 | eerror "Please move all your patches into" |
|
|
408 | eerror "${EROOT}/etc/portage/patches/${CATEGORY}/${P}" |
|
|
409 | eerror "and remove or unset the VDR_LOCAL_PATCHES_DIR variable." |
|
|
410 | die |
|
|
411 | fi |
| 438 | } |
412 | } |
| 439 | |
413 | |
| 440 | vdr-plugin_src_util() { |
414 | vdr-plugin_src_util() { |
| 441 | |
|
|
| 442 | while [ "$1" ]; do |
415 | while [ "$1" ]; do |
| 443 | |
|
|
| 444 | case "$1" in |
416 | case "$1" in |
| 445 | all) |
417 | all) |
| 446 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
418 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
| 447 | ;; |
419 | ;; |
| 448 | prepare|all_but_unpack) |
420 | prepare|all_but_unpack) |
| … | |
… | |
| 451 | unpack) |
423 | unpack) |
| 452 | base_src_unpack |
424 | base_src_unpack |
| 453 | ;; |
425 | ;; |
| 454 | add_local_patch) |
426 | add_local_patch) |
| 455 | cd "${S}" || die "Could not change to plugin-source-directory!" |
427 | cd "${S}" || die "Could not change to plugin-source-directory!" |
| 456 | vdr_add_local_patch |
428 | epatch_user |
| 457 | ;; |
429 | ;; |
| 458 | patchmakefile) |
430 | patchmakefile) |
| 459 | cd "${S}" || die "Could not change to plugin-source-directory!" |
431 | cd "${S}" || die "Could not change to plugin-source-directory!" |
| 460 | vdr_patchmakefile |
432 | vdr_patchmakefile |
| 461 | ;; |
433 | ;; |
| … | |
… | |
| 477 | eerror "Please report this at bugs.gentoo.org." |
449 | eerror "Please report this at bugs.gentoo.org." |
| 478 | die "vdr-plugin_pkg_setup not called!" |
450 | die "vdr-plugin_pkg_setup not called!" |
| 479 | fi |
451 | fi |
| 480 | if [ -z "$1" ]; then |
452 | if [ -z "$1" ]; then |
| 481 | case "${EAPI:-0}" in |
453 | case "${EAPI:-0}" in |
| 482 | 2|3) |
454 | 2|3|4) |
| 483 | vdr-plugin_src_util unpack |
455 | vdr-plugin_src_util unpack |
| 484 | ;; |
456 | ;; |
| 485 | *) |
457 | *) |
| 486 | vdr-plugin_src_util all |
458 | vdr-plugin_src_util all |
| 487 | ;; |
459 | ;; |
| … | |
… | |
| 615 | vdr-plugin_pkg_postrm() { |
587 | vdr-plugin_pkg_postrm() { |
| 616 | delete_orphan_plugindb_file |
588 | delete_orphan_plugindb_file |
| 617 | } |
589 | } |
| 618 | |
590 | |
| 619 | vdr-plugin_pkg_config() { |
591 | vdr-plugin_pkg_config() { |
| 620 | ewarn "emerge --config ${PN} is no longer supported" |
592 | : |
| 621 | vdr-plugin_print_enable_command |
|
|
| 622 | } |
593 | } |
| 623 | |
594 | |
| 624 | case "${EAPI:-0}" in |
595 | case "${EAPI:-0}" in |
| 625 | 2|3) |
596 | 2|3|4) |
| 626 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
597 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 627 | ;; |
598 | ;; |
| 628 | *) |
599 | *) |
| 629 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
600 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 630 | ;; |
601 | ;; |