| 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.57 2008/04/21 02:56:34 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.64 2008/06/25 21:35:27 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 | |
| … | |
… | |
| 97 | { |
97 | { |
| 98 | echo "VDRPLUGIN_DB=1" |
98 | echo "VDRPLUGIN_DB=1" |
| 99 | echo "CREATOR=ECLASS" |
99 | echo "CREATOR=ECLASS" |
| 100 | echo "EBUILD=${CATEGORY}/${PN}" |
100 | echo "EBUILD=${CATEGORY}/${PN}" |
| 101 | echo "EBUILD_V=${PVR}" |
101 | echo "EBUILD_V=${PVR}" |
|
|
102 | echo "PLUGINS=\"$@\"" |
| 102 | } > "${D}/${DB_FILE}" |
103 | } > "${D}/${DB_FILE}" |
| 103 | } |
104 | } |
| 104 | |
105 | |
| 105 | # Delete files created outside of vdr-plugin.eclass |
106 | # Delete files created outside of vdr-plugin.eclass |
| 106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
107 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| … | |
… | |
| 130 | create_header_checksum_file() |
131 | create_header_checksum_file() |
| 131 | { |
132 | { |
| 132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
133 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
| 133 | # If vdr in $ROOT and / differ, plugins will not run anyway |
134 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 134 | |
135 | |
|
|
136 | local CHKSUM="header-md5-vdr" |
|
|
137 | |
|
|
138 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
139 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
140 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
141 | ( |
|
|
142 | cd "${VDR_INCLUDE_DIR}" |
|
|
143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
144 | ) > "${CHKSUM}" |
|
|
145 | else |
|
|
146 | die "Could not create md5 checksum of headers" |
|
|
147 | fi |
|
|
148 | |
| 135 | insinto "${VDR_CHECKSUM_DIR}" |
149 | insinto "${VDR_CHECKSUM_DIR}" |
| 136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
150 | local p_name |
| 137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
151 | for p_name; do |
| 138 | else |
152 | newins "${CHKSUM}" "header-md5-${p_name}" |
| 139 | if type -p md5sum >/dev/null 2>&1; then |
153 | done |
| 140 | cd "${S}" |
|
|
| 141 | ( |
|
|
| 142 | cd "${VDR_INCLUDE_DIR}" |
|
|
| 143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 144 | ) > header-md5-${PN} |
|
|
| 145 | doins header-md5-${PN} |
|
|
| 146 | fi |
|
|
| 147 | fi |
|
|
| 148 | } |
154 | } |
| 149 | |
155 | |
| 150 | fix_vdr_libsi_include() |
156 | fix_vdr_libsi_include() |
| 151 | { |
157 | { |
| 152 | einfo "Fixing include of libsi-headers" |
158 | einfo "Fixing include of libsi-headers" |
| … | |
… | |
| 161 | vdr_patchmakefile() { |
167 | vdr_patchmakefile() { |
| 162 | einfo "Patching Makefile" |
168 | einfo "Patching Makefile" |
| 163 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
169 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 164 | cp Makefile "${WORKDIR}"/Makefile.before |
170 | cp Makefile "${WORKDIR}"/Makefile.before |
| 165 | |
171 | |
|
|
172 | # plugin makefiles use VDRDIR in strange ways |
|
|
173 | # assumptions: |
|
|
174 | # 1. $(VDRDIR) contains Make.config |
|
|
175 | # 2. $(VDRDIR) contains config.h |
|
|
176 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
177 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
178 | # 5. $(VDRDIR)/locale exists |
|
|
179 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
180 | # |
|
|
181 | # We only have one directory (for now /usr/include/vdr), |
|
|
182 | # that contains vdr-headers and Make.config. |
|
|
183 | # To satisfy 1-3 we do this: |
|
|
184 | # Set VDRDIR=/usr/include/vdr |
|
|
185 | # Set VDRINCDIR=/usr/include |
|
|
186 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
187 | |
| 166 | ebegin " Setting Pathes" |
188 | ebegin " Setting paths" |
| 167 | sed -i Makefile \ |
189 | sed -i Makefile \ |
| 168 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
190 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 169 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
191 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
| 170 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
192 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
| 171 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
193 | \ |
| 172 | -e "/^DVBDIR/d" \ |
|
|
| 173 | -e 's:-I$(DVBDIR)/include::' |
194 | -e 's:-I$(DVBDIR)/include::' \ |
|
|
195 | -e 's:-I$(DVBDIR)::' |
| 174 | eend $? |
196 | eend 0 |
| 175 | |
197 | |
| 176 | # maybe needed for multiproto: |
198 | # maybe needed for multiproto: |
| 177 | #sed -i Makefile \ |
199 | #sed -i Makefile \ |
| 178 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
200 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 179 | # -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
| 180 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
201 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 181 | |
202 | |
| 182 | if ! grep -q APIVERSION Makefile; then |
203 | if ! grep -q APIVERSION Makefile; then |
| 183 | ebegin " Converting to APIVERSION" |
204 | ebegin " Converting to APIVERSION" |
| 184 | sed -i Makefile \ |
205 | sed -i Makefile \ |
| … | |
… | |
| 274 | vdr_i18n() { |
295 | vdr_i18n() { |
| 275 | if vdr_has_gettext; then |
296 | if vdr_has_gettext; then |
| 276 | einfo "VDR has gettext support" |
297 | einfo "VDR has gettext support" |
| 277 | if plugin_has_gettext; then |
298 | if plugin_has_gettext; then |
| 278 | einfo "Plugin has gettext support, fine" |
299 | einfo "Plugin has gettext support, fine" |
|
|
300 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
301 | ewarn "Please remove left over NO_GETTEXT_HACK." |
|
|
302 | fi |
| 279 | else |
303 | else |
| 280 | vdr_i18n_convert_to_gettext |
304 | vdr_i18n_convert_to_gettext |
| 281 | if [[ $? != 0 ]]; then |
305 | if [[ $? != 0 ]]; then |
| 282 | ewarn "" |
306 | eerror "" |
| 283 | ewarn "Plugin will have only english OSD texts" |
307 | eerror "Plugin will have only english OSD texts" |
| 284 | ewarn "it needs manual fixing." |
308 | eerror "it needs manual fixing." |
| 285 | fi |
309 | fi |
| 286 | fi |
310 | fi |
| 287 | else |
311 | else |
| 288 | einfo "VDR has no gettext support" |
312 | einfo "VDR has no gettext support" |
| 289 | if plugin_has_gettext; then |
313 | if plugin_has_gettext; then |
| … | |
… | |
| 295 | vdr-plugin_copy_source_tree() { |
319 | vdr-plugin_copy_source_tree() { |
| 296 | pushd . >/dev/null |
320 | pushd . >/dev/null |
| 297 | cp -r "${S}" "${T}"/source-tree |
321 | cp -r "${S}" "${T}"/source-tree |
| 298 | cd "${T}"/source-tree |
322 | cd "${T}"/source-tree |
| 299 | cp "${WORKDIR}"/Makefile.before Makefile |
323 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
324 | # TODO: Fix this, maybe no longer needed |
| 300 | sed -i Makefile \ |
325 | sed -i Makefile \ |
| 301 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
326 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 302 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
327 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 303 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
328 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 304 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
329 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| … | |
… | |
| 313 | |
338 | |
| 314 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
339 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 315 | } |
340 | } |
| 316 | |
341 | |
| 317 | vdr-plugin_print_enable_command() { |
342 | vdr-plugin_print_enable_command() { |
|
|
343 | local p_name c=0 l="" |
|
|
344 | for p_name in ${vdr_plugin_list}; do |
|
|
345 | c=$(( c+1 )) |
|
|
346 | l="$l ${p_name#vdr-}" |
|
|
347 | done |
|
|
348 | |
| 318 | elog |
349 | elog |
|
|
350 | case $c in |
|
|
351 | 1) elog "Installed plugin${l}" ;; |
|
|
352 | *) elog "Installed $c plugins:${l}" ;; |
|
|
353 | esac |
| 319 | elog "To activate this vdr-plugin execute the following command:" |
354 | elog "To activate a plugin execute this command:" |
| 320 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
355 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
| 321 | elog |
356 | elog |
| 322 | } |
357 | } |
| 323 | |
358 | |
| 324 | |
359 | |
| 325 | ## exported functions |
360 | ## exported functions |
| … | |
… | |
| 337 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
372 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
| 338 | |
373 | |
| 339 | # Pathes to includes |
374 | # Pathes to includes |
| 340 | VDR_INCLUDE_DIR="/usr/include/vdr" |
375 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 341 | DVB_INCLUDE_DIR="/usr/include" |
376 | DVB_INCLUDE_DIR="/usr/include" |
| 342 | |
|
|
| 343 | |
377 | |
| 344 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
378 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 345 | LOCDIR="/usr/share/vdr/locale" |
379 | LOCDIR="/usr/share/vdr/locale" |
| 346 | |
380 | |
| 347 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
381 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| … | |
… | |
| 410 | cd "${S}" |
444 | cd "${S}" |
| 411 | |
445 | |
| 412 | emake ${BUILD_PARAMS} \ |
446 | emake ${BUILD_PARAMS} \ |
| 413 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
447 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
| 414 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
448 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
449 | LIBDIR="${S}" \ |
|
|
450 | TMPDIR="${T}" \ |
| 415 | || die "emake failed" |
451 | || die "emake failed" |
| 416 | ;; |
452 | ;; |
| 417 | esac |
453 | esac |
| 418 | |
454 | |
| 419 | shift |
455 | shift |
| … | |
… | |
| 440 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
476 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 441 | doins "${mname}.patched" |
477 | doins "${mname}.patched" |
| 442 | |
478 | |
| 443 | fi |
479 | fi |
| 444 | |
480 | |
|
|
481 | |
|
|
482 | |
| 445 | cd "${S}" |
483 | cd "${S}" |
| 446 | insinto "${VDR_PLUGIN_DIR}" |
484 | insinto "${VDR_PLUGIN_DIR}" |
| 447 | doins libvdr-*.so.* |
485 | doins libvdr-*.so.* |
|
|
486 | |
|
|
487 | # create list of all created plugin libs |
|
|
488 | vdr_plugin_list="" |
|
|
489 | local p_name |
|
|
490 | for p in libvdr-*.so.*; do |
|
|
491 | p_name="${p%.so*}" |
|
|
492 | p_name="${p_name#lib}" |
|
|
493 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
494 | done |
|
|
495 | |
|
|
496 | create_header_checksum_file ${vdr_plugin_list} |
|
|
497 | create_plugindb_file ${vdr_plugin_list} |
| 448 | |
498 | |
| 449 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
499 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 450 | einfo "Installing locales" |
500 | einfo "Installing locales" |
| 451 | cd "${TMP_LOCALE_DIR}" |
501 | cd "${TMP_LOCALE_DIR}" |
| 452 | insinto "${LOCDIR}" |
502 | insinto "${LOCDIR}" |
| … | |
… | |
| 472 | |
522 | |
| 473 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
523 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 474 | insinto "${VDR_RC_DIR}" |
524 | insinto "${VDR_RC_DIR}" |
| 475 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
525 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 476 | fi |
526 | fi |
| 477 | |
|
|
| 478 | create_header_checksum_file |
|
|
| 479 | create_plugindb_file |
|
|
| 480 | } |
527 | } |
| 481 | |
528 | |
| 482 | vdr-plugin_pkg_postinst() { |
529 | vdr-plugin_pkg_postinst() { |
| 483 | vdr-plugin_print_enable_command |
530 | vdr-plugin_print_enable_command |
| 484 | |
531 | |