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