| 1 |
# Copyright 1999-2005 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.27 2006/07/19 19:19:00 hd_brummy Exp $ |
| 4 |
# |
| 5 |
# Author: |
| 6 |
# Matthias Schwarzott <zzam@gentoo.org> |
| 7 |
# Joerg Bornkessel <hd_brummy@gentoo.org> |
| 8 |
|
| 9 |
# vdr-plugin.eclass |
| 10 |
# |
| 11 |
# eclass to create ebuilds for vdr plugins |
| 12 |
# |
| 13 |
|
| 14 |
# Example ebuild (vdr-femon): |
| 15 |
# |
| 16 |
# inherit vdr-plugin |
| 17 |
# IUSE="" |
| 18 |
# SLOT="0" |
| 19 |
# DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
| 20 |
# HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
| 21 |
# SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
| 22 |
# LICENSE="GPL-2" |
| 23 |
# KEYWORDS="~x86" |
| 24 |
# DEPEND=">=media-video/vdr-1.3.27" |
| 25 |
# |
| 26 |
# |
| 27 |
|
| 28 |
# Installation of a config file for the plugin |
| 29 |
# |
| 30 |
# If ${VDR_CONFD_FILE} is set install this file |
| 31 |
# else install ${FILESDIR}/confd if it exists. |
| 32 |
|
| 33 |
# Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
| 34 |
# For the plugin vdr-femon this would be /etc/conf.d/vdr.femon |
| 35 |
|
| 36 |
|
| 37 |
# Installation of an rc-addon file for the plugin |
| 38 |
# |
| 39 |
# If ${VDR_RCADDON_FILE} is set install this file |
| 40 |
# else install ${FILESDIR}/rc-addon.sh if it exists. |
| 41 |
# |
| 42 |
# Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 43 |
# (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
| 44 |
# |
| 45 |
# This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
| 46 |
# It could be used for special startup actions for this plugins, or to create the |
| 47 |
# plugin command line options from a nicer version of a conf.d file. |
| 48 |
|
| 49 |
# HowTo use own local patches; Example |
| 50 |
# |
| 51 |
# Add to your /etc/make.conf: |
| 52 |
# VDR_LOCAL_PATCHES_DIR="/usr/local/patch" |
| 53 |
# |
| 54 |
# Add two DIR's in your local patch dir, ${PN}/${PV}, |
| 55 |
# e.g for vdr-burn-0.1.0 should be: |
| 56 |
# /usr/local/patch/vdr-burn/0.1.0/ |
| 57 |
# |
| 58 |
# all patches which ending on diff or patch in this DIR will automatically applied |
| 59 |
# |
| 60 |
|
| 61 |
inherit base multilib eutils flag-o-matic |
| 62 |
|
| 63 |
IUSE="debug" |
| 64 |
|
| 65 |
# Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 66 |
VDRPLUGIN="${PN/#vdrplugin-/}" |
| 67 |
VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 68 |
VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
| 69 |
|
| 70 |
DESCRIPTION="vdr Plugin: ${VDRPLUGIN} (based on vdr-plugin.eclass)" |
| 71 |
|
| 72 |
# works in most cases |
| 73 |
S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 74 |
|
| 75 |
# depend on headers for DVB-driver |
| 76 |
RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
| 77 |
DEPEND="media-tv/linuxtv-dvb-headers" |
| 78 |
|
| 79 |
|
| 80 |
# this code is from linux-mod.eclass |
| 81 |
update_vdrplugindb() { |
| 82 |
local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 83 |
|
| 84 |
if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
| 85 |
[[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
| 86 |
touch ${VDRPLUGINDB_DIR}/vdrplugindb |
| 87 |
fi |
| 88 |
if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 89 |
einfo "Adding plugin to vdrplugindb." |
| 90 |
echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
| 91 |
fi |
| 92 |
} |
| 93 |
|
| 94 |
remove_vdrplugindb() { |
| 95 |
local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 96 |
|
| 97 |
if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 98 |
einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 99 |
sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 100 |
fi |
| 101 |
} |
| 102 |
|
| 103 |
vdr-plugin_pkg_setup() { |
| 104 |
# -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 105 |
append-flags -fPIC |
| 106 |
use debug && append-flags -g |
| 107 |
|
| 108 |
# Where should the plugins live in the filesystem |
| 109 |
VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 110 |
VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 111 |
|
| 112 |
# transition to /usr/share/... will need new vdr-scripts version stable |
| 113 |
VDR_RC_DIR="/usr/lib/vdr/rcscript" |
| 114 |
|
| 115 |
# Pathes to includes |
| 116 |
VDR_INCLUDE_DIR="/usr/include" |
| 117 |
DVB_INCLUDE_DIR="/usr/include" |
| 118 |
|
| 119 |
|
| 120 |
VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
| 121 |
APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
| 122 |
[[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 123 |
|
| 124 |
einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 125 |
einfo "APIVERSION: ${APIVERSION}" |
| 126 |
} |
| 127 |
|
| 128 |
vdr-plugin_src_unpack() { |
| 129 |
[ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 130 |
|
| 131 |
while [ "$1" ]; do |
| 132 |
|
| 133 |
case "$1" in |
| 134 |
unpack) |
| 135 |
base_src_unpack |
| 136 |
;; |
| 137 |
patchmakefile) |
| 138 |
if ! cd ${S}; then |
| 139 |
ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 140 |
ewarn "Perhaps you find one among these:" |
| 141 |
cd "${WORKDIR}" |
| 142 |
einfo "$(/bin/ls -1 ${WORKDIR})" |
| 143 |
die "Could not change to plugin-source-directory!" |
| 144 |
fi |
| 145 |
|
| 146 |
einfo "Patching Makefile" |
| 147 |
[[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 148 |
cp Makefile Makefile.orig |
| 149 |
|
| 150 |
sed -i Makefile \ |
| 151 |
-e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 152 |
|
| 153 |
ebegin " Setting Pathes" |
| 154 |
sed -i Makefile \ |
| 155 |
-e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 156 |
-e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 157 |
-e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 158 |
-e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 159 |
-e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
| 160 |
-e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 161 |
-e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
| 162 |
-e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
| 163 |
eend $? |
| 164 |
|
| 165 |
ebegin " Converting to APIVERSION" |
| 166 |
sed -i Makefile \ |
| 167 |
-e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 168 |
-e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 169 |
-e '2i\APIVERSION = '"${APIVERSION}" |
| 170 |
eend $? |
| 171 |
|
| 172 |
ebegin " Correcting CXXFLAGS" |
| 173 |
sed -i Makefile \ |
| 174 |
-e 's:^CXXFLAGS:#CXXFLAGS:' |
| 175 |
eend $? |
| 176 |
|
| 177 |
ebegin " Disabling file stripping" |
| 178 |
sed -i Makefile \ |
| 179 |
-e '/@.*strip/d' \ |
| 180 |
-e '/strip \$(LIBDIR)\/\$@/d' \ |
| 181 |
-e '/^STRIP =/d' \ |
| 182 |
-e '/@.*\$(STRIP)/d' |
| 183 |
eend $? |
| 184 |
;; |
| 185 |
add_local_patch) |
| 186 |
cd ${S} |
| 187 |
if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 188 |
echo |
| 189 |
einfo "Applying local patches" |
| 190 |
for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
| 191 |
test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 192 |
done |
| 193 |
fi |
| 194 |
;; |
| 195 |
esac |
| 196 |
|
| 197 |
shift |
| 198 |
done |
| 199 |
} |
| 200 |
|
| 201 |
vdr-plugin_copy_source_tree() { |
| 202 |
cp -r ${S} ${T}/source-tree |
| 203 |
cd ${T}/source-tree |
| 204 |
mv Makefile.orig Makefile |
| 205 |
sed -i Makefile \ |
| 206 |
-e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 207 |
-e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 208 |
-e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 209 |
-e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| 210 |
} |
| 211 |
|
| 212 |
vdr-plugin_install_source_tree() { |
| 213 |
einfo "Installing sources" |
| 214 |
destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| 215 |
insinto ${destdir}-${PV} |
| 216 |
doins -r ${T}/source-tree/* |
| 217 |
|
| 218 |
dosym ${VDRPLUGIN}-${PV} ${destdir} |
| 219 |
} |
| 220 |
|
| 221 |
vdr-plugin_src_compile() { |
| 222 |
[ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 223 |
|
| 224 |
while [ "$1" ]; do |
| 225 |
|
| 226 |
case "$1" in |
| 227 |
prepare) |
| 228 |
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 229 |
;; |
| 230 |
compile) |
| 231 |
cd ${S} |
| 232 |
|
| 233 |
emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 234 |
;; |
| 235 |
esac |
| 236 |
|
| 237 |
shift |
| 238 |
done |
| 239 |
} |
| 240 |
|
| 241 |
vdr-plugin_src_install() { |
| 242 |
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 243 |
cd ${S} |
| 244 |
|
| 245 |
if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 246 |
local mname=${P}-Makefile |
| 247 |
cp Makefile ${mname}.patched |
| 248 |
cp Makefile.orig ${mname}.before |
| 249 |
|
| 250 |
diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
| 251 |
|
| 252 |
insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 253 |
doins ${mname}.diff |
| 254 |
|
| 255 |
insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 256 |
doins ${mname}.before |
| 257 |
|
| 258 |
insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 259 |
doins ${mname}.patched |
| 260 |
|
| 261 |
fi |
| 262 |
|
| 263 |
insinto "${VDR_PLUGIN_DIR}" |
| 264 |
doins libvdr-*.so.* |
| 265 |
local docfile |
| 266 |
for docfile in README* HISTORY CHANGELOG; do |
| 267 |
[[ -f ${docfile} ]] && dodoc ${docfile} |
| 268 |
done |
| 269 |
|
| 270 |
# if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 271 |
[[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 272 |
|
| 273 |
if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 274 |
insinto /etc/conf.d |
| 275 |
newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 276 |
fi |
| 277 |
|
| 278 |
|
| 279 |
# if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
| 280 |
[[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| 281 |
|
| 282 |
if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 283 |
insinto "${VDR_RC_DIR}" |
| 284 |
newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 285 |
fi |
| 286 |
|
| 287 |
|
| 288 |
|
| 289 |
insinto ${VDR_CHECKSUM_DIR} |
| 290 |
if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 291 |
newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 292 |
else |
| 293 |
if which md5sum >/dev/null 2>&1; then |
| 294 |
cd ${S} |
| 295 |
( |
| 296 |
cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
| 297 |
md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 298 |
) > header-md5-${PN} |
| 299 |
doins header-md5-${PN} |
| 300 |
fi |
| 301 |
fi |
| 302 |
} |
| 303 |
|
| 304 |
vdr-plugin_pkg_postinst() { |
| 305 |
update_vdrplugindb |
| 306 |
einfo |
| 307 |
einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 308 |
einfo "To activate execute the following command:" |
| 309 |
einfo |
| 310 |
einfo " emerge --config ${PN}" |
| 311 |
einfo |
| 312 |
if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 313 |
einfo "And have a look at the config-file" |
| 314 |
einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
| 315 |
einfo |
| 316 |
fi |
| 317 |
} |
| 318 |
|
| 319 |
vdr-plugin_pkg_postrm() { |
| 320 |
remove_vdrplugindb |
| 321 |
} |
| 322 |
|
| 323 |
vdr-plugin_pkg_config_final() { |
| 324 |
diff ${conf_orig} ${conf} |
| 325 |
rm ${conf_orig} |
| 326 |
} |
| 327 |
|
| 328 |
vdr-plugin_pkg_config() { |
| 329 |
if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 330 |
INSTALLPLUGIN="${VDRPLUGIN}" |
| 331 |
fi |
| 332 |
# First test if plugin is already inside PLUGINS |
| 333 |
local conf=/etc/conf.d/vdr |
| 334 |
conf_orig=${conf}.before_emerge_config |
| 335 |
cp ${conf} ${conf_orig} |
| 336 |
|
| 337 |
einfo "Reading ${conf}" |
| 338 |
if ! grep -q "^PLUGINS=" ${conf}; then |
| 339 |
local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
| 340 |
if [[ -n "${LINE}" ]]; then |
| 341 |
sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
| 342 |
else |
| 343 |
echo 'PLUGINS=""' >> ${conf} |
| 344 |
fi |
| 345 |
unset LINE |
| 346 |
fi |
| 347 |
|
| 348 |
unset PLUGINS |
| 349 |
PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
| 350 |
|
| 351 |
active=0 |
| 352 |
for p in ${PLUGINS}; do |
| 353 |
if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
| 354 |
active=1 |
| 355 |
break; |
| 356 |
fi |
| 357 |
done |
| 358 |
|
| 359 |
if [[ "${active}" == "1" ]]; then |
| 360 |
einfo "${INSTALLPLUGIN} already activated" |
| 361 |
echo |
| 362 |
read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 363 |
if [[ "${answer}" != "yes" ]]; then |
| 364 |
einfo "aborted" |
| 365 |
return |
| 366 |
fi |
| 367 |
einfo "Removing ${INSTALLPLUGIN} from active plugins." |
| 368 |
local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
| 369 |
sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
| 370 |
-e ${LINE}'s/ \( \)*/ /g' \ |
| 371 |
-e ${LINE}'s/ "/"/g' \ |
| 372 |
-e ${LINE}'s/" /"/g' |
| 373 |
|
| 374 |
vdr-plugin_pkg_config_final |
| 375 |
return |
| 376 |
fi |
| 377 |
|
| 378 |
|
| 379 |
einfo "Adding ${INSTALLPLUGIN} to active plugins." |
| 380 |
local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
| 381 |
sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
| 382 |
-e ${LINE}'s/ \( \)*/ /g' \ |
| 383 |
-e ${LINE}'s/ "/"/g' \ |
| 384 |
-e ${LINE}'s/" /"/g' |
| 385 |
|
| 386 |
vdr-plugin_pkg_config_final |
| 387 |
} |
| 388 |
|
| 389 |
fix_vdr_libsi_include() |
| 390 |
{ |
| 391 |
einfo "Fixing include of libsi-headers" |
| 392 |
local f |
| 393 |
for f; do |
| 394 |
sed -i "${f}" \ |
| 395 |
-e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 396 |
-e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| 397 |
done |
| 398 |
} |
| 399 |
|
| 400 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |