diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2015-01-04 21:16:47 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2015-01-04 21:16:47 +0000 |
commit | 5372a9f712a68f1f2f706abcf0a593b6e423f239 (patch) | |
tree | 345dd7ce593878c22f3b2c4006d0854c00f62015 /eclass | |
parent | Revbump to fix init script. (diff) | |
download | gentoo-2-5372a9f712a68f1f2f706abcf0a593b6e423f239.tar.gz gentoo-2-5372a9f712a68f1f2f706abcf0a593b6e423f239.tar.bz2 gentoo-2-5372a9f712a68f1f2f706abcf0a593b6e423f239.zip |
documentation syntax fixed
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vdr-plugin-2.eclass | 100 |
2 files changed, 81 insertions, 24 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 6b7dbf0a5e81..a44b5e990137 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1497 2015/01/04 18:24:06 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1498 2015/01/04 21:16:47 hd_brummy Exp $ + + 04 Jan 2015; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin-2.eclass: + documentation syntax fixed 04 Jan 2015; Tim Harder <radhermit@gentoo.org> -vim.eclass: Remove unused eclass. diff --git a/eclass/vdr-plugin-2.eclass b/eclass/vdr-plugin-2.eclass index f3c74482f6a6..890c407daf73 100644 --- a/eclass/vdr-plugin-2.eclass +++ b/eclass/vdr-plugin-2.eclass @@ -1,28 +1,29 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin-2.eclass,v 1.28 2014/02/08 00:56:30 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin-2.eclass,v 1.29 2015/01/04 21:16:47 hd_brummy Exp $ # @ECLASS: vdr-plugin-2.eclass # @MAINTAINER: -# vdr@gentoo.org -# @BLURB: common vdr plugin ebuild functions -# @DESCRIPTION: -# Eclass for easing maitenance of vdr plugin ebuilds - -# Authors: +# Gentoo VDR Project <vdr@gentoo.org> +# @AUTHOR: # Matthias Schwarzott <zzam@gentoo.org> # Joerg Bornkessel <hd_brummy@gentoo.org> # Christian Ruppert <idl0r@gentoo.org> +# (undisclosed contributors) +# @BLURB: common vdr plugin ebuild functions +# @DESCRIPTION: +# Eclass for easing maintenance of vdr plugin ebuilds -# Plugin config file installation: -# +# @ECLASS-VARIABLE: VDR_CONFD_FILE +# @DEFAULT_UNSET +# @DESCRIPTION: # A plugin config file can be specified through the $VDR_CONFD_FILE variable, it # defaults to ${FILESDIR}/confd. Each config file will be installed as e.g. # ${D}/etc/conf.d/vdr.${VDRPLUGIN} -# Installation of rc-addon files: -# NOTE: rc-addon files must be valid shell scripts! -# +# @ECLASS-VARIABLE: VDR_RCADDON_FILE +# @DEFAULT_UNSET +# @DESCRIPTION # Installing rc-addon files is basically the same as for plugin config files # (see above), it's just using the $VDR_RCADDON_FILE variable instead. # The default value when $VDR_RCADDON_FILE is undefined is: @@ -33,10 +34,68 @@ # has been enabled. # rc-addon files may be used to prepare everything that is necessary for the # plugin start/stop, like passing extra command line options and so on. +# +# NOTE: rc-addon files must be valid shell scripts! + +# @ECLASS-VARIABLE: GENTOO_VDR_CONDITIONAL +# @DEFAULT_UNSET +# @DESCRIPTION: +# This is a hack for ebuilds like vdr-xineliboutput that want to +# conditionally install a vdr-plugin + +# @ECLASS-VARIABLE: PO_SUBDIR +# @DEFAULT_UNSET +# @DESCRIPTION: +# default DIR /po is in ${S} +# use PO_SUBDIR if /po is in a subdir of ${S} +# +# Example: +# for list of files: bla foo/bla +# +# @CODE +# PO_SUBDIR="bla foo/bla" +# @CODE + +# @ECLASS_VARIABLE: VDR_MAINTAINER_MODE +# @DEFAULT_UNSET +# @DESCRIPTION: +# output from function dev_check if it is defined in ebuild or eclass, +# helpfull for gentoo ebuild developer +# +# This will also install any debug files in /usr/share/vdr/maintainer-data +# +# This is intended to be set by user in make.conf. Ebuilds must not set +# it. +# +# VDR_MAINTAINER_MODE=1 + +# @FUNCTION: fix_vdr_libsi_include +# @DEFAULT_UNSET +# @DESCRIPTION: +# plugins failed on compile with wrong path of libsi includes, +# fix this by 'function + space separated list of files' +# +# @Example: +# @CODE +# fix_vdr_libsi_include bla.c foo.c +# @CODE + +# @FUNCTION: remove_i18n_include +# @DEFAULT_UNSET +# @DESCRIPTION: +# compile will fail if plugin still use the old i18n language handling, +# most parts are fixed by vdr-plugin-2.eclass internal functions itself +# remove unneeded i18.n includes from files, if they are still wrong there +# fix this by 'function + space separated list of files" +# +# @Example: +# @CODE +# remove_i18n_include bla.n foo.n +# @CODE # Applying your own local/user patches: # This is done by using the epatch_user() function of the eutils.eclass. -# Simply put your patches into one of these directories: +# Simply add your patches into one of these directories: # /etc/portage/patches/<CATEGORY>/<PF|P|PN>/ # Quote: where the first of these three directories to exist will be the one to # use, ignoring any more general directories which might exist as well. @@ -72,8 +131,6 @@ DEPEND="${COMMON_DEPEND} RDEPEND="${COMMON_DEPEND} >=app-admin/eselect-vdr-0.0.2" -# This is a hack for ebuilds like vdr-xineliboutput that want to -# conditionally install a vdr-plugin if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then IUSE="${IUSE} vdr" DEPEND="vdr? ( ${DEPEND} )" @@ -198,7 +255,6 @@ vdr_patchmakefile() { touch "${WORKDIR}"/.vdr-plugin_makefile_patched } -# Begin new vdr-plugin-2.eclass content dev_check() { # A lot useful debug infos # set VDR_MAINTAINER_MODE="1" in make.conf @@ -217,10 +273,7 @@ gettext_missing() { } detect_po_dir() { -# Some plugins have /po in a subdir -# set PO_SUBDIR in .ebuild -# i.e media-plugins/vdr-streamdev -# PO_SUBDIR="client server" + # helper function [[ -f po ]] && local po_dir="${S}" local po_subdir=( ${S}/${PO_SUBDIR} ) @@ -292,7 +345,6 @@ vdr_i18n() { remove_i18n_include() { # remove uneeded i18.n includes - # call 'remove_i18n_include bla foo' local f for f; do @@ -302,7 +354,6 @@ remove_i18n_include() { dev_check "removed i18n.h include in ${@}" } -# end new vdr-plugin-2.eclass content vdr-plugin-2_print_enable_command() { local p_name c=0 l="" @@ -344,6 +395,7 @@ vdr-plugin-2_pkg_setup() { if has_version ">=media-video/vdr-1.7.34"; then VDR_PLUGIN_DIR=$(pkg-config --variable=libdir vdr) else + # obsolete, as we have only >=media-video/vdr-2 VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" fi @@ -362,6 +414,7 @@ vdr-plugin-2_pkg_setup() { if has_version ">=media-video/vdr-1.7.34"; then LOCDIR=$(pkg-config --variable=locdir vdr) else + # obsolete, as we have only >=media-video/vdr-2 LOCDIR="/usr/share/locale" fi @@ -383,6 +436,7 @@ vdr-plugin-2_pkg_setup() { VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) APIVERSION=$(pkg-config --variable=apiversion vdr) else + # obsolete, as we have only >=media-video/vdr-2 VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |