| 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.53 2008/02/13 19:44:44 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.69 2009/03/24 21:10: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 | RDEPEND="${COMMON_DEPEND} |
|
|
81 | >=app-admin/eselect-vdr-0.0.2" |
| 80 | |
82 | |
|
|
83 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
|
|
84 | # conditionally install a vdr-plugin |
|
|
85 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then |
|
|
86 | # make DEPEND conditional |
|
|
87 | IUSE="${IUSE} vdr" |
|
|
88 | DEPEND="vdr? ( ${DEPEND} )" |
|
|
89 | RDEPEND="vdr? ( ${RDEPEND} )" |
|
|
90 | fi |
| 81 | |
91 | |
| 82 | # New method of storing plugindb |
92 | # New method of storing plugindb |
| 83 | # Called from src_install |
93 | # Called from src_install |
| 84 | # file maintained by normal portage-methods |
94 | # file maintained by normal portage-methods |
| 85 | create_plugindb_file() { |
95 | create_plugindb_file() { |
| … | |
… | |
| 97 | { |
107 | { |
| 98 | echo "VDRPLUGIN_DB=1" |
108 | echo "VDRPLUGIN_DB=1" |
| 99 | echo "CREATOR=ECLASS" |
109 | echo "CREATOR=ECLASS" |
| 100 | echo "EBUILD=${CATEGORY}/${PN}" |
110 | echo "EBUILD=${CATEGORY}/${PN}" |
| 101 | echo "EBUILD_V=${PVR}" |
111 | echo "EBUILD_V=${PVR}" |
|
|
112 | echo "PLUGINS=\"$@\"" |
| 102 | } > "${D}/${DB_FILE}" |
113 | } > "${D}/${DB_FILE}" |
| 103 | } |
114 | } |
| 104 | |
115 | |
| 105 | # Delete files created outside of vdr-plugin.eclass |
116 | # Delete files created outside of vdr-plugin.eclass |
| 106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
117 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| … | |
… | |
| 130 | create_header_checksum_file() |
141 | create_header_checksum_file() |
| 131 | { |
142 | { |
| 132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
143 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
| 133 | # If vdr in $ROOT and / differ, plugins will not run anyway |
144 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 134 | |
145 | |
|
|
146 | local CHKSUM="header-md5-vdr" |
|
|
147 | |
|
|
148 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
149 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
150 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
151 | ( |
|
|
152 | cd "${VDR_INCLUDE_DIR}" |
|
|
153 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
154 | ) > "${CHKSUM}" |
|
|
155 | else |
|
|
156 | die "Could not create md5 checksum of headers" |
|
|
157 | fi |
|
|
158 | |
| 135 | insinto "${VDR_CHECKSUM_DIR}" |
159 | insinto "${VDR_CHECKSUM_DIR}" |
| 136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
160 | local p_name |
| 137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
161 | for p_name; do |
|
|
162 | newins "${CHKSUM}" "header-md5-${p_name}" |
|
|
163 | done |
|
|
164 | } |
|
|
165 | |
|
|
166 | fix_vdr_libsi_include() |
|
|
167 | { |
|
|
168 | einfo "Fixing include of libsi-headers" |
|
|
169 | local f |
|
|
170 | for f; do |
|
|
171 | sed -i "${f}" \ |
|
|
172 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
173 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
174 | done |
|
|
175 | } |
|
|
176 | |
|
|
177 | vdr_patchmakefile() { |
|
|
178 | einfo "Patching Makefile" |
|
|
179 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
180 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
181 | |
|
|
182 | # plugin makefiles use VDRDIR in strange ways |
|
|
183 | # assumptions: |
|
|
184 | # 1. $(VDRDIR) contains Make.config |
|
|
185 | # 2. $(VDRDIR) contains config.h |
|
|
186 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
187 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
188 | # 5. $(VDRDIR)/locale exists |
|
|
189 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
190 | # |
|
|
191 | # We only have one directory (for now /usr/include/vdr), |
|
|
192 | # that contains vdr-headers and Make.config. |
|
|
193 | # To satisfy 1-3 we do this: |
|
|
194 | # Set VDRDIR=/usr/include/vdr |
|
|
195 | # Set VDRINCDIR=/usr/include |
|
|
196 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
197 | |
|
|
198 | ebegin " Setting paths" |
|
|
199 | sed -i Makefile \ |
|
|
200 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
201 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
|
|
202 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
|
|
203 | \ |
|
|
204 | -e 's:-I$(DVBDIR)/include::' \ |
|
|
205 | -e 's:-I$(DVBDIR)::' |
|
|
206 | eend 0 |
|
|
207 | |
|
|
208 | # maybe needed for multiproto: |
|
|
209 | #sed -i Makefile \ |
|
|
210 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
211 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
212 | |
|
|
213 | if ! grep -q APIVERSION Makefile; then |
|
|
214 | ebegin " Converting to APIVERSION" |
|
|
215 | sed -i Makefile \ |
|
|
216 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
217 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
218 | -e '/VDRVERSION =/a\APIVERSION = $(shell sed -ne '"'"'/define APIVERSION/s/^.*"\\(.*\\)".*$$/\\1/p'"'"' $(VDRDIR)/config.h)' |
|
|
219 | eend $? |
|
|
220 | fi |
|
|
221 | |
|
|
222 | # Correcting Compile-Flags |
|
|
223 | # Do not overwrite CXXFLAGS, add LDFLAGS if missing |
|
|
224 | sed -i Makefile \ |
|
|
225 | -e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
|
|
226 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
227 | |
|
|
228 | # Disabling file stripping, useful for debugging |
|
|
229 | sed -i Makefile \ |
|
|
230 | -e '/@.*strip/d' \ |
|
|
231 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
232 | -e '/@.*\$(STRIP)/d' |
|
|
233 | |
|
|
234 | # Use a file instead of a variable as single-stepping via ebuild |
|
|
235 | # destroys environment. |
|
|
236 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
|
|
237 | } |
|
|
238 | |
|
|
239 | vdr_add_local_patch() { |
|
|
240 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
241 | echo |
|
|
242 | einfo "Applying local patches" |
|
|
243 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
|
|
244 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
245 | done |
|
|
246 | fi |
|
|
247 | } |
|
|
248 | |
|
|
249 | vdr_has_gettext() { |
|
|
250 | has_version ">=media-video/vdr-1.5.7" |
|
|
251 | } |
|
|
252 | |
|
|
253 | plugin_has_gettext() { |
|
|
254 | [[ -d po ]] |
|
|
255 | } |
|
|
256 | |
|
|
257 | vdr_i18n_convert_to_gettext() { |
|
|
258 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
259 | |
|
|
260 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
261 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
262 | return 1 |
|
|
263 | fi |
|
|
264 | |
|
|
265 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
266 | eerror "Missing ${i18n_tool}" |
|
|
267 | eerror "Please re-emerge vdr" |
|
|
268 | die "Missing ${i18n_tool}" |
|
|
269 | fi |
|
|
270 | |
|
|
271 | ebegin "Auto converting translations to gettext" |
|
|
272 | # call i18n-to-gettext tool |
|
|
273 | # take all texts missing tr call into special file |
|
|
274 | "${i18n_tool}" 2>/dev/null \ |
|
|
275 | |sed -e '/^"/!d' \ |
|
|
276 | -e '/^""$/d' \ |
|
|
277 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
278 | > dummy-translations-trNOOP.c |
|
|
279 | |
|
|
280 | # if there were untranslated texts just run it again |
|
|
281 | # now the missing calls are listed in |
|
|
282 | # dummy-translations-trNOOP.c |
|
|
283 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
284 | "${i18n_tool}" &>/dev/null |
|
|
285 | fi |
|
|
286 | |
|
|
287 | # now use the modified Makefile |
|
|
288 | if [[ -f Makefile.new ]]; then |
|
|
289 | mv Makefile.new Makefile |
|
|
290 | eend 0 "" |
| 138 | else |
291 | else |
| 139 | if type -p md5sum >/dev/null 2>&1; then |
292 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
| 140 | cd "${S}" |
293 | return 1 |
| 141 | ( |
294 | fi |
| 142 | cd "${VDR_INCLUDE_DIR}" |
295 | } |
| 143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
296 | |
| 144 | ) > header-md5-${PN} |
297 | vdr_i18n_disable_gettext() { |
| 145 | doins header-md5-${PN} |
298 | ebegin "Disabling gettext support in plugin" |
|
|
299 | # Remove i18n Target if using older vdr |
|
|
300 | sed -i Makefile \ |
|
|
301 | -e '/^all:/s/ i18n//' |
|
|
302 | eend 0 |
|
|
303 | } |
|
|
304 | |
|
|
305 | vdr_i18n() { |
|
|
306 | if vdr_has_gettext; then |
|
|
307 | einfo "VDR has gettext support" |
|
|
308 | if plugin_has_gettext; then |
|
|
309 | einfo "Plugin has gettext support, fine" |
|
|
310 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
311 | ewarn "Please remove left over NO_GETTEXT_HACK." |
|
|
312 | fi |
|
|
313 | else |
|
|
314 | vdr_i18n_convert_to_gettext |
|
|
315 | if [[ $? != 0 ]]; then |
|
|
316 | eerror "" |
|
|
317 | eerror "Plugin will have only english OSD texts" |
|
|
318 | eerror "it needs manual fixing." |
|
|
319 | fi |
| 146 | fi |
320 | fi |
|
|
321 | else |
|
|
322 | einfo "VDR has no gettext support" |
|
|
323 | if plugin_has_gettext; then |
|
|
324 | vdr_i18n_disable_gettext |
| 147 | fi |
325 | fi |
|
|
326 | fi |
| 148 | } |
327 | } |
|
|
328 | |
|
|
329 | vdr-plugin_copy_source_tree() { |
|
|
330 | pushd . >/dev/null |
|
|
331 | cp -r "${S}" "${T}"/source-tree |
|
|
332 | cd "${T}"/source-tree |
|
|
333 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
334 | # TODO: Fix this, maybe no longer needed |
|
|
335 | sed -i Makefile \ |
|
|
336 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
337 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
338 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
339 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
340 | popd >/dev/null |
|
|
341 | } |
|
|
342 | |
|
|
343 | vdr-plugin_install_source_tree() { |
|
|
344 | einfo "Installing sources" |
|
|
345 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
|
|
346 | insinto "${destdir}-${PV}" |
|
|
347 | doins -r "${T}"/source-tree/* |
|
|
348 | |
|
|
349 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
|
|
350 | } |
|
|
351 | |
|
|
352 | vdr-plugin_print_enable_command() { |
|
|
353 | local p_name c=0 l="" |
|
|
354 | for p_name in ${vdr_plugin_list}; do |
|
|
355 | c=$(( c+1 )) |
|
|
356 | l="$l ${p_name#vdr-}" |
|
|
357 | done |
|
|
358 | |
|
|
359 | elog |
|
|
360 | case $c in |
|
|
361 | 1) elog "Installed plugin${l}" ;; |
|
|
362 | *) elog "Installed $c plugins:${l}" ;; |
|
|
363 | esac |
|
|
364 | elog "To activate a plugin execute this command:" |
|
|
365 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
|
|
366 | elog |
|
|
367 | } |
|
|
368 | |
|
|
369 | has_vdr() { |
|
|
370 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
371 | } |
|
|
372 | |
|
|
373 | ## exported functions |
| 149 | |
374 | |
| 150 | vdr-plugin_pkg_setup() { |
375 | vdr-plugin_pkg_setup() { |
| 151 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
376 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 152 | append-flags -fPIC |
377 | append-flags -fPIC |
| 153 | |
378 | |
| … | |
… | |
| 161 | |
386 | |
| 162 | # Pathes to includes |
387 | # Pathes to includes |
| 163 | VDR_INCLUDE_DIR="/usr/include/vdr" |
388 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 164 | DVB_INCLUDE_DIR="/usr/include" |
389 | DVB_INCLUDE_DIR="/usr/include" |
| 165 | |
390 | |
| 166 | |
|
|
| 167 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
391 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 168 | LOCDIR="/usr/share/vdr/locale" |
392 | LOCDIR="/usr/share/vdr/locale" |
| 169 | if has_version ">=media-video/vdr-1.5.7"; then |
393 | |
| 170 | USE_GETTEXT=1 |
394 | if ! has_vdr; then |
|
|
395 | # set to invalid values to detect abuses |
|
|
396 | VDRVERSION="eclass_no_vdr_installed" |
|
|
397 | APIVERSION="eclass_no_vdr_installed" |
|
|
398 | |
|
|
399 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
400 | einfo "VDR not found!" |
| 171 | else |
401 | else |
| 172 | USE_GETTEXT=0 |
402 | # if vdr is required |
|
|
403 | die "VDR not found!" |
| 173 | fi |
404 | fi |
| 174 | |
405 | return |
|
|
406 | fi |
|
|
407 | |
| 175 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
408 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 176 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
409 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 177 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
410 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 178 | |
411 | |
| 179 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
412 | einfo "Compiling against" |
| 180 | einfo "APIVERSION: ${APIVERSION}" |
413 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
414 | } |
|
|
415 | |
|
|
416 | vdr-plugin_src_util() { |
|
|
417 | |
|
|
418 | while [ "$1" ]; do |
|
|
419 | |
|
|
420 | case "$1" in |
|
|
421 | all) |
|
|
422 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
423 | ;; |
|
|
424 | prepare|all_but_unpack) |
|
|
425 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
426 | ;; |
|
|
427 | unpack) |
|
|
428 | base_src_unpack |
|
|
429 | ;; |
|
|
430 | add_local_patch) |
|
|
431 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
432 | vdr_add_local_patch |
|
|
433 | ;; |
|
|
434 | patchmakefile) |
|
|
435 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
436 | vdr_patchmakefile |
|
|
437 | ;; |
|
|
438 | i18n) |
|
|
439 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
440 | vdr_i18n |
|
|
441 | ;; |
|
|
442 | esac |
|
|
443 | |
|
|
444 | shift |
|
|
445 | done |
| 181 | } |
446 | } |
| 182 | |
447 | |
| 183 | vdr-plugin_src_unpack() { |
448 | vdr-plugin_src_unpack() { |
| 184 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
449 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 185 | eerror "Wrong use of vdr-plugin.eclass." |
450 | eerror "Wrong use of vdr-plugin.eclass." |
| 186 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
451 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 187 | echo |
452 | echo |
| 188 | eerror "Please report this at bugs.gentoo.org." |
453 | eerror "Please report this at bugs.gentoo.org." |
| 189 | die "vdr-plugin_pkg_setup not called!" |
454 | die "vdr-plugin_pkg_setup not called!" |
| 190 | fi |
455 | fi |
| 191 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
456 | if [ -z "$1" ]; then |
|
|
457 | case "${EAPI:-0}" in |
|
|
458 | 2) |
|
|
459 | vdr-plugin_src_util unpack |
|
|
460 | ;; |
|
|
461 | *) |
|
|
462 | vdr-plugin_src_util all |
|
|
463 | ;; |
|
|
464 | esac |
|
|
465 | |
|
|
466 | else |
|
|
467 | vdr-plugin_src_util $@ |
|
|
468 | fi |
|
|
469 | } |
|
|
470 | |
|
|
471 | vdr-plugin_src_prepare() { |
|
|
472 | base_src_prepare |
|
|
473 | vdr-plugin_src_util prepare |
|
|
474 | } |
|
|
475 | |
|
|
476 | vdr-plugin_src_compile() { |
|
|
477 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
| 192 | |
478 | |
| 193 | while [ "$1" ]; do |
479 | while [ "$1" ]; do |
| 194 | |
480 | |
| 195 | case "$1" in |
481 | case "$1" in |
| 196 | all_but_unpack) |
482 | copy_source) |
| 197 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
| 198 | ;; |
|
|
| 199 | unpack) |
|
|
| 200 | base_src_unpack |
|
|
| 201 | ;; |
|
|
| 202 | patchmakefile) |
|
|
| 203 | if ! cd "${S}"; then |
|
|
| 204 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
| 205 | ewarn "Perhaps you find one among these:" |
|
|
| 206 | cd "${WORKDIR}" |
|
|
| 207 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
|
|
| 208 | die "Could not change to plugin-source-directory!" |
|
|
| 209 | fi |
|
|
| 210 | |
|
|
| 211 | einfo "Patching Makefile" |
|
|
| 212 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
| 213 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
| 214 | |
|
|
| 215 | sed -i Makefile \ |
|
|
| 216 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
| 217 | |
|
|
| 218 | ebegin " Setting Pathes" |
|
|
| 219 | sed -i Makefile \ |
|
|
| 220 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
| 221 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
| 222 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
|
|
| 223 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
| 224 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
| 225 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
|
|
| 226 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
| 227 | eend $? |
|
|
| 228 | |
|
|
| 229 | ebegin " Converting to APIVERSION" |
|
|
| 230 | sed -i Makefile \ |
|
|
| 231 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
| 232 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
| 233 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
| 234 | eend $? |
|
|
| 235 | |
|
|
| 236 | ebegin " Correcting Compile-Flags" |
|
|
| 237 | sed -i Makefile \ |
|
|
| 238 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 239 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
| 240 | eend $? |
|
|
| 241 | |
|
|
| 242 | ebegin " Disabling file stripping" |
|
|
| 243 | sed -i Makefile \ |
|
|
| 244 | -e '/@.*strip/d' \ |
|
|
| 245 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
| 246 | -e '/^STRIP =/d' \ |
|
|
| 247 | -e '/@.*\$(STRIP)/d' |
|
|
| 248 | eend $? |
|
|
| 249 | |
|
|
| 250 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
| 251 | # destroys environment. |
|
|
| 252 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
|
|
| 253 | ;; |
|
|
| 254 | add_local_patch) |
|
|
| 255 | cd "${S}" |
|
|
| 256 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
| 257 | echo |
|
|
| 258 | einfo "Applying local patches" |
|
|
| 259 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
|
|
| 260 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
| 261 | done |
|
|
| 262 | fi |
|
|
| 263 | ;; |
|
|
| 264 | i18n) |
|
|
| 265 | cd "${S}" |
|
|
| 266 | if [[ ${USE_GETTEXT} = 0 ]]; then |
|
|
| 267 | # Remove i18n Target if using older vdr |
|
|
| 268 | sed -i Makefile \ |
|
|
| 269 | -e '/^all:/s/ i18n//' |
|
|
| 270 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
|
|
| 271 | einfo "Converting translations to gettext" |
|
|
| 272 | |
|
|
| 273 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
| 274 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
| 275 | eerror "Missing ${i18n_tool}" |
|
|
| 276 | eerror "Please re-emerge vdr" |
|
|
| 277 | die "Missing ${i18n_tool}" |
|
|
| 278 | fi |
|
|
| 279 | |
|
|
| 280 | # call i18n-to-gettext tool |
|
|
| 281 | # take all texts missing tr call into special file |
|
|
| 282 | "${i18n_tool}" 2>/dev/null \ |
|
|
| 283 | |sed -e '/^"/!d' \ |
|
|
| 284 | -e '/^""$/d' \ |
|
|
| 285 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
| 286 | > dummy-translations-trNOOP.c |
|
|
| 287 | |
|
|
| 288 | # if there were untranslated texts just run it again |
|
|
| 289 | # now the missing calls are listed in |
|
|
| 290 | # dummy-translations-trNOOP.c |
|
|
| 291 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
| 292 | "${i18n_tool}" &>/dev/null |
|
|
| 293 | fi |
|
|
| 294 | |
|
|
| 295 | # now use the modified Makefile |
|
|
| 296 | mv Makefile.new Makefile |
|
|
| 297 | fi |
|
|
| 298 | esac |
|
|
| 299 | |
|
|
| 300 | shift |
|
|
| 301 | done |
|
|
| 302 | } |
|
|
| 303 | |
|
|
| 304 | vdr-plugin_copy_source_tree() { |
|
|
| 305 | pushd . >/dev/null |
|
|
| 306 | cp -r "${S}" "${T}"/source-tree |
|
|
| 307 | cd "${T}"/source-tree |
|
|
| 308 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
| 309 | sed -i Makefile \ |
|
|
| 310 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
| 311 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 312 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
| 313 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
| 314 | popd >/dev/null |
|
|
| 315 | } |
|
|
| 316 | |
|
|
| 317 | vdr-plugin_install_source_tree() { |
|
|
| 318 | einfo "Installing sources" |
|
|
| 319 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
|
|
| 320 | insinto "${destdir}-${PV}" |
|
|
| 321 | doins -r "${T}"/source-tree/* |
|
|
| 322 | |
|
|
| 323 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
|
|
| 324 | } |
|
|
| 325 | |
|
|
| 326 | vdr-plugin_src_compile() { |
|
|
| 327 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
| 328 | |
|
|
| 329 | while [ "$1" ]; do |
|
|
| 330 | |
|
|
| 331 | case "$1" in |
|
|
| 332 | prepare) |
|
|
| 333 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
483 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 334 | ;; |
484 | ;; |
| 335 | compile) |
485 | compile) |
| 336 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
486 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
| 337 | eerror "Wrong use of vdr-plugin.eclass." |
487 | eerror "Wrong use of vdr-plugin.eclass." |
| … | |
… | |
| 341 | eerror "Please report this at bugs.gentoo.org." |
491 | eerror "Please report this at bugs.gentoo.org." |
| 342 | die "vdr-plugin_src_unpack not called!" |
492 | die "vdr-plugin_src_unpack not called!" |
| 343 | fi |
493 | fi |
| 344 | cd "${S}" |
494 | cd "${S}" |
| 345 | |
495 | |
|
|
496 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
497 | |
| 346 | emake ${BUILD_PARAMS} \ |
498 | emake ${BUILD_PARAMS} \ |
| 347 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
499 | ${BUILD_TARGETS} \ |
| 348 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
500 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
501 | LIBDIR="${S}" \ |
|
|
502 | TMPDIR="${T}" \ |
| 349 | || die "emake failed" |
503 | || die "emake failed" |
| 350 | ;; |
504 | ;; |
| 351 | esac |
505 | esac |
| 352 | |
506 | |
| 353 | shift |
507 | shift |
| … | |
… | |
| 374 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
528 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 375 | doins "${mname}.patched" |
529 | doins "${mname}.patched" |
| 376 | |
530 | |
| 377 | fi |
531 | fi |
| 378 | |
532 | |
|
|
533 | |
|
|
534 | |
| 379 | cd "${S}" |
535 | cd "${S}" |
| 380 | insinto "${VDR_PLUGIN_DIR}" |
536 | insinto "${VDR_PLUGIN_DIR}" |
| 381 | doins libvdr-*.so.* |
537 | doins libvdr-*.so.* |
| 382 | |
538 | |
| 383 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
539 | # create list of all created plugin libs |
|
|
540 | vdr_plugin_list="" |
|
|
541 | local p_name |
|
|
542 | for p in libvdr-*.so.*; do |
|
|
543 | p_name="${p%.so*}" |
|
|
544 | p_name="${p_name#lib}" |
|
|
545 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
546 | done |
|
|
547 | |
|
|
548 | create_header_checksum_file ${vdr_plugin_list} |
|
|
549 | create_plugindb_file ${vdr_plugin_list} |
|
|
550 | |
|
|
551 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 384 | einfo "Installing locales" |
552 | einfo "Installing locales" |
| 385 | cd "${TMP_LOCALE_DIR}" |
553 | cd "${TMP_LOCALE_DIR}" |
| 386 | insinto "${LOCDIR}" |
554 | insinto "${LOCDIR}" |
| 387 | doins -r * |
555 | doins -r * |
| 388 | fi |
556 | fi |
| … | |
… | |
| 406 | |
574 | |
| 407 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
575 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 408 | insinto "${VDR_RC_DIR}" |
576 | insinto "${VDR_RC_DIR}" |
| 409 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
577 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 410 | fi |
578 | fi |
| 411 | |
|
|
| 412 | create_header_checksum_file |
|
|
| 413 | create_plugindb_file |
|
|
| 414 | } |
|
|
| 415 | |
|
|
| 416 | vdr-plugin_print_enable_command() { |
|
|
| 417 | ewarn "emerge --config ${PN} is deprecated" |
|
|
| 418 | elog |
|
|
| 419 | elog "To activate this vdr-plugin execute the following command:" |
|
|
| 420 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
| 421 | elog |
|
|
| 422 | } |
579 | } |
| 423 | |
580 | |
| 424 | vdr-plugin_pkg_postinst() { |
581 | vdr-plugin_pkg_postinst() { |
| 425 | vdr-plugin_print_enable_command |
582 | vdr-plugin_print_enable_command |
| 426 | |
583 | |
| … | |
… | |
| 433 | |
590 | |
| 434 | vdr-plugin_pkg_postrm() { |
591 | vdr-plugin_pkg_postrm() { |
| 435 | delete_orphan_plugindb_file |
592 | delete_orphan_plugindb_file |
| 436 | } |
593 | } |
| 437 | |
594 | |
| 438 | vdr-plugin_pkg_config_legacy() { |
|
|
| 439 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
|
|
| 440 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
| 441 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
| 442 | fi |
|
|
| 443 | |
|
|
| 444 | active=0 |
|
|
| 445 | # First test if plugin is already inside PLUGINS |
|
|
| 446 | local conf=/etc/conf.d/vdr.plugins |
|
|
| 447 | exec 3<${conf} |
|
|
| 448 | while read -u 3 line; do |
|
|
| 449 | [[ ${line} == "" ]] && continue |
|
|
| 450 | [[ ${line:0:1} == "#" ]] && continue |
|
|
| 451 | set -- ${line} |
|
|
| 452 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
|
|
| 453 | done |
|
|
| 454 | exec 3<&- |
|
|
| 455 | |
|
|
| 456 | if [[ $active == 0 ]]; then |
|
|
| 457 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 458 | |
|
|
| 459 | # The pure edit process. |
|
|
| 460 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
| 461 | else |
|
|
| 462 | elog "${INSTALLPLUGIN} already activated" |
|
|
| 463 | echo |
|
|
| 464 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 465 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 466 | elog "aborted" |
|
|
| 467 | return |
|
|
| 468 | fi |
|
|
| 469 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
| 470 | |
|
|
| 471 | # The pure edit process |
|
|
| 472 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
| 473 | fi |
|
|
| 474 | } |
|
|
| 475 | |
|
|
| 476 | vdr-plugin_pkg_config() { |
595 | vdr-plugin_pkg_config() { |
|
|
596 | ewarn "emerge --config ${PN} is no longer supported" |
| 477 | vdr-plugin_print_enable_command |
597 | vdr-plugin_print_enable_command |
| 478 | |
|
|
| 479 | einfo "Calling this now" |
|
|
| 480 | eselect vdr-plugin enable "${PN#vdr-}" |
|
|
| 481 | } |
598 | } |
| 482 | |
599 | |
| 483 | fix_vdr_libsi_include() |
600 | case "${EAPI:-0}" in |
| 484 | { |
601 | 2) |
| 485 | einfo "Fixing include of libsi-headers" |
602 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 486 | local f |
603 | ;; |
| 487 | for f; do |
604 | *) |
| 488 | sed -i "${f}" \ |
|
|
| 489 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
| 490 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
| 491 | done |
|
|
| 492 | } |
|
|
| 493 | |
|
|
| 494 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
605 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
606 | ;; |
|
|
607 | esac |