| 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.4 2005/08/22 16:20:30 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.33 2006/09/19 19:31:33 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 | # |
| … | |
… | |
| 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() { |
|
|
129 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
130 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
131 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
132 | echo |
|
|
133 | eerror "Please report this at bugs.gentoo.org." |
|
|
134 | die "vdr-plugin_pkg_setup not called!" |
|
|
135 | fi |
| 107 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
136 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 108 | |
137 | |
| 109 | while [ "$1" ]; do |
138 | while [ "$1" ]; do |
| 110 | |
139 | |
| 111 | case "$1" in |
140 | case "$1" in |
| 112 | unpack) |
141 | unpack) |
| 113 | unpack ${A} |
142 | base_src_unpack |
| 114 | ;; |
143 | ;; |
| 115 | patchmakefile) |
144 | patchmakefile) |
| 116 | cd ${S} |
145 | if ! cd ${S}; then |
|
|
146 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
147 | ewarn "Perhaps you find one among these:" |
|
|
148 | cd "${WORKDIR}" |
|
|
149 | einfo "$(/bin/ls -1 ${WORKDIR})" |
|
|
150 | die "Could not change to plugin-source-directory!" |
|
|
151 | fi |
| 117 | |
152 | |
| 118 | ebegin "Patching Makefile" |
153 | einfo "Patching Makefile" |
|
|
154 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
155 | cp Makefile Makefile.orig |
|
|
156 | |
|
|
157 | sed -i Makefile \ |
|
|
158 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
159 | |
|
|
160 | ebegin " Setting Pathes" |
| 119 | sed -i Makefile \ |
161 | sed -i Makefile \ |
| 120 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
162 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 121 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
163 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 122 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
164 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 123 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
165 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 124 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
166 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 125 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
167 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 126 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
168 | -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 $? |
169 | eend $? |
|
|
170 | |
|
|
171 | ebegin " Converting to APIVERSION" |
|
|
172 | sed -i Makefile \ |
|
|
173 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
174 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
175 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
176 | eend $? |
|
|
177 | |
|
|
178 | ebegin " Correcting CXXFLAGS" |
|
|
179 | sed -i Makefile \ |
|
|
180 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
181 | eend $? |
|
|
182 | |
|
|
183 | ebegin " Disabling file stripping" |
|
|
184 | sed -i Makefile \ |
|
|
185 | -e '/@.*strip/d' \ |
|
|
186 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
187 | -e '/^STRIP =/d' \ |
|
|
188 | -e '/@.*\$(STRIP)/d' |
|
|
189 | eend $? |
|
|
190 | |
|
|
191 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
192 | # destroys environment. |
|
|
193 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
194 | ;; |
|
|
195 | add_local_patch) |
|
|
196 | cd ${S} |
|
|
197 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
198 | echo |
|
|
199 | einfo "Applying local patches" |
|
|
200 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
201 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
202 | done |
|
|
203 | fi |
| 130 | ;; |
204 | ;; |
| 131 | esac |
205 | esac |
| 132 | |
206 | |
| 133 | shift |
207 | shift |
| 134 | done |
208 | done |
| 135 | } |
209 | } |
| 136 | |
210 | |
|
|
211 | vdr-plugin_copy_source_tree() { |
|
|
212 | pushd . >/dev/null |
|
|
213 | cp -r ${S} ${T}/source-tree |
|
|
214 | cd ${T}/source-tree |
|
|
215 | mv Makefile.orig Makefile |
|
|
216 | sed -i Makefile \ |
|
|
217 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
218 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
219 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
220 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
221 | popd >/dev/null |
|
|
222 | } |
|
|
223 | |
|
|
224 | vdr-plugin_install_source_tree() { |
|
|
225 | einfo "Installing sources" |
|
|
226 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
|
|
227 | insinto ${destdir}-${PV} |
|
|
228 | doins -r ${T}/source-tree/* |
|
|
229 | |
|
|
230 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
|
|
231 | } |
|
|
232 | |
| 137 | vdr-plugin_src_compile() { |
233 | vdr-plugin_src_compile() { |
|
|
234 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
235 | |
|
|
236 | while [ "$1" ]; do |
|
|
237 | |
|
|
238 | case "$1" in |
|
|
239 | prepare) |
|
|
240 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
241 | ;; |
|
|
242 | compile) |
|
|
243 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
244 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
245 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
246 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
247 | echo |
|
|
248 | eerror "Please report this at bugs.gentoo.org." |
|
|
249 | die "vdr-plugin_src_unpack not called!" |
|
|
250 | fi |
|
|
251 | cd ${S} |
|
|
252 | |
|
|
253 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
|
|
254 | ;; |
|
|
255 | esac |
|
|
256 | |
|
|
257 | shift |
|
|
258 | done |
|
|
259 | } |
|
|
260 | |
|
|
261 | vdr-plugin_src_install() { |
|
|
262 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 138 | cd ${S} |
263 | cd ${S} |
| 139 | |
264 | |
| 140 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
265 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 141 | } |
266 | local mname=${P}-Makefile |
|
|
267 | cp Makefile ${mname}.patched |
|
|
268 | cp Makefile.orig ${mname}.before |
| 142 | |
269 | |
| 143 | vdr-plugin_src_install() { |
270 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
| 144 | cd ${S} |
271 | |
|
|
272 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
273 | doins ${mname}.diff |
|
|
274 | |
|
|
275 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
276 | doins ${mname}.before |
|
|
277 | |
|
|
278 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
279 | doins ${mname}.patched |
|
|
280 | |
|
|
281 | fi |
| 145 | |
282 | |
| 146 | insinto "${VDR_PLUGIN_DIR}" |
283 | insinto "${VDR_PLUGIN_DIR}" |
| 147 | doins libvdr-*.so.* |
284 | doins libvdr-*.so.* |
|
|
285 | local docfile |
| 148 | dodoc README* HISTORY CHANGELOG |
286 | for docfile in README* HISTORY CHANGELOG; do |
|
|
287 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
288 | done |
| 149 | |
289 | |
| 150 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
290 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 151 | if [[ -f "${f}" ]]; then |
291 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
292 | |
|
|
293 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 152 | insinto /etc/conf.d |
294 | insinto /etc/conf.d |
| 153 | newins "${f}" vdr.${VDRPLUGIN} |
295 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 154 | break |
296 | fi |
|
|
297 | |
|
|
298 | |
|
|
299 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
300 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
301 | |
|
|
302 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
303 | insinto "${VDR_RC_DIR}" |
|
|
304 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
305 | fi |
|
|
306 | |
|
|
307 | |
|
|
308 | |
|
|
309 | insinto ${VDR_CHECKSUM_DIR} |
|
|
310 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
311 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
312 | else |
|
|
313 | if which md5sum >/dev/null 2>&1; then |
|
|
314 | cd ${S} |
|
|
315 | ( |
|
|
316 | cd ${ROOT}${VDR_INCLUDE_DIR} |
|
|
317 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
318 | ) > header-md5-${PN} |
|
|
319 | doins header-md5-${PN} |
| 155 | fi |
320 | 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 |
321 | fi |
| 164 | done |
|
|
| 165 | } |
322 | } |
| 166 | |
323 | |
| 167 | vdr-plugin_pkg_postinst() { |
324 | vdr-plugin_pkg_postinst() { |
| 168 | update_vdrplugindb |
325 | update_vdrplugindb |
| 169 | einfo |
326 | einfo |
| 170 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed," |
327 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 171 | einfo "to activate it you have to add it to /etc/conf.d/vdr." |
328 | einfo "To activate execute the following command:" |
| 172 | einfo |
329 | einfo |
|
|
330 | einfo " emerge --config ${PN}" |
|
|
331 | einfo |
|
|
332 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
333 | einfo "And have a look at the config-file" |
|
|
334 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
335 | einfo |
|
|
336 | fi |
| 173 | } |
337 | } |
| 174 | |
338 | |
| 175 | vdr-plugin_pkg_postrm() { |
339 | vdr-plugin_pkg_postrm() { |
| 176 | remove_vdrplugindb |
340 | remove_vdrplugindb |
| 177 | } |
341 | } |
| 178 | |
342 | |
|
|
343 | vdr-plugin_pkg_config_final() { |
|
|
344 | diff ${conf_orig} ${conf} |
|
|
345 | rm ${conf_orig} |
|
|
346 | } |
|
|
347 | |
|
|
348 | vdr-plugin_pkg_config() { |
|
|
349 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
350 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
351 | fi |
|
|
352 | # First test if plugin is already inside PLUGINS |
|
|
353 | local conf=/etc/conf.d/vdr |
|
|
354 | conf_orig=${conf}.before_emerge_config |
|
|
355 | cp ${conf} ${conf_orig} |
|
|
356 | |
|
|
357 | einfo "Reading ${conf}" |
|
|
358 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
359 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
360 | if [[ -n "${LINE}" ]]; then |
|
|
361 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
362 | else |
|
|
363 | echo 'PLUGINS=""' >> ${conf} |
|
|
364 | fi |
|
|
365 | unset LINE |
|
|
366 | fi |
|
|
367 | |
|
|
368 | unset PLUGINS |
|
|
369 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
370 | |
|
|
371 | active=0 |
|
|
372 | for p in ${PLUGINS}; do |
|
|
373 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
374 | active=1 |
|
|
375 | break; |
|
|
376 | fi |
|
|
377 | done |
|
|
378 | |
|
|
379 | if [[ "${active}" == "1" ]]; then |
|
|
380 | einfo "${INSTALLPLUGIN} already activated" |
|
|
381 | echo |
|
|
382 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
383 | if [[ "${answer}" != "yes" ]]; then |
|
|
384 | einfo "aborted" |
|
|
385 | return |
|
|
386 | fi |
|
|
387 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
388 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
389 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
390 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
391 | -e ${LINE}'s/ "/"/g' \ |
|
|
392 | -e ${LINE}'s/" /"/g' |
|
|
393 | |
|
|
394 | vdr-plugin_pkg_config_final |
|
|
395 | return |
|
|
396 | fi |
|
|
397 | |
|
|
398 | |
|
|
399 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
400 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
401 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
402 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
403 | -e ${LINE}'s/ "/"/g' \ |
|
|
404 | -e ${LINE}'s/" /"/g' |
|
|
405 | |
|
|
406 | vdr-plugin_pkg_config_final |
|
|
407 | } |
|
|
408 | |
|
|
409 | fix_vdr_libsi_include() |
|
|
410 | { |
|
|
411 | einfo "Fixing include of libsi-headers" |
|
|
412 | local f |
|
|
413 | for f; do |
|
|
414 | sed -i "${f}" \ |
|
|
415 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
416 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
417 | done |
|
|
418 | } |
|
|
419 | |
| 179 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm |
420 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |