| 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.48 2007/08/14 18:42:22 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.50 2007/10/05 13:56:49 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 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
76 | DEPEND=">=media-tv/gentoo-vdr-scripts-0.3.8 |
|
|
77 | >=media-tv/vdrplugin-rebuild-0.2 |
|
|
78 | >=app-admin/eselect-vdr-0.0.2 |
| 77 | DEPEND="media-tv/linuxtv-dvb-headers" |
79 | media-tv/linuxtv-dvb-headers" |
| 78 | |
80 | |
| 79 | |
|
|
| 80 | # this code is from linux-mod.eclass |
|
|
| 81 | update_vdrplugindb() { |
|
|
| 82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
|
|
| 83 | |
|
|
| 84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
|
|
| 85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
|
|
| 86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 87 | fi |
|
|
| 88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 89 | einfo "Adding plugin to vdrplugindb." |
|
|
| 90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 91 | fi |
|
|
| 92 | } |
|
|
| 93 | |
|
|
| 94 | remove_vdrplugindb() { |
|
|
| 95 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
|
|
| 96 | |
|
|
| 97 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
|
|
| 99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 100 | fi |
|
|
| 101 | } |
|
|
| 102 | |
81 | |
| 103 | # New method of storing plugindb |
82 | # New method of storing plugindb |
| 104 | # Called from src_install |
83 | # Called from src_install |
| 105 | # file maintained by normal portage-methods |
84 | # file maintained by normal portage-methods |
| 106 | create_plugindb_file() { |
85 | create_plugindb_file() { |
| 107 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
86 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 108 | local DB_FILE=${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
87 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 109 | insinto ${NEW_VDRPLUGINDB_DIR} |
88 | insinto "${NEW_VDRPLUGINDB_DIR}" |
| 110 | cat <<-EOT > ${D}/${DB_FILE} |
89 | cat <<-EOT > "${D}/${DB_FILE}" |
| 111 | VDRPLUGIN_DB=1 |
90 | VDRPLUGIN_DB=1 |
| 112 | CREATOR=ECLASS |
91 | CREATOR=ECLASS |
| 113 | EBUILD=${CATEGORY}/${PN} |
92 | EBUILD=${CATEGORY}/${PN} |
| 114 | EBUILD_V=${PVR} |
93 | EBUILD_V=${PVR} |
| 115 | EOT |
94 | EOT |
| … | |
… | |
| 121 | # long as not every system has switched over to |
100 | # long as not every system has switched over to |
| 122 | # vdrplugin-rebuild-0.2 |
101 | # vdrplugin-rebuild-0.2 |
| 123 | delete_orphan_plugindb_file() { |
102 | delete_orphan_plugindb_file() { |
| 124 | #elog Testing for orphaned plugindb file |
103 | #elog Testing for orphaned plugindb file |
| 125 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
104 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 126 | local DB_FILE=${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
105 | local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 127 | |
106 | |
| 128 | # file exists |
107 | # file exists |
| 129 | [[ -f ${DB_FILE} ]] || return |
108 | [[ -f ${DB_FILE} ]] || return |
| 130 | |
109 | |
| 131 | # will portage handle the file itself |
110 | # will portage handle the file itself |
| 132 | if grep -q CREATOR=ECLASS ${DB_FILE}; then |
111 | if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
| 133 | #elog file owned by eclass - don't touch it |
112 | #elog file owned by eclass - don't touch it |
| 134 | return |
113 | return |
| 135 | fi |
114 | fi |
| 136 | |
115 | |
| 137 | elog "Removing orphaned plugindb-file." |
116 | elog "Removing orphaned plugindb-file." |
| 138 | elog "\t#rm ${DB_FILE}" |
117 | elog "\t#rm ${DB_FILE}" |
| 139 | rm ${DB_FILE} |
118 | rm "${DB_FILE}" |
| 140 | } |
119 | } |
| 141 | |
120 | |
| 142 | |
121 | |
| 143 | create_header_checksum_file() |
122 | create_header_checksum_file() |
| 144 | { |
123 | { |
| 145 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
124 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
| 146 | # If vdr in $ROOT and / differ, plugins will not run anyway |
125 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 147 | |
126 | |
| 148 | insinto ${VDR_CHECKSUM_DIR} |
127 | insinto "${VDR_CHECKSUM_DIR}" |
| 149 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
128 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 150 | newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
129 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
| 151 | else |
130 | else |
| 152 | if type -p md5sum >/dev/null 2>&1; then |
131 | if type -p md5sum >/dev/null 2>&1; then |
| 153 | cd ${S} |
132 | cd "${S}" |
| 154 | ( |
133 | ( |
| 155 | cd ${VDR_INCLUDE_DIR} |
134 | cd "${VDR_INCLUDE_DIR}" |
| 156 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
135 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 157 | ) > header-md5-${PN} |
136 | ) > header-md5-${PN} |
| 158 | doins header-md5-${PN} |
137 | doins header-md5-${PN} |
| 159 | fi |
138 | fi |
| 160 | fi |
139 | fi |
| … | |
… | |
| 183 | USE_GETTEXT=1 |
162 | USE_GETTEXT=1 |
| 184 | else |
163 | else |
| 185 | USE_GETTEXT=0 |
164 | USE_GETTEXT=0 |
| 186 | fi |
165 | fi |
| 187 | |
166 | |
| 188 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
167 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 189 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
168 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 190 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
169 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 191 | |
170 | |
| 192 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
171 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 193 | einfo "APIVERSION: ${APIVERSION}" |
172 | einfo "APIVERSION: ${APIVERSION}" |
| 194 | } |
173 | } |
| … | |
… | |
| 211 | ;; |
190 | ;; |
| 212 | unpack) |
191 | unpack) |
| 213 | base_src_unpack |
192 | base_src_unpack |
| 214 | ;; |
193 | ;; |
| 215 | patchmakefile) |
194 | patchmakefile) |
| 216 | if ! cd ${S}; then |
195 | if ! cd "${S}"; then |
| 217 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
196 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 218 | ewarn "Perhaps you find one among these:" |
197 | ewarn "Perhaps you find one among these:" |
| 219 | cd "${WORKDIR}" |
198 | cd "${WORKDIR}" |
| 220 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
199 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
| 221 | die "Could not change to plugin-source-directory!" |
200 | die "Could not change to plugin-source-directory!" |
| 222 | fi |
201 | fi |
| 223 | |
202 | |
| 224 | einfo "Patching Makefile" |
203 | einfo "Patching Makefile" |
| 225 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
204 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| … | |
… | |
| 263 | # Use a file instead of an variable as single-stepping via ebuild |
242 | # Use a file instead of an variable as single-stepping via ebuild |
| 264 | # destroys environment. |
243 | # destroys environment. |
| 265 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
244 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
| 266 | ;; |
245 | ;; |
| 267 | add_local_patch) |
246 | add_local_patch) |
| 268 | cd ${S} |
247 | cd "${S}" |
| 269 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
248 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 270 | echo |
249 | echo |
| 271 | einfo "Applying local patches" |
250 | einfo "Applying local patches" |
| 272 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
251 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
| 273 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
252 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 274 | done |
253 | done |
| 275 | fi |
254 | fi |
| 276 | ;; |
255 | ;; |
| 277 | i18n) |
256 | i18n) |
| 278 | cd ${S} |
257 | cd "${S}" |
| 279 | if [[ ${USE_GETTEXT} = 0 ]]; then |
258 | if [[ ${USE_GETTEXT} = 0 ]]; then |
| 280 | # Remove i18n Target if using older vdr |
259 | # Remove i18n Target if using older vdr |
| 281 | sed -i Makefile \ |
260 | sed -i Makefile \ |
| 282 | -e '/^all:/s/ i18n//' |
261 | -e '/^all:/s/ i18n//' |
| 283 | elif [[ ${USE_GETTEXT} = 1 && ! -d po ]]; then |
262 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
| 284 | einfo "Converting translations to gettext" |
263 | einfo "Converting translations to gettext" |
| 285 | |
264 | |
| 286 | local i18n_tool=/usr/share/vdr/bin/i18n-to-gettext.pl |
265 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
| 287 | if [[ ! -x ${i18n_tool} ]]; then |
266 | if [[ ! -x ${i18n_tool} ]]; then |
| 288 | eerror "Missing ${i18n_tool}" |
267 | eerror "Missing ${i18n_tool}" |
| 289 | eerror "Please re-emerge vdr" |
268 | eerror "Please re-emerge vdr" |
| 290 | die "Missing ${i18n_tool}" |
269 | die "Missing ${i18n_tool}" |
| 291 | fi |
270 | fi |
| 292 | |
271 | |
| 293 | # call i18n-to-gettext tool |
272 | # call i18n-to-gettext tool |
| 294 | # take all texts missing tr call into special file |
273 | # take all texts missing tr call into special file |
| 295 | ${i18n_tool} 2>/dev/null \ |
274 | "${i18n_tool}" 2>/dev/null \ |
| 296 | |sed -e '/^"/!d' \ |
275 | |sed -e '/^"/!d' \ |
| 297 | -e '/^""$/d' \ |
276 | -e '/^""$/d' \ |
| 298 | -e 's/\(.*\)/trNOOP(\1)/' \ |
277 | -e 's/\(.*\)/trNOOP(\1)/' \ |
| 299 | > dummy-translations-trNOOP.c |
278 | > dummy-translations-trNOOP.c |
| 300 | |
279 | |
| 301 | # if there were untranslated texts just run it again |
280 | # if there were untranslated texts just run it again |
| 302 | # now the missing calls are listed in |
281 | # now the missing calls are listed in |
| 303 | # dummy-translations-trNOOP.c |
282 | # dummy-translations-trNOOP.c |
| 304 | if [[ -s dummy-translations-trNOOP.c ]]; then |
283 | if [[ -s dummy-translations-trNOOP.c ]]; then |
| 305 | ${i18n_tool} &>/dev/null |
284 | "${i18n_tool}" &>/dev/null |
| 306 | fi |
285 | fi |
| 307 | |
286 | |
| 308 | # now use the modified Makefile |
287 | # now use the modified Makefile |
| 309 | mv Makefile.new Makefile |
288 | mv Makefile.new Makefile |
| 310 | fi |
289 | fi |
| … | |
… | |
| 314 | done |
293 | done |
| 315 | } |
294 | } |
| 316 | |
295 | |
| 317 | vdr-plugin_copy_source_tree() { |
296 | vdr-plugin_copy_source_tree() { |
| 318 | pushd . >/dev/null |
297 | pushd . >/dev/null |
| 319 | cp -r ${S} ${T}/source-tree |
298 | cp -r "${S}" "${T}"/source-tree |
| 320 | cd ${T}/source-tree |
299 | cd "${T}"/source-tree |
| 321 | cp "${WORKDIR}"/Makefile.before Makefile |
300 | cp "${WORKDIR}"/Makefile.before Makefile |
| 322 | sed -i Makefile \ |
301 | sed -i Makefile \ |
| 323 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
302 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 324 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
303 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 325 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
304 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| … | |
… | |
| 327 | popd >/dev/null |
306 | popd >/dev/null |
| 328 | } |
307 | } |
| 329 | |
308 | |
| 330 | vdr-plugin_install_source_tree() { |
309 | vdr-plugin_install_source_tree() { |
| 331 | einfo "Installing sources" |
310 | einfo "Installing sources" |
| 332 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
311 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
| 333 | insinto ${destdir}-${PV} |
312 | insinto "${destdir}-${PV}" |
| 334 | doins -r ${T}/source-tree/* |
313 | doins -r "${T}"/source-tree/* |
| 335 | |
314 | |
| 336 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
315 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 337 | } |
316 | } |
| 338 | |
317 | |
| 339 | vdr-plugin_src_compile() { |
318 | vdr-plugin_src_compile() { |
| 340 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
319 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 341 | |
320 | |
| … | |
… | |
| 352 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
331 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
| 353 | echo |
332 | echo |
| 354 | eerror "Please report this at bugs.gentoo.org." |
333 | eerror "Please report this at bugs.gentoo.org." |
| 355 | die "vdr-plugin_src_unpack not called!" |
334 | die "vdr-plugin_src_unpack not called!" |
| 356 | fi |
335 | fi |
| 357 | cd ${S} |
336 | cd "${S}" |
| 358 | |
337 | |
| 359 | emake ${BUILD_PARAMS} \ |
338 | emake ${BUILD_PARAMS} \ |
| 360 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
339 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
| 361 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
340 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
| 362 | || die "emake failed" |
341 | || die "emake failed" |
| … | |
… | |
| 370 | vdr-plugin_src_install() { |
349 | vdr-plugin_src_install() { |
| 371 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
350 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 372 | cd "${WORKDIR}" |
351 | cd "${WORKDIR}" |
| 373 | |
352 | |
| 374 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
353 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 375 | local mname=${P}-Makefile |
354 | local mname="${P}-Makefile" |
| 376 | cp "${S}"/Makefile ${mname}.patched |
355 | cp "${S}"/Makefile "${mname}.patched" |
| 377 | cp Makefile.before ${mname}.before |
356 | cp Makefile.before "${mname}.before" |
| 378 | |
357 | |
| 379 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
358 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
| 380 | |
359 | |
| 381 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
360 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 382 | doins ${mname}.diff |
361 | doins "${mname}.diff" |
| 383 | |
362 | |
| 384 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
363 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 385 | doins ${mname}.before |
364 | doins "${mname}.before" |
| 386 | |
365 | |
| 387 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
366 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 388 | doins ${mname}.patched |
367 | doins "${mname}.patched" |
| 389 | |
368 | |
| 390 | fi |
369 | fi |
| 391 | |
370 | |
| 392 | cd "${S}" |
371 | cd "${S}" |
| 393 | insinto "${VDR_PLUGIN_DIR}" |
372 | insinto "${VDR_PLUGIN_DIR}" |
| … | |
… | |
| 424 | |
403 | |
| 425 | create_header_checksum_file |
404 | create_header_checksum_file |
| 426 | create_plugindb_file |
405 | create_plugindb_file |
| 427 | } |
406 | } |
| 428 | |
407 | |
|
|
408 | vdr-plugin_print_enable_command() { |
|
|
409 | ewarn "emerge --config ${PN} is deprecated" |
|
|
410 | elog |
|
|
411 | elog "To activate this vdr-plugin execute the following command:" |
|
|
412 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
413 | elog |
|
|
414 | } |
|
|
415 | |
| 429 | vdr-plugin_pkg_postinst() { |
416 | vdr-plugin_pkg_postinst() { |
| 430 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
417 | vdr-plugin_print_enable_command |
| 431 | update_vdrplugindb |
418 | |
| 432 | fi |
|
|
| 433 | elog |
|
|
| 434 | elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
| 435 | elog "To activate execute the following command:" |
|
|
| 436 | elog |
|
|
| 437 | elog " emerge --config ${PN}" |
|
|
| 438 | elog |
|
|
| 439 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
419 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 440 | elog "And have a look at the config-file" |
420 | elog "Please have a look at the config-file" |
| 441 | elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
421 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
| 442 | elog |
422 | elog |
| 443 | fi |
423 | fi |
| 444 | } |
424 | } |
| 445 | |
425 | |
| 446 | vdr-plugin_pkg_postrm() { |
426 | vdr-plugin_pkg_postrm() { |
| 447 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
|
|
| 448 | remove_vdrplugindb |
|
|
| 449 | fi |
|
|
| 450 | delete_orphan_plugindb_file |
427 | delete_orphan_plugindb_file |
| 451 | } |
428 | } |
| 452 | |
429 | |
| 453 | vdr-plugin_pkg_config_final() { |
|
|
| 454 | diff ${conf_orig} ${conf} |
|
|
| 455 | rm ${conf_orig} |
|
|
| 456 | } |
|
|
| 457 | |
|
|
| 458 | vdr-plugin_pkg_config_old() { |
430 | vdr-plugin_pkg_config_legacy() { |
| 459 | elog "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
|
|
| 460 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
| 461 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
| 462 | fi |
|
|
| 463 | # First test if plugin is already inside PLUGINS |
|
|
| 464 | local conf=/etc/conf.d/vdr |
|
|
| 465 | conf_orig=${conf}.before_emerge_config |
|
|
| 466 | cp ${conf} ${conf_orig} |
|
|
| 467 | |
|
|
| 468 | elog "Reading ${conf}" |
|
|
| 469 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
| 470 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
| 471 | if [[ -n "${LINE}" ]]; then |
|
|
| 472 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
| 473 | else |
|
|
| 474 | echo 'PLUGINS=""' >> ${conf} |
|
|
| 475 | fi |
|
|
| 476 | unset LINE |
|
|
| 477 | fi |
|
|
| 478 | |
|
|
| 479 | unset PLUGINS |
|
|
| 480 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
| 481 | |
|
|
| 482 | active=0 |
|
|
| 483 | for p in ${PLUGINS}; do |
|
|
| 484 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
| 485 | active=1 |
|
|
| 486 | break; |
|
|
| 487 | fi |
|
|
| 488 | done |
|
|
| 489 | |
|
|
| 490 | if [[ "${active}" == "1" ]]; then |
|
|
| 491 | elog "${INSTALLPLUGIN} already activated" |
|
|
| 492 | echo |
|
|
| 493 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 494 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 495 | elog "aborted" |
|
|
| 496 | return |
|
|
| 497 | fi |
|
|
| 498 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
| 499 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
| 500 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
| 501 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 502 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 503 | -e ${LINE}'s/" /"/g' |
|
|
| 504 | |
|
|
| 505 | vdr-plugin_pkg_config_final |
|
|
| 506 | return |
|
|
| 507 | fi |
|
|
| 508 | |
|
|
| 509 | |
|
|
| 510 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 511 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
| 512 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
| 513 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 514 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 515 | -e ${LINE}'s/" /"/g' |
|
|
| 516 | |
|
|
| 517 | vdr-plugin_pkg_config_final |
|
|
| 518 | } |
|
|
| 519 | |
|
|
| 520 | vdr-plugin_pkg_config_new() { |
|
|
| 521 | elog "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
431 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
| 522 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
432 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 523 | INSTALLPLUGIN="${VDRPLUGIN}" |
433 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 524 | fi |
434 | fi |
| 525 | |
435 | |
| 526 | active=0 |
436 | active=0 |
| … | |
… | |
| 554 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
464 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
| 555 | fi |
465 | fi |
| 556 | } |
466 | } |
| 557 | |
467 | |
| 558 | vdr-plugin_pkg_config() { |
468 | vdr-plugin_pkg_config() { |
| 559 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
469 | vdr-plugin_print_enable_command |
| 560 | vdr-plugin_pkg_config_new |
470 | |
| 561 | else |
471 | einfo "Calling this now" |
| 562 | vdr-plugin_pkg_config_old |
472 | eselect vdr-plugin enable "${PN#vdr-}" |
| 563 | fi |
|
|
| 564 | } |
473 | } |
| 565 | |
474 | |
| 566 | fix_vdr_libsi_include() |
475 | fix_vdr_libsi_include() |
| 567 | { |
476 | { |
| 568 | einfo "Fixing include of libsi-headers" |
477 | einfo "Fixing include of libsi-headers" |