| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2012 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.69 2009/03/24 21:10:13 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.78 2012/01/15 17:11:08 idl0r 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 | |
| 9 | # vdr-plugin.eclass |
9 | # vdr-plugin.eclass |
| 10 | # |
10 | # |
| 11 | # eclass to create ebuilds for vdr plugins |
11 | # eclass to create ebuilds for vdr plugins |
| 12 | # |
12 | # |
| 13 | |
13 | |
| 14 | # Example ebuild (vdr-femon): |
14 | # Example ebuild (basic version without patching): |
| 15 | # |
15 | # |
|
|
16 | # EAPI="2" |
| 16 | # inherit vdr-plugin |
17 | # inherit vdr-plugin |
| 17 | # IUSE="" |
18 | # IUSE="" |
| 18 | # SLOT="0" |
19 | # SLOT="0" |
| 19 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
20 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
| 20 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
21 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
| 21 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
22 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
| 22 | # LICENSE="GPL-2" |
23 | # LICENSE="GPL-2" |
| 23 | # KEYWORDS="~x86" |
24 | # KEYWORDS="~x86" |
| 24 | # DEPEND=">=media-video/vdr-1.3.27" |
25 | # DEPEND=">=media-video/vdr-1.6.0" |
| 25 | # |
26 | # |
| 26 | # |
27 | # |
|
|
28 | |
|
|
29 | # For patching you should modify src_prepare phase: |
|
|
30 | # |
|
|
31 | # src_prepare() { |
|
|
32 | # epatch "${FILESDIR}"/${P}-xxx.patch |
|
|
33 | # vdr-plugin_src_prepare |
|
|
34 | # } |
| 27 | |
35 | |
| 28 | # Installation of a config file for the plugin |
36 | # Installation of a config file for the plugin |
| 29 | # |
37 | # |
| 30 | # If ${VDR_CONFD_FILE} is set install this file |
38 | # If ${VDR_CONFD_FILE} is set install this file |
| 31 | # else install ${FILESDIR}/confd if it exists. |
39 | # else install ${FILESDIR}/confd if it exists. |
| … | |
… | |
| 57 | # |
65 | # |
| 58 | # all patches which ending on diff or patch in this DIR will automatically applied |
66 | # all patches which ending on diff or patch in this DIR will automatically applied |
| 59 | # |
67 | # |
| 60 | |
68 | |
| 61 | inherit base multilib eutils flag-o-matic |
69 | inherit base multilib eutils flag-o-matic |
|
|
70 | |
|
|
71 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
72 | die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
|
|
73 | fi |
| 62 | |
74 | |
| 63 | IUSE="" |
75 | IUSE="" |
| 64 | |
76 | |
| 65 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
77 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
78 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| … | |
… | |
| 163 | done |
175 | done |
| 164 | } |
176 | } |
| 165 | |
177 | |
| 166 | fix_vdr_libsi_include() |
178 | fix_vdr_libsi_include() |
| 167 | { |
179 | { |
| 168 | einfo "Fixing include of libsi-headers" |
180 | #einfo "Fixing include of libsi-headers" |
| 169 | local f |
181 | local f |
| 170 | for f; do |
182 | for f; do |
| 171 | sed -i "${f}" \ |
183 | sed -i "${f}" \ |
| 172 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
184 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 173 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
185 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| … | |
… | |
| 193 | # To satisfy 1-3 we do this: |
205 | # To satisfy 1-3 we do this: |
| 194 | # Set VDRDIR=/usr/include/vdr |
206 | # Set VDRDIR=/usr/include/vdr |
| 195 | # Set VDRINCDIR=/usr/include |
207 | # Set VDRINCDIR=/usr/include |
| 196 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
208 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
| 197 | |
209 | |
| 198 | ebegin " Setting paths" |
|
|
| 199 | sed -i Makefile \ |
210 | sed -i Makefile \ |
| 200 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
211 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 201 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
212 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
| 202 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
213 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
| 203 | \ |
214 | \ |
| 204 | -e 's:-I$(DVBDIR)/include::' \ |
215 | -e 's:-I$(DVBDIR)/include::' \ |
| 205 | -e 's:-I$(DVBDIR)::' |
216 | -e 's:-I$(DVBDIR)::' |
| 206 | eend 0 |
|
|
| 207 | |
217 | |
| 208 | # maybe needed for multiproto: |
218 | # maybe needed for multiproto: |
| 209 | #sed -i Makefile \ |
219 | #sed -i Makefile \ |
| 210 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
220 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 211 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
221 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| … | |
… | |
| 227 | |
237 | |
| 228 | # Disabling file stripping, useful for debugging |
238 | # Disabling file stripping, useful for debugging |
| 229 | sed -i Makefile \ |
239 | sed -i Makefile \ |
| 230 | -e '/@.*strip/d' \ |
240 | -e '/@.*strip/d' \ |
| 231 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
241 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
| 232 | -e '/@.*\$(STRIP)/d' |
242 | -e 's/STRIP.*=.*$/STRIP = true/' |
| 233 | |
243 | |
| 234 | # Use a file instead of a variable as single-stepping via ebuild |
244 | # Use a file instead of a variable as single-stepping via ebuild |
| 235 | # destroys environment. |
245 | # destroys environment. |
| 236 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
246 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
| 237 | } |
247 | } |
| … | |
… | |
| 253 | plugin_has_gettext() { |
263 | plugin_has_gettext() { |
| 254 | [[ -d po ]] |
264 | [[ -d po ]] |
| 255 | } |
265 | } |
| 256 | |
266 | |
| 257 | vdr_i18n_convert_to_gettext() { |
267 | vdr_i18n_convert_to_gettext() { |
|
|
268 | if has_version ">=media-video/vdr-1.7.22"; then |
|
|
269 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext" |
|
|
270 | else |
| 258 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
271 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
272 | fi |
| 259 | |
273 | |
| 260 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
274 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
| 261 | ewarn "Conversion to gettext disabled in ebuild" |
275 | ewarn "Conversion to gettext disabled in ebuild" |
| 262 | return 1 |
276 | return 1 |
| 263 | fi |
277 | fi |
| … | |
… | |
| 293 | return 1 |
307 | return 1 |
| 294 | fi |
308 | fi |
| 295 | } |
309 | } |
| 296 | |
310 | |
| 297 | vdr_i18n_disable_gettext() { |
311 | vdr_i18n_disable_gettext() { |
| 298 | ebegin "Disabling gettext support in plugin" |
312 | #einfo "Disabling gettext support in plugin" |
|
|
313 | |
| 299 | # Remove i18n Target if using older vdr |
314 | # Remove i18n Target if using older vdr |
| 300 | sed -i Makefile \ |
315 | sed -i Makefile \ |
| 301 | -e '/^all:/s/ i18n//' |
316 | -e '/^all:/s/ i18n//' |
| 302 | eend 0 |
|
|
| 303 | } |
317 | } |
| 304 | |
318 | |
| 305 | vdr_i18n() { |
319 | vdr_i18n() { |
| 306 | if vdr_has_gettext; then |
320 | if vdr_has_gettext; then |
| 307 | einfo "VDR has gettext support" |
321 | #einfo "VDR has gettext support" |
| 308 | if plugin_has_gettext; then |
322 | if plugin_has_gettext; then |
| 309 | einfo "Plugin has gettext support, fine" |
323 | #einfo "Plugin has gettext support, fine" |
| 310 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
324 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
| 311 | ewarn "Please remove left over NO_GETTEXT_HACK." |
325 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
| 312 | fi |
326 | fi |
| 313 | else |
327 | else |
| 314 | vdr_i18n_convert_to_gettext |
328 | vdr_i18n_convert_to_gettext |
| 315 | if [[ $? != 0 ]]; then |
329 | if [[ $? != 0 ]]; then |
| 316 | eerror "" |
330 | eerror "" |
| 317 | eerror "Plugin will have only english OSD texts" |
331 | eerror "Plugin will have only english OSD texts" |
| 318 | eerror "it needs manual fixing." |
332 | eerror "it needs manual fixing." |
| 319 | fi |
333 | fi |
| 320 | fi |
334 | fi |
| 321 | else |
335 | else |
| 322 | einfo "VDR has no gettext support" |
336 | #einfo "VDR has no gettext support" |
| 323 | if plugin_has_gettext; then |
337 | if plugin_has_gettext; then |
| 324 | vdr_i18n_disable_gettext |
338 | vdr_i18n_disable_gettext |
| 325 | fi |
339 | fi |
| 326 | fi |
340 | fi |
| 327 | } |
341 | } |
| … | |
… | |
| 374 | |
388 | |
| 375 | vdr-plugin_pkg_setup() { |
389 | vdr-plugin_pkg_setup() { |
| 376 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
390 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 377 | append-flags -fPIC |
391 | append-flags -fPIC |
| 378 | |
392 | |
|
|
393 | # Plugins need to be compiled with position independent code, otherwise linking |
|
|
394 | # VDR against it will fail |
|
|
395 | if has_version ">=media-video/vdr-1.7.13"; then |
|
|
396 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
397 | fi |
|
|
398 | |
| 379 | # Where should the plugins live in the filesystem |
399 | # Where should the plugins live in the filesystem |
| 380 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
400 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 381 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
401 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 382 | |
402 | |
| 383 | # was /usr/lib/... some time ago |
403 | # was /usr/lib/... some time ago |
| … | |
… | |
| 387 | # Pathes to includes |
407 | # Pathes to includes |
| 388 | VDR_INCLUDE_DIR="/usr/include/vdr" |
408 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 389 | DVB_INCLUDE_DIR="/usr/include" |
409 | DVB_INCLUDE_DIR="/usr/include" |
| 390 | |
410 | |
| 391 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
411 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
412 | if has_version ">=media-video/vdr-1.6.0_p2-r7"; then |
|
|
413 | LOCDIR="/usr/share/locale" |
|
|
414 | else |
| 392 | LOCDIR="/usr/share/vdr/locale" |
415 | LOCDIR="/usr/share/vdr/locale" |
|
|
416 | fi |
| 393 | |
417 | |
| 394 | if ! has_vdr; then |
418 | if ! has_vdr; then |
| 395 | # set to invalid values to detect abuses |
419 | # set to invalid values to detect abuses |
| 396 | VDRVERSION="eclass_no_vdr_installed" |
420 | VDRVERSION="eclass_no_vdr_installed" |
| 397 | APIVERSION="eclass_no_vdr_installed" |
421 | APIVERSION="eclass_no_vdr_installed" |
| … | |
… | |
| 402 | # if vdr is required |
426 | # if vdr is required |
| 403 | die "VDR not found!" |
427 | die "VDR not found!" |
| 404 | fi |
428 | fi |
| 405 | return |
429 | return |
| 406 | fi |
430 | fi |
| 407 | |
431 | |
| 408 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
432 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 409 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
433 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 410 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
434 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 411 | |
435 | |
| 412 | einfo "Compiling against" |
436 | einfo "Compiling against" |
| … | |
… | |
| 453 | eerror "Please report this at bugs.gentoo.org." |
477 | eerror "Please report this at bugs.gentoo.org." |
| 454 | die "vdr-plugin_pkg_setup not called!" |
478 | die "vdr-plugin_pkg_setup not called!" |
| 455 | fi |
479 | fi |
| 456 | if [ -z "$1" ]; then |
480 | if [ -z "$1" ]; then |
| 457 | case "${EAPI:-0}" in |
481 | case "${EAPI:-0}" in |
| 458 | 2) |
482 | 2|3|4) |
| 459 | vdr-plugin_src_util unpack |
483 | vdr-plugin_src_util unpack |
| 460 | ;; |
484 | ;; |
| 461 | *) |
485 | *) |
| 462 | vdr-plugin_src_util all |
486 | vdr-plugin_src_util all |
| 463 | ;; |
487 | ;; |
| … | |
… | |
| 596 | ewarn "emerge --config ${PN} is no longer supported" |
620 | ewarn "emerge --config ${PN} is no longer supported" |
| 597 | vdr-plugin_print_enable_command |
621 | vdr-plugin_print_enable_command |
| 598 | } |
622 | } |
| 599 | |
623 | |
| 600 | case "${EAPI:-0}" in |
624 | case "${EAPI:-0}" in |
| 601 | 2) |
625 | 2|3|4) |
| 602 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
626 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 603 | ;; |
627 | ;; |
| 604 | *) |
628 | *) |
| 605 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
629 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 606 | ;; |
630 | ;; |