| 1 |
zzam |
1.1 |
# Copyright 1999-2005 Gentoo Foundation |
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
zzam |
1.49 |
# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.48 2007/08/14 18:42:22 zzam Exp $ |
| 4 |
zzam |
1.1 |
# |
| 5 |
|
|
# Author: |
| 6 |
|
|
# Matthias Schwarzott <zzam@gentoo.org> |
| 7 |
hd_brummy |
1.27 |
# Joerg Bornkessel <hd_brummy@gentoo.org> |
| 8 |
zzam |
1.1 |
|
| 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 |
swegener |
1.4 |
# |
| 27 |
zzam |
1.1 |
|
| 28 |
zzam |
1.17 |
# 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 |
zzam |
1.2 |
|
| 33 |
zzam |
1.17 |
# Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
| 34 |
|
|
# For the plugin vdr-femon this would be /etc/conf.d/vdr.femon |
| 35 |
zzam |
1.2 |
|
| 36 |
|
|
|
| 37 |
zzam |
1.17 |
# 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 |
zzam |
1.22 |
# Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 43 |
zzam |
1.35 |
# (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
| 44 |
zzam |
1.2 |
# |
| 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 |
zzam |
1.1 |
|
| 49 |
hd_brummy |
1.27 |
# 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 |
zzam |
1.22 |
inherit base multilib eutils flag-o-matic |
| 62 |
zzam |
1.1 |
|
| 63 |
zzam |
1.39 |
IUSE="" |
| 64 |
zzam |
1.15 |
|
| 65 |
zzam |
1.1 |
# Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 66 |
|
|
VDRPLUGIN="${PN/#vdrplugin-/}" |
| 67 |
zzam |
1.2 |
VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 68 |
zzam |
1.1 |
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 |
zzam |
1.24 |
RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
| 77 |
zzam |
1.11 |
DEPEND="media-tv/linuxtv-dvb-headers" |
| 78 |
zzam |
1.1 |
|
| 79 |
zzam |
1.2 |
|
| 80 |
|
|
# this code is from linux-mod.eclass |
| 81 |
|
|
update_vdrplugindb() { |
| 82 |
zzam |
1.3 |
local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 83 |
zzam |
1.2 |
|
| 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 |
zzam |
1.41 |
einfo "Adding plugin to vdrplugindb." |
| 90 |
zzam |
1.2 |
echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
| 91 |
|
|
fi |
| 92 |
|
|
} |
| 93 |
|
|
|
| 94 |
|
|
remove_vdrplugindb() { |
| 95 |
zzam |
1.3 |
local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 96 |
zzam |
1.2 |
|
| 97 |
|
|
if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 98 |
zzam |
1.41 |
einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 99 |
zzam |
1.2 |
sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 100 |
|
|
fi |
| 101 |
|
|
} |
| 102 |
|
|
|
| 103 |
zzam |
1.37 |
# New method of storing plugindb |
| 104 |
|
|
# Called from src_install |
| 105 |
|
|
# file maintained by normal portage-methods |
| 106 |
|
|
create_plugindb_file() { |
| 107 |
|
|
local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 108 |
|
|
local DB_FILE=${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
| 109 |
|
|
insinto ${NEW_VDRPLUGINDB_DIR} |
| 110 |
|
|
cat <<-EOT > ${D}/${DB_FILE} |
| 111 |
|
|
VDRPLUGIN_DB=1 |
| 112 |
|
|
CREATOR=ECLASS |
| 113 |
|
|
EBUILD=${CATEGORY}/${PN} |
| 114 |
|
|
EBUILD_V=${PVR} |
| 115 |
|
|
EOT |
| 116 |
|
|
} |
| 117 |
|
|
|
| 118 |
|
|
# Delete files created outside of vdr-plugin.eclass |
| 119 |
|
|
# vdrplugin-rebuild.ebuild converted plugindb and files are |
| 120 |
|
|
# not deleted by portage itself - should only be needed as |
| 121 |
|
|
# long as not every system has switched over to |
| 122 |
|
|
# vdrplugin-rebuild-0.2 |
| 123 |
|
|
delete_orphan_plugindb_file() { |
| 124 |
hd_brummy |
1.40 |
#elog Testing for orphaned plugindb file |
| 125 |
zzam |
1.37 |
local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 126 |
|
|
local DB_FILE=${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
| 127 |
|
|
|
| 128 |
|
|
# file exists |
| 129 |
|
|
[[ -f ${DB_FILE} ]] || return |
| 130 |
|
|
|
| 131 |
|
|
# will portage handle the file itself |
| 132 |
|
|
if grep -q CREATOR=ECLASS ${DB_FILE}; then |
| 133 |
hd_brummy |
1.40 |
#elog file owned by eclass - don't touch it |
| 134 |
zzam |
1.37 |
return |
| 135 |
|
|
fi |
| 136 |
|
|
|
| 137 |
hd_brummy |
1.40 |
elog "Removing orphaned plugindb-file." |
| 138 |
zzam |
1.41 |
elog "\t#rm ${DB_FILE}" |
| 139 |
zzam |
1.37 |
rm ${DB_FILE} |
| 140 |
|
|
} |
| 141 |
|
|
|
| 142 |
zzam |
1.45 |
|
| 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 |
|
|
|
| 163 |
zzam |
1.1 |
vdr-plugin_pkg_setup() { |
| 164 |
|
|
# -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 165 |
|
|
append-flags -fPIC |
| 166 |
|
|
|
| 167 |
zzam |
1.22 |
# Where should the plugins live in the filesystem |
| 168 |
|
|
VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 169 |
|
|
VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 170 |
|
|
|
| 171 |
zzam |
1.35 |
# was /usr/lib/... some time ago |
| 172 |
|
|
# since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
| 173 |
|
|
VDR_RC_DIR="/usr/share/vdr/rcscript" |
| 174 |
zzam |
1.22 |
|
| 175 |
|
|
# Pathes to includes |
| 176 |
zzam |
1.29 |
VDR_INCLUDE_DIR="/usr/include/vdr" |
| 177 |
zzam |
1.22 |
DVB_INCLUDE_DIR="/usr/include" |
| 178 |
|
|
|
| 179 |
|
|
|
| 180 |
zzam |
1.48 |
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 |
| 187 |
|
|
|
| 188 |
zzam |
1.29 |
VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 189 |
|
|
APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 190 |
zzam |
1.18 |
[[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 191 |
|
|
|
| 192 |
zzam |
1.41 |
einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 193 |
|
|
einfo "APIVERSION: ${APIVERSION}" |
| 194 |
zzam |
1.1 |
} |
| 195 |
|
|
|
| 196 |
|
|
vdr-plugin_src_unpack() { |
| 197 |
zzam |
1.30 |
if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 198 |
|
|
eerror "Wrong use of vdr-plugin.eclass." |
| 199 |
|
|
eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 200 |
|
|
echo |
| 201 |
|
|
eerror "Please report this at bugs.gentoo.org." |
| 202 |
|
|
die "vdr-plugin_pkg_setup not called!" |
| 203 |
|
|
fi |
| 204 |
zzam |
1.48 |
[ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
| 205 |
zzam |
1.1 |
|
| 206 |
|
|
while [ "$1" ]; do |
| 207 |
|
|
|
| 208 |
|
|
case "$1" in |
| 209 |
zzam |
1.34 |
all_but_unpack) |
| 210 |
zzam |
1.48 |
vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
| 211 |
zzam |
1.34 |
;; |
| 212 |
zzam |
1.1 |
unpack) |
| 213 |
zzam |
1.12 |
base_src_unpack |
| 214 |
zzam |
1.1 |
;; |
| 215 |
|
|
patchmakefile) |
| 216 |
zzam |
1.20 |
if ! cd ${S}; then |
| 217 |
|
|
ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 218 |
|
|
ewarn "Perhaps you find one among these:" |
| 219 |
|
|
cd "${WORKDIR}" |
| 220 |
zzam |
1.41 |
ewarn "$(/bin/ls -1 ${WORKDIR})" |
| 221 |
zzam |
1.20 |
die "Could not change to plugin-source-directory!" |
| 222 |
|
|
fi |
| 223 |
zzam |
1.1 |
|
| 224 |
zzam |
1.41 |
einfo "Patching Makefile" |
| 225 |
zzam |
1.20 |
[[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 226 |
zzam |
1.46 |
cp Makefile "${WORKDIR}"/Makefile.before |
| 227 |
zzam |
1.25 |
|
| 228 |
|
|
sed -i Makefile \ |
| 229 |
|
|
-e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 230 |
|
|
|
| 231 |
|
|
ebegin " Setting Pathes" |
| 232 |
|
|
sed -i Makefile \ |
| 233 |
zzam |
1.1 |
-e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 234 |
|
|
-e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 235 |
|
|
-e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 236 |
|
|
-e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 237 |
zzam |
1.29 |
-e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 238 |
|
|
-e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 239 |
|
|
-e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 240 |
zzam |
1.25 |
eend $? |
| 241 |
|
|
|
| 242 |
|
|
ebegin " Converting to APIVERSION" |
| 243 |
|
|
sed -i Makefile \ |
| 244 |
zzam |
1.18 |
-e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 245 |
|
|
-e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 246 |
zzam |
1.25 |
-e '2i\APIVERSION = '"${APIVERSION}" |
| 247 |
|
|
eend $? |
| 248 |
|
|
|
| 249 |
zzam |
1.38 |
ebegin " Correcting Compile-Flags" |
| 250 |
zzam |
1.25 |
sed -i Makefile \ |
| 251 |
zzam |
1.38 |
-e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 252 |
|
|
-e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
| 253 |
zzam |
1.1 |
eend $? |
| 254 |
zzam |
1.26 |
|
| 255 |
|
|
ebegin " Disabling file stripping" |
| 256 |
|
|
sed -i Makefile \ |
| 257 |
|
|
-e '/@.*strip/d' \ |
| 258 |
|
|
-e '/strip \$(LIBDIR)\/\$@/d' \ |
| 259 |
|
|
-e '/^STRIP =/d' \ |
| 260 |
|
|
-e '/@.*\$(STRIP)/d' |
| 261 |
|
|
eend $? |
| 262 |
zzam |
1.33 |
|
| 263 |
|
|
# Use a file instead of an variable as single-stepping via ebuild |
| 264 |
|
|
# destroys environment. |
| 265 |
|
|
touch ${WORKDIR}/.vdr-plugin_makefile_patched |
| 266 |
zzam |
1.1 |
;; |
| 267 |
hd_brummy |
1.27 |
add_local_patch) |
| 268 |
hd_brummy |
1.28 |
cd ${S} |
| 269 |
hd_brummy |
1.27 |
if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 270 |
|
|
echo |
| 271 |
zzam |
1.41 |
einfo "Applying local patches" |
| 272 |
hd_brummy |
1.27 |
for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
| 273 |
|
|
test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 274 |
|
|
done |
| 275 |
|
|
fi |
| 276 |
|
|
;; |
| 277 |
zzam |
1.48 |
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 |
zzam |
1.49 |
elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
| 284 |
zzam |
1.48 |
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 |
| 311 |
zzam |
1.1 |
esac |
| 312 |
|
|
|
| 313 |
|
|
shift |
| 314 |
|
|
done |
| 315 |
|
|
} |
| 316 |
|
|
|
| 317 |
zzam |
1.6 |
vdr-plugin_copy_source_tree() { |
| 318 |
zzam |
1.32 |
pushd . >/dev/null |
| 319 |
zzam |
1.6 |
cp -r ${S} ${T}/source-tree |
| 320 |
|
|
cd ${T}/source-tree |
| 321 |
zzam |
1.46 |
cp "${WORKDIR}"/Makefile.before Makefile |
| 322 |
zzam |
1.6 |
sed -i Makefile \ |
| 323 |
|
|
-e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 324 |
|
|
-e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 325 |
|
|
-e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 326 |
|
|
-e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| 327 |
zzam |
1.32 |
popd >/dev/null |
| 328 |
zzam |
1.6 |
} |
| 329 |
|
|
|
| 330 |
|
|
vdr-plugin_install_source_tree() { |
| 331 |
zzam |
1.41 |
einfo "Installing sources" |
| 332 |
zzam |
1.6 |
destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| 333 |
|
|
insinto ${destdir}-${PV} |
| 334 |
|
|
doins -r ${T}/source-tree/* |
| 335 |
|
|
|
| 336 |
|
|
dosym ${VDRPLUGIN}-${PV} ${destdir} |
| 337 |
|
|
} |
| 338 |
|
|
|
| 339 |
zzam |
1.1 |
vdr-plugin_src_compile() { |
| 340 |
zzam |
1.7 |
[ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 341 |
zzam |
1.6 |
|
| 342 |
zzam |
1.7 |
while [ "$1" ]; do |
| 343 |
|
|
|
| 344 |
|
|
case "$1" in |
| 345 |
|
|
prepare) |
| 346 |
|
|
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 347 |
|
|
;; |
| 348 |
|
|
compile) |
| 349 |
zzam |
1.33 |
if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
| 350 |
zzam |
1.32 |
eerror "Wrong use of vdr-plugin.eclass." |
| 351 |
|
|
eerror "An ebuild for a vdr-plugin will not work without" |
| 352 |
|
|
eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
| 353 |
|
|
echo |
| 354 |
|
|
eerror "Please report this at bugs.gentoo.org." |
| 355 |
|
|
die "vdr-plugin_src_unpack not called!" |
| 356 |
|
|
fi |
| 357 |
zzam |
1.7 |
cd ${S} |
| 358 |
|
|
|
| 359 |
zzam |
1.48 |
emake ${BUILD_PARAMS} \ |
| 360 |
|
|
${VDRPLUGIN_MAKE_TARGET:-all} \ |
| 361 |
|
|
LOCALEDIR="${TMP_LOCALE_DIR}" \ |
| 362 |
|
|
|| die "emake failed" |
| 363 |
zzam |
1.7 |
;; |
| 364 |
|
|
esac |
| 365 |
zzam |
1.1 |
|
| 366 |
zzam |
1.7 |
shift |
| 367 |
|
|
done |
| 368 |
zzam |
1.1 |
} |
| 369 |
|
|
|
| 370 |
|
|
vdr-plugin_src_install() { |
| 371 |
zzam |
1.6 |
[[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 372 |
zzam |
1.46 |
cd "${WORKDIR}" |
| 373 |
zzam |
1.1 |
|
| 374 |
zzam |
1.22 |
if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 375 |
|
|
local mname=${P}-Makefile |
| 376 |
zzam |
1.47 |
cp "${S}"/Makefile ${mname}.patched |
| 377 |
zzam |
1.46 |
cp Makefile.before ${mname}.before |
| 378 |
zzam |
1.22 |
|
| 379 |
|
|
diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
| 380 |
|
|
|
| 381 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 382 |
|
|
doins ${mname}.diff |
| 383 |
|
|
|
| 384 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 385 |
|
|
doins ${mname}.before |
| 386 |
|
|
|
| 387 |
|
|
insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 388 |
|
|
doins ${mname}.patched |
| 389 |
|
|
|
| 390 |
|
|
fi |
| 391 |
|
|
|
| 392 |
zzam |
1.46 |
cd "${S}" |
| 393 |
zzam |
1.1 |
insinto "${VDR_PLUGIN_DIR}" |
| 394 |
|
|
doins libvdr-*.so.* |
| 395 |
zzam |
1.48 |
|
| 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}" |
| 404 |
zzam |
1.23 |
local docfile |
| 405 |
|
|
for docfile in README* HISTORY CHANGELOG; do |
| 406 |
|
|
[[ -f ${docfile} ]] && dodoc ${docfile} |
| 407 |
|
|
done |
| 408 |
zzam |
1.2 |
|
| 409 |
zzam |
1.17 |
# if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 410 |
|
|
[[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 411 |
|
|
|
| 412 |
|
|
if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 413 |
zzam |
1.44 |
newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 414 |
zzam |
1.17 |
fi |
| 415 |
|
|
|
| 416 |
|
|
|
| 417 |
|
|
# if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
| 418 |
|
|
[[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| 419 |
|
|
|
| 420 |
|
|
if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 421 |
|
|
insinto "${VDR_RC_DIR}" |
| 422 |
|
|
newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 423 |
|
|
fi |
| 424 |
|
|
|
| 425 |
zzam |
1.45 |
create_header_checksum_file |
| 426 |
zzam |
1.37 |
create_plugindb_file |
| 427 |
zzam |
1.1 |
} |
| 428 |
|
|
|
| 429 |
|
|
vdr-plugin_pkg_postinst() { |
| 430 |
zzam |
1.37 |
if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 431 |
|
|
update_vdrplugindb |
| 432 |
|
|
fi |
| 433 |
hd_brummy |
1.40 |
elog |
| 434 |
|
|
elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 435 |
|
|
elog "To activate execute the following command:" |
| 436 |
|
|
elog |
| 437 |
|
|
elog " emerge --config ${PN}" |
| 438 |
|
|
elog |
| 439 |
zzam |
1.17 |
if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 440 |
hd_brummy |
1.40 |
elog "And have a look at the config-file" |
| 441 |
|
|
elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
| 442 |
|
|
elog |
| 443 |
zzam |
1.13 |
fi |
| 444 |
zzam |
1.1 |
} |
| 445 |
|
|
|
| 446 |
zzam |
1.2 |
vdr-plugin_pkg_postrm() { |
| 447 |
zzam |
1.37 |
if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 448 |
|
|
remove_vdrplugindb |
| 449 |
|
|
fi |
| 450 |
|
|
delete_orphan_plugindb_file |
| 451 |
zzam |
1.2 |
} |
| 452 |
|
|
|
| 453 |
zzam |
1.8 |
vdr-plugin_pkg_config_final() { |
| 454 |
|
|
diff ${conf_orig} ${conf} |
| 455 |
|
|
rm ${conf_orig} |
| 456 |
|
|
} |
| 457 |
|
|
|
| 458 |
zzam |
1.36 |
vdr-plugin_pkg_config_old() { |
| 459 |
hd_brummy |
1.40 |
elog "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
| 460 |
zzam |
1.8 |
if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 461 |
|
|
INSTALLPLUGIN="${VDRPLUGIN}" |
| 462 |
|
|
fi |
| 463 |
|
|
# First test if plugin is already inside PLUGINS |
| 464 |
|
|
local conf=/etc/conf.d/vdr |
| 465 |
|
|
conf_orig=${conf}.before_emerge_config |
| 466 |
|
|
cp ${conf} ${conf_orig} |
| 467 |
|
|
|
| 468 |
hd_brummy |
1.40 |
elog "Reading ${conf}" |
| 469 |
zzam |
1.8 |
if ! grep -q "^PLUGINS=" ${conf}; then |
| 470 |
|
|
local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
| 471 |
|
|
if [[ -n "${LINE}" ]]; then |
| 472 |
|
|
sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
| 473 |
|
|
else |
| 474 |
|
|
echo 'PLUGINS=""' >> ${conf} |
| 475 |
|
|
fi |
| 476 |
|
|
unset LINE |
| 477 |
|
|
fi |
| 478 |
|
|
|
| 479 |
|
|
unset PLUGINS |
| 480 |
|
|
PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
| 481 |
|
|
|
| 482 |
|
|
active=0 |
| 483 |
|
|
for p in ${PLUGINS}; do |
| 484 |
|
|
if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
| 485 |
|
|
active=1 |
| 486 |
|
|
break; |
| 487 |
|
|
fi |
| 488 |
|
|
done |
| 489 |
|
|
|
| 490 |
|
|
if [[ "${active}" == "1" ]]; then |
| 491 |
hd_brummy |
1.40 |
elog "${INSTALLPLUGIN} already activated" |
| 492 |
zzam |
1.8 |
echo |
| 493 |
|
|
read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 494 |
|
|
if [[ "${answer}" != "yes" ]]; then |
| 495 |
hd_brummy |
1.40 |
elog "aborted" |
| 496 |
zzam |
1.8 |
return |
| 497 |
|
|
fi |
| 498 |
hd_brummy |
1.40 |
elog "Removing ${INSTALLPLUGIN} from active plugins." |
| 499 |
zzam |
1.8 |
local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
| 500 |
|
|
sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
| 501 |
|
|
-e ${LINE}'s/ \( \)*/ /g' \ |
| 502 |
|
|
-e ${LINE}'s/ "/"/g' \ |
| 503 |
|
|
-e ${LINE}'s/" /"/g' |
| 504 |
|
|
|
| 505 |
|
|
vdr-plugin_pkg_config_final |
| 506 |
|
|
return |
| 507 |
|
|
fi |
| 508 |
|
|
|
| 509 |
|
|
|
| 510 |
hd_brummy |
1.40 |
elog "Adding ${INSTALLPLUGIN} to active plugins." |
| 511 |
zzam |
1.8 |
local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
| 512 |
|
|
sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
| 513 |
|
|
-e ${LINE}'s/ \( \)*/ /g' \ |
| 514 |
|
|
-e ${LINE}'s/ "/"/g' \ |
| 515 |
|
|
-e ${LINE}'s/" /"/g' |
| 516 |
|
|
|
| 517 |
|
|
vdr-plugin_pkg_config_final |
| 518 |
|
|
} |
| 519 |
|
|
|
| 520 |
zzam |
1.36 |
vdr-plugin_pkg_config_new() { |
| 521 |
hd_brummy |
1.40 |
elog "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
| 522 |
zzam |
1.36 |
if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 523 |
|
|
INSTALLPLUGIN="${VDRPLUGIN}" |
| 524 |
|
|
fi |
| 525 |
|
|
|
| 526 |
|
|
active=0 |
| 527 |
|
|
# First test if plugin is already inside PLUGINS |
| 528 |
|
|
local conf=/etc/conf.d/vdr.plugins |
| 529 |
|
|
exec 3<${conf} |
| 530 |
|
|
while read -u 3 line; do |
| 531 |
|
|
[[ ${line} == "" ]] && continue |
| 532 |
|
|
[[ ${line:0:1} == "#" ]] && continue |
| 533 |
|
|
set -- ${line} |
| 534 |
|
|
[[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
| 535 |
|
|
done |
| 536 |
|
|
exec 3<&- |
| 537 |
|
|
|
| 538 |
|
|
if [[ $active == 0 ]]; then |
| 539 |
hd_brummy |
1.40 |
elog "Adding ${INSTALLPLUGIN} to active plugins." |
| 540 |
zzam |
1.36 |
|
| 541 |
|
|
# The pure edit process. |
| 542 |
|
|
echo "${INSTALLPLUGIN}" >> "${conf}" |
| 543 |
|
|
else |
| 544 |
hd_brummy |
1.40 |
elog "${INSTALLPLUGIN} already activated" |
| 545 |
zzam |
1.36 |
echo |
| 546 |
|
|
read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 547 |
|
|
if [[ "${answer}" != "yes" ]]; then |
| 548 |
hd_brummy |
1.40 |
elog "aborted" |
| 549 |
zzam |
1.36 |
return |
| 550 |
|
|
fi |
| 551 |
hd_brummy |
1.40 |
elog "Removing ${INSTALLPLUGIN} from active plugins." |
| 552 |
zzam |
1.36 |
|
| 553 |
|
|
# The pure edit process |
| 554 |
|
|
sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
| 555 |
|
|
fi |
| 556 |
|
|
} |
| 557 |
|
|
|
| 558 |
|
|
vdr-plugin_pkg_config() { |
| 559 |
|
|
if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
| 560 |
|
|
vdr-plugin_pkg_config_new |
| 561 |
|
|
else |
| 562 |
|
|
vdr-plugin_pkg_config_old |
| 563 |
|
|
fi |
| 564 |
|
|
} |
| 565 |
|
|
|
| 566 |
zzam |
1.21 |
fix_vdr_libsi_include() |
| 567 |
|
|
{ |
| 568 |
zzam |
1.41 |
einfo "Fixing include of libsi-headers" |
| 569 |
zzam |
1.21 |
local f |
| 570 |
|
|
for f; do |
| 571 |
|
|
sed -i "${f}" \ |
| 572 |
|
|
-e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 573 |
|
|
-e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| 574 |
|
|
done |
| 575 |
|
|
} |
| 576 |
|
|
|
| 577 |
zzam |
1.8 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |