| 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.31 2006/09/07 18:49:44 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.36 2006/10/12 16:31:45 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 | |
| … | |
… | |
| 38 | # |
38 | # |
| 39 | # If ${VDR_RCADDON_FILE} is set install this file |
39 | # If ${VDR_RCADDON_FILE} is set install this file |
| 40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 41 | # |
41 | # |
| 42 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
42 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 43 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
43 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
| 44 | # |
44 | # |
| 45 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
45 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
| 46 | # It could be used for special startup actions for this plugins, or to create the |
46 | # It could be used for special startup actions for this plugins, or to create the |
| 47 | # plugin command line options from a nicer version of a conf.d file. |
47 | # plugin command line options from a nicer version of a conf.d file. |
| 48 | |
48 | |
| … | |
… | |
| 107 | |
107 | |
| 108 | # Where should the plugins live in the filesystem |
108 | # Where should the plugins live in the filesystem |
| 109 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
109 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 110 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
110 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 111 | |
111 | |
| 112 | # transition to /usr/share/... will need new vdr-scripts version stable |
112 | # was /usr/lib/... some time ago |
|
|
113 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
| 113 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
114 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
| 114 | |
115 | |
| 115 | # Pathes to includes |
116 | # Pathes to includes |
| 116 | VDR_INCLUDE_DIR="/usr/include/vdr" |
117 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 117 | DVB_INCLUDE_DIR="/usr/include" |
118 | DVB_INCLUDE_DIR="/usr/include" |
| 118 | |
119 | |
| … | |
… | |
| 136 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
137 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 137 | |
138 | |
| 138 | while [ "$1" ]; do |
139 | while [ "$1" ]; do |
| 139 | |
140 | |
| 140 | case "$1" in |
141 | case "$1" in |
|
|
142 | all_but_unpack) |
|
|
143 | vdr-plugin_src_unpack add_local_patch patchmakefile |
|
|
144 | ;; |
| 141 | unpack) |
145 | unpack) |
| 142 | base_src_unpack |
146 | base_src_unpack |
| 143 | ;; |
147 | ;; |
| 144 | patchmakefile) |
148 | patchmakefile) |
| 145 | if ! cd ${S}; then |
149 | if ! cd ${S}; then |
| … | |
… | |
| 185 | -e '/@.*strip/d' \ |
189 | -e '/@.*strip/d' \ |
| 186 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
190 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
| 187 | -e '/^STRIP =/d' \ |
191 | -e '/^STRIP =/d' \ |
| 188 | -e '/@.*\$(STRIP)/d' |
192 | -e '/@.*\$(STRIP)/d' |
| 189 | eend $? |
193 | eend $? |
|
|
194 | |
|
|
195 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
196 | # destroys environment. |
|
|
197 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
| 190 | ;; |
198 | ;; |
| 191 | add_local_patch) |
199 | add_local_patch) |
| 192 | cd ${S} |
200 | cd ${S} |
| 193 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
201 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 194 | echo |
202 | echo |
| … | |
… | |
| 203 | shift |
211 | shift |
| 204 | done |
212 | done |
| 205 | } |
213 | } |
| 206 | |
214 | |
| 207 | vdr-plugin_copy_source_tree() { |
215 | vdr-plugin_copy_source_tree() { |
|
|
216 | pushd . >/dev/null |
| 208 | cp -r ${S} ${T}/source-tree |
217 | cp -r ${S} ${T}/source-tree |
| 209 | cd ${T}/source-tree |
218 | cd ${T}/source-tree |
| 210 | mv Makefile.orig Makefile |
219 | mv Makefile.orig Makefile |
| 211 | sed -i Makefile \ |
220 | sed -i Makefile \ |
| 212 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
221 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 213 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
222 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 214 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
223 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 215 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
224 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
225 | popd >/dev/null |
| 216 | } |
226 | } |
| 217 | |
227 | |
| 218 | vdr-plugin_install_source_tree() { |
228 | vdr-plugin_install_source_tree() { |
| 219 | einfo "Installing sources" |
229 | einfo "Installing sources" |
| 220 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
230 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 232 | case "$1" in |
242 | case "$1" in |
| 233 | prepare) |
243 | prepare) |
| 234 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
244 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 235 | ;; |
245 | ;; |
| 236 | compile) |
246 | compile) |
|
|
247 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
248 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
249 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
250 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
251 | echo |
|
|
252 | eerror "Please report this at bugs.gentoo.org." |
|
|
253 | die "vdr-plugin_src_unpack not called!" |
|
|
254 | fi |
| 237 | cd ${S} |
255 | cd ${S} |
| 238 | |
256 | |
| 239 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
257 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 240 | ;; |
258 | ;; |
| 241 | esac |
259 | esac |
| … | |
… | |
| 329 | vdr-plugin_pkg_config_final() { |
347 | vdr-plugin_pkg_config_final() { |
| 330 | diff ${conf_orig} ${conf} |
348 | diff ${conf_orig} ${conf} |
| 331 | rm ${conf_orig} |
349 | rm ${conf_orig} |
| 332 | } |
350 | } |
| 333 | |
351 | |
| 334 | vdr-plugin_pkg_config() { |
352 | vdr-plugin_pkg_config_old() { |
|
|
353 | einfo "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
| 335 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
354 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 336 | INSTALLPLUGIN="${VDRPLUGIN}" |
355 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 337 | fi |
356 | fi |
| 338 | # First test if plugin is already inside PLUGINS |
357 | # First test if plugin is already inside PLUGINS |
| 339 | local conf=/etc/conf.d/vdr |
358 | local conf=/etc/conf.d/vdr |
| … | |
… | |
| 390 | -e ${LINE}'s/" /"/g' |
409 | -e ${LINE}'s/" /"/g' |
| 391 | |
410 | |
| 392 | vdr-plugin_pkg_config_final |
411 | vdr-plugin_pkg_config_final |
| 393 | } |
412 | } |
| 394 | |
413 | |
|
|
414 | vdr-plugin_pkg_config_new() { |
|
|
415 | einfo "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
|
|
416 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
417 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
418 | fi |
|
|
419 | |
|
|
420 | active=0 |
|
|
421 | # First test if plugin is already inside PLUGINS |
|
|
422 | local conf=/etc/conf.d/vdr.plugins |
|
|
423 | exec 3<${conf} |
|
|
424 | while read -u 3 line; do |
|
|
425 | [[ ${line} == "" ]] && continue |
|
|
426 | [[ ${line:0:1} == "#" ]] && continue |
|
|
427 | set -- ${line} |
|
|
428 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
|
|
429 | done |
|
|
430 | exec 3<&- |
|
|
431 | |
|
|
432 | if [[ $active == 0 ]]; then |
|
|
433 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
434 | |
|
|
435 | # The pure edit process. |
|
|
436 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
437 | else |
|
|
438 | einfo "${INSTALLPLUGIN} already activated" |
|
|
439 | echo |
|
|
440 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
441 | if [[ "${answer}" != "yes" ]]; then |
|
|
442 | einfo "aborted" |
|
|
443 | return |
|
|
444 | fi |
|
|
445 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
446 | |
|
|
447 | # The pure edit process |
|
|
448 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
449 | fi |
|
|
450 | } |
|
|
451 | |
|
|
452 | vdr-plugin_pkg_config() { |
|
|
453 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
|
|
454 | vdr-plugin_pkg_config_new |
|
|
455 | else |
|
|
456 | vdr-plugin_pkg_config_old |
|
|
457 | fi |
|
|
458 | } |
|
|
459 | |
| 395 | fix_vdr_libsi_include() |
460 | fix_vdr_libsi_include() |
| 396 | { |
461 | { |
| 397 | einfo "Fixing include of libsi-headers" |
462 | einfo "Fixing include of libsi-headers" |
| 398 | local f |
463 | local f |
| 399 | for f; do |
464 | for f; do |