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