| 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.40 2007/01/05 17:24:19 hd_brummy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.47 2007/08/14 14:47:21 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 | |
| … | |
… | |
| 84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
| 85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
| 86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
| 87 | fi |
87 | fi |
| 88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 89 | elog "Adding plugin to vdrplugindb." |
89 | einfo "Adding plugin to vdrplugindb." |
| 90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
| 91 | fi |
91 | fi |
| 92 | } |
92 | } |
| 93 | |
93 | |
| 94 | remove_vdrplugindb() { |
94 | remove_vdrplugindb() { |
| 95 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
95 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 96 | |
96 | |
| 97 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
97 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 98 | elog "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 100 | fi |
100 | fi |
| 101 | } |
101 | } |
| 102 | |
102 | |
| 103 | # New method of storing plugindb |
103 | # New method of storing plugindb |
| … | |
… | |
| 133 | #elog file owned by eclass - don't touch it |
133 | #elog file owned by eclass - don't touch it |
| 134 | return |
134 | return |
| 135 | fi |
135 | fi |
| 136 | |
136 | |
| 137 | elog "Removing orphaned plugindb-file." |
137 | elog "Removing orphaned plugindb-file." |
| 138 | elog "#rm ${DB_FILE}" |
138 | elog "\t#rm ${DB_FILE}" |
| 139 | rm ${DB_FILE} |
139 | rm ${DB_FILE} |
|
|
140 | } |
|
|
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 |
| 140 | } |
161 | } |
| 141 | |
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 |
| … | |
… | |
| 158 | |
179 | |
| 159 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
180 | 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) |
181 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 161 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
182 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 162 | |
183 | |
| 163 | elog "Building ${PF} against vdr-${VDRVERSION}" |
184 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 164 | elog "APIVERSION: ${APIVERSION}" |
185 | einfo "APIVERSION: ${APIVERSION}" |
| 165 | } |
186 | } |
| 166 | |
187 | |
| 167 | vdr-plugin_src_unpack() { |
188 | vdr-plugin_src_unpack() { |
| 168 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
189 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 169 | eerror "Wrong use of vdr-plugin.eclass." |
190 | eerror "Wrong use of vdr-plugin.eclass." |
| … | |
… | |
| 186 | patchmakefile) |
207 | patchmakefile) |
| 187 | if ! cd ${S}; then |
208 | if ! cd ${S}; then |
| 188 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
209 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 189 | ewarn "Perhaps you find one among these:" |
210 | ewarn "Perhaps you find one among these:" |
| 190 | cd "${WORKDIR}" |
211 | cd "${WORKDIR}" |
| 191 | elog "$(/bin/ls -1 ${WORKDIR})" |
212 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
| 192 | die "Could not change to plugin-source-directory!" |
213 | die "Could not change to plugin-source-directory!" |
| 193 | fi |
214 | fi |
| 194 | |
215 | |
| 195 | elog "Patching Makefile" |
216 | einfo "Patching Makefile" |
| 196 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
217 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 197 | cp Makefile Makefile.orig |
218 | cp Makefile "${WORKDIR}"/Makefile.before |
| 198 | |
219 | |
| 199 | sed -i Makefile \ |
220 | sed -i Makefile \ |
| 200 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
221 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 201 | |
222 | |
| 202 | ebegin " Setting Pathes" |
223 | ebegin " Setting Pathes" |
| … | |
… | |
| 237 | ;; |
258 | ;; |
| 238 | add_local_patch) |
259 | add_local_patch) |
| 239 | cd ${S} |
260 | cd ${S} |
| 240 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
261 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 241 | echo |
262 | echo |
| 242 | elog "Applying local patches" |
263 | einfo "Applying local patches" |
| 243 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
264 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
| 244 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
265 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 245 | done |
266 | done |
| 246 | fi |
267 | fi |
| 247 | ;; |
268 | ;; |
| … | |
… | |
| 253 | |
274 | |
| 254 | vdr-plugin_copy_source_tree() { |
275 | vdr-plugin_copy_source_tree() { |
| 255 | pushd . >/dev/null |
276 | pushd . >/dev/null |
| 256 | cp -r ${S} ${T}/source-tree |
277 | cp -r ${S} ${T}/source-tree |
| 257 | cd ${T}/source-tree |
278 | cd ${T}/source-tree |
| 258 | mv Makefile.orig Makefile |
279 | cp "${WORKDIR}"/Makefile.before Makefile |
| 259 | sed -i Makefile \ |
280 | sed -i Makefile \ |
| 260 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
281 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 261 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
282 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 262 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
283 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 263 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
284 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| 264 | popd >/dev/null |
285 | popd >/dev/null |
| 265 | } |
286 | } |
| 266 | |
287 | |
| 267 | vdr-plugin_install_source_tree() { |
288 | vdr-plugin_install_source_tree() { |
| 268 | elog "Installing sources" |
289 | einfo "Installing sources" |
| 269 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
290 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| 270 | insinto ${destdir}-${PV} |
291 | insinto ${destdir}-${PV} |
| 271 | doins -r ${T}/source-tree/* |
292 | doins -r ${T}/source-tree/* |
| 272 | |
293 | |
| 273 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
294 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
| … | |
… | |
| 301 | done |
322 | done |
| 302 | } |
323 | } |
| 303 | |
324 | |
| 304 | vdr-plugin_src_install() { |
325 | vdr-plugin_src_install() { |
| 305 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
326 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 306 | cd ${S} |
327 | cd "${WORKDIR}" |
| 307 | |
328 | |
| 308 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
329 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 309 | local mname=${P}-Makefile |
330 | local mname=${P}-Makefile |
| 310 | cp Makefile ${mname}.patched |
331 | cp "${S}"/Makefile ${mname}.patched |
| 311 | cp Makefile.orig ${mname}.before |
332 | cp Makefile.before ${mname}.before |
| 312 | |
333 | |
| 313 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
334 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
| 314 | |
335 | |
| 315 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
336 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 316 | doins ${mname}.diff |
337 | doins ${mname}.diff |
| … | |
… | |
| 321 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
342 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 322 | doins ${mname}.patched |
343 | doins ${mname}.patched |
| 323 | |
344 | |
| 324 | fi |
345 | fi |
| 325 | |
346 | |
|
|
347 | cd "${S}" |
| 326 | insinto "${VDR_PLUGIN_DIR}" |
348 | insinto "${VDR_PLUGIN_DIR}" |
| 327 | doins libvdr-*.so.* |
349 | doins libvdr-*.so.* |
| 328 | local docfile |
350 | local docfile |
| 329 | for docfile in README* HISTORY CHANGELOG; do |
351 | for docfile in README* HISTORY CHANGELOG; do |
| 330 | [[ -f ${docfile} ]] && dodoc ${docfile} |
352 | [[ -f ${docfile} ]] && dodoc ${docfile} |
| … | |
… | |
| 332 | |
354 | |
| 333 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
355 | # 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 |
356 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 335 | |
357 | |
| 336 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
358 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 337 | insinto /etc/conf.d |
|
|
| 338 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
359 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 339 | fi |
360 | fi |
| 340 | |
361 | |
| 341 | |
362 | |
| 342 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
363 | # 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 |
364 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| … | |
… | |
| 345 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
366 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 346 | insinto "${VDR_RC_DIR}" |
367 | insinto "${VDR_RC_DIR}" |
| 347 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
368 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 348 | fi |
369 | fi |
| 349 | |
370 | |
| 350 | |
371 | create_header_checksum_file |
| 351 | |
|
|
| 352 | insinto ${VDR_CHECKSUM_DIR} |
|
|
| 353 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
| 354 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
| 355 | else |
|
|
| 356 | if which md5sum >/dev/null 2>&1; then |
|
|
| 357 | cd ${S} |
|
|
| 358 | ( |
|
|
| 359 | cd ${ROOT}${VDR_INCLUDE_DIR} |
|
|
| 360 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 361 | ) > header-md5-${PN} |
|
|
| 362 | doins header-md5-${PN} |
|
|
| 363 | fi |
|
|
| 364 | fi |
|
|
| 365 | |
|
|
| 366 | create_plugindb_file |
372 | create_plugindb_file |
| 367 | } |
373 | } |
| 368 | |
374 | |
| 369 | vdr-plugin_pkg_postinst() { |
375 | vdr-plugin_pkg_postinst() { |
| 370 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
376 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| … | |
… | |
| 503 | fi |
509 | fi |
| 504 | } |
510 | } |
| 505 | |
511 | |
| 506 | fix_vdr_libsi_include() |
512 | fix_vdr_libsi_include() |
| 507 | { |
513 | { |
| 508 | elog "Fixing include of libsi-headers" |
514 | einfo "Fixing include of libsi-headers" |
| 509 | local f |
515 | local f |
| 510 | for f; do |
516 | for f; do |
| 511 | sed -i "${f}" \ |
517 | sed -i "${f}" \ |
| 512 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
518 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 513 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
519 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |