| 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.42 2007/02/17 01:07:48 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.48 2007/08/14 18:42:22 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 | |
| … | |
… | |
| 137 | elog "Removing orphaned plugindb-file." |
137 | elog "Removing orphaned plugindb-file." |
| 138 | elog "\t#rm ${DB_FILE}" |
138 | elog "\t#rm ${DB_FILE}" |
| 139 | rm ${DB_FILE} |
139 | rm ${DB_FILE} |
| 140 | } |
140 | } |
| 141 | |
141 | |
|
|
142 | |
|
|
143 | create_header_checksum_file() |
|
|
144 | { |
|
|
145 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
146 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
147 | |
|
|
148 | insinto ${VDR_CHECKSUM_DIR} |
|
|
149 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
150 | newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
151 | else |
|
|
152 | if type -p md5sum >/dev/null 2>&1; then |
|
|
153 | cd ${S} |
|
|
154 | ( |
|
|
155 | cd ${VDR_INCLUDE_DIR} |
|
|
156 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
157 | ) > header-md5-${PN} |
|
|
158 | doins header-md5-${PN} |
|
|
159 | fi |
|
|
160 | fi |
|
|
161 | } |
|
|
162 | |
| 142 | vdr-plugin_pkg_setup() { |
163 | vdr-plugin_pkg_setup() { |
| 143 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
164 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 144 | append-flags -fPIC |
165 | append-flags -fPIC |
| 145 | |
166 | |
| 146 | # Where should the plugins live in the filesystem |
167 | # Where should the plugins live in the filesystem |
| … | |
… | |
| 153 | |
174 | |
| 154 | # Pathes to includes |
175 | # Pathes to includes |
| 155 | VDR_INCLUDE_DIR="/usr/include/vdr" |
176 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 156 | DVB_INCLUDE_DIR="/usr/include" |
177 | DVB_INCLUDE_DIR="/usr/include" |
| 157 | |
178 | |
|
|
179 | |
|
|
180 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
181 | LOCDIR="/usr/share/vdr/locale" |
|
|
182 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
183 | USE_GETTEXT=1 |
|
|
184 | else |
|
|
185 | USE_GETTEXT=0 |
|
|
186 | fi |
| 158 | |
187 | |
| 159 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
188 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 160 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
189 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 161 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
190 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 162 | |
191 | |
| … | |
… | |
| 170 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
199 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 171 | echo |
200 | echo |
| 172 | eerror "Please report this at bugs.gentoo.org." |
201 | eerror "Please report this at bugs.gentoo.org." |
| 173 | die "vdr-plugin_pkg_setup not called!" |
202 | die "vdr-plugin_pkg_setup not called!" |
| 174 | fi |
203 | fi |
| 175 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
204 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
| 176 | |
205 | |
| 177 | while [ "$1" ]; do |
206 | while [ "$1" ]; do |
| 178 | |
207 | |
| 179 | case "$1" in |
208 | case "$1" in |
| 180 | all_but_unpack) |
209 | all_but_unpack) |
| 181 | vdr-plugin_src_unpack add_local_patch patchmakefile |
210 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
| 182 | ;; |
211 | ;; |
| 183 | unpack) |
212 | unpack) |
| 184 | base_src_unpack |
213 | base_src_unpack |
| 185 | ;; |
214 | ;; |
| 186 | patchmakefile) |
215 | patchmakefile) |
| … | |
… | |
| 192 | die "Could not change to plugin-source-directory!" |
221 | die "Could not change to plugin-source-directory!" |
| 193 | fi |
222 | fi |
| 194 | |
223 | |
| 195 | einfo "Patching Makefile" |
224 | einfo "Patching Makefile" |
| 196 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
225 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 197 | cp Makefile Makefile.orig |
226 | cp Makefile "${WORKDIR}"/Makefile.before |
| 198 | |
227 | |
| 199 | sed -i Makefile \ |
228 | sed -i Makefile \ |
| 200 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
229 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 201 | |
230 | |
| 202 | ebegin " Setting Pathes" |
231 | ebegin " Setting Pathes" |
| … | |
… | |
| 243 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
272 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
| 244 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
273 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 245 | done |
274 | done |
| 246 | fi |
275 | fi |
| 247 | ;; |
276 | ;; |
|
|
277 | i18n) |
|
|
278 | cd ${S} |
|
|
279 | if [[ ${USE_GETTEXT} = 0 ]]; then |
|
|
280 | # Remove i18n Target if using older vdr |
|
|
281 | sed -i Makefile \ |
|
|
282 | -e '/^all:/s/ i18n//' |
|
|
283 | elif [[ ${USE_GETTEXT} = 1 && ! -d po ]]; then |
|
|
284 | einfo "Converting translations to gettext" |
|
|
285 | |
|
|
286 | local i18n_tool=/usr/share/vdr/bin/i18n-to-gettext.pl |
|
|
287 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
288 | eerror "Missing ${i18n_tool}" |
|
|
289 | eerror "Please re-emerge vdr" |
|
|
290 | die "Missing ${i18n_tool}" |
|
|
291 | fi |
|
|
292 | |
|
|
293 | # call i18n-to-gettext tool |
|
|
294 | # take all texts missing tr call into special file |
|
|
295 | ${i18n_tool} 2>/dev/null \ |
|
|
296 | |sed -e '/^"/!d' \ |
|
|
297 | -e '/^""$/d' \ |
|
|
298 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
299 | > dummy-translations-trNOOP.c |
|
|
300 | |
|
|
301 | # if there were untranslated texts just run it again |
|
|
302 | # now the missing calls are listed in |
|
|
303 | # dummy-translations-trNOOP.c |
|
|
304 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
305 | ${i18n_tool} &>/dev/null |
|
|
306 | fi |
|
|
307 | |
|
|
308 | # now use the modified Makefile |
|
|
309 | mv Makefile.new Makefile |
|
|
310 | fi |
| 248 | esac |
311 | esac |
| 249 | |
312 | |
| 250 | shift |
313 | shift |
| 251 | done |
314 | done |
| 252 | } |
315 | } |
| 253 | |
316 | |
| 254 | vdr-plugin_copy_source_tree() { |
317 | vdr-plugin_copy_source_tree() { |
| 255 | pushd . >/dev/null |
318 | pushd . >/dev/null |
| 256 | cp -r ${S} ${T}/source-tree |
319 | cp -r ${S} ${T}/source-tree |
| 257 | cd ${T}/source-tree |
320 | cd ${T}/source-tree |
| 258 | mv Makefile.orig Makefile |
321 | cp "${WORKDIR}"/Makefile.before Makefile |
| 259 | sed -i Makefile \ |
322 | sed -i Makefile \ |
| 260 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
323 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 261 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
324 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 262 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
325 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 263 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
326 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| … | |
… | |
| 291 | eerror "Please report this at bugs.gentoo.org." |
354 | eerror "Please report this at bugs.gentoo.org." |
| 292 | die "vdr-plugin_src_unpack not called!" |
355 | die "vdr-plugin_src_unpack not called!" |
| 293 | fi |
356 | fi |
| 294 | cd ${S} |
357 | cd ${S} |
| 295 | |
358 | |
| 296 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
359 | emake ${BUILD_PARAMS} \ |
|
|
360 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
|
|
361 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
362 | || die "emake failed" |
| 297 | ;; |
363 | ;; |
| 298 | esac |
364 | esac |
| 299 | |
365 | |
| 300 | shift |
366 | shift |
| 301 | done |
367 | done |
| 302 | } |
368 | } |
| 303 | |
369 | |
| 304 | vdr-plugin_src_install() { |
370 | vdr-plugin_src_install() { |
| 305 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
371 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 306 | cd ${S} |
372 | cd "${WORKDIR}" |
| 307 | |
373 | |
| 308 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
374 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 309 | local mname=${P}-Makefile |
375 | local mname=${P}-Makefile |
| 310 | cp Makefile ${mname}.patched |
376 | cp "${S}"/Makefile ${mname}.patched |
| 311 | cp Makefile.orig ${mname}.before |
377 | cp Makefile.before ${mname}.before |
| 312 | |
378 | |
| 313 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
379 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
| 314 | |
380 | |
| 315 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
381 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 316 | doins ${mname}.diff |
382 | doins ${mname}.diff |
| … | |
… | |
| 321 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
387 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 322 | doins ${mname}.patched |
388 | doins ${mname}.patched |
| 323 | |
389 | |
| 324 | fi |
390 | fi |
| 325 | |
391 | |
|
|
392 | cd "${S}" |
| 326 | insinto "${VDR_PLUGIN_DIR}" |
393 | insinto "${VDR_PLUGIN_DIR}" |
| 327 | doins libvdr-*.so.* |
394 | doins libvdr-*.so.* |
|
|
395 | |
|
|
396 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
|
|
397 | einfo "Installing locales" |
|
|
398 | cd "${TMP_LOCALE_DIR}" |
|
|
399 | insinto "${LOCDIR}" |
|
|
400 | doins -r * |
|
|
401 | fi |
|
|
402 | |
|
|
403 | cd "${S}" |
| 328 | local docfile |
404 | local docfile |
| 329 | for docfile in README* HISTORY CHANGELOG; do |
405 | for docfile in README* HISTORY CHANGELOG; do |
| 330 | [[ -f ${docfile} ]] && dodoc ${docfile} |
406 | [[ -f ${docfile} ]] && dodoc ${docfile} |
| 331 | done |
407 | done |
| 332 | |
408 | |
| 333 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
409 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 334 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
410 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 335 | |
411 | |
| 336 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
412 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 337 | insinto /etc/conf.d |
|
|
| 338 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
413 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 339 | fi |
414 | fi |
| 340 | |
415 | |
| 341 | |
416 | |
| 342 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
417 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
| 343 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
418 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| … | |
… | |
| 345 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
420 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 346 | insinto "${VDR_RC_DIR}" |
421 | insinto "${VDR_RC_DIR}" |
| 347 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
422 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 348 | fi |
423 | fi |
| 349 | |
424 | |
| 350 | |
425 | create_header_checksum_file |
| 351 | |
|
|
| 352 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
| 353 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
| 354 | |
|
|
| 355 | insinto ${VDR_CHECKSUM_DIR} |
|
|
| 356 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
| 357 | newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
| 358 | else |
|
|
| 359 | if which md5sum >/dev/null 2>&1; then |
|
|
| 360 | cd ${S} |
|
|
| 361 | ( |
|
|
| 362 | cd ${VDR_INCLUDE_DIR} |
|
|
| 363 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 364 | ) > header-md5-${PN} |
|
|
| 365 | doins header-md5-${PN} |
|
|
| 366 | fi |
|
|
| 367 | fi |
|
|
| 368 | |
|
|
| 369 | create_plugindb_file |
426 | create_plugindb_file |
| 370 | } |
427 | } |
| 371 | |
428 | |
| 372 | vdr-plugin_pkg_postinst() { |
429 | vdr-plugin_pkg_postinst() { |
| 373 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
430 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |