| 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.7 2005/10/28 08:58:19 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.37 2006/10/19 10:26:10 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/plugin-${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/plugin-femon.sh) |
43 | # (in example vdr-femon this would be /usr/share/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/ |
| … | |
… | |
| 93 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 94 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 95 | fi |
100 | fi |
| 96 | } |
101 | } |
| 97 | |
102 | |
|
|
103 | # 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 | #einfo Testing for orphaned plugindb file |
|
|
125 | 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 | #einfo file owned by eclass - don't touch it |
|
|
134 | return |
|
|
135 | fi |
|
|
136 | |
|
|
137 | einfo "Removing orphaned plugindb-file." |
|
|
138 | einfo "#rm ${DB_FILE}" |
|
|
139 | rm ${DB_FILE} |
|
|
140 | } |
|
|
141 | |
| 98 | vdr-plugin_pkg_setup() { |
142 | vdr-plugin_pkg_setup() { |
| 99 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
143 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 100 | append-flags -fPIC |
144 | append-flags -fPIC |
|
|
145 | use debug && append-flags -g |
| 101 | |
146 | |
| 102 | VDRVERSION=$(awk -F'"' '/VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
147 | # Where should the plugins live in the filesystem |
|
|
148 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
149 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
150 | |
|
|
151 | # was /usr/lib/... some time ago |
|
|
152 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
|
|
153 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
|
|
154 | |
|
|
155 | # Pathes to includes |
|
|
156 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
157 | DVB_INCLUDE_DIR="/usr/include" |
|
|
158 | |
|
|
159 | |
|
|
160 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
|
|
161 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
|
|
162 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
163 | |
| 103 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
164 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
165 | einfo "APIVERSION: ${APIVERSION}" |
| 104 | } |
166 | } |
| 105 | |
167 | |
| 106 | vdr-plugin_src_unpack() { |
168 | vdr-plugin_src_unpack() { |
|
|
169 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
170 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
171 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
172 | echo |
|
|
173 | eerror "Please report this at bugs.gentoo.org." |
|
|
174 | die "vdr-plugin_pkg_setup not called!" |
|
|
175 | fi |
| 107 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
176 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 108 | |
177 | |
| 109 | while [ "$1" ]; do |
178 | while [ "$1" ]; do |
| 110 | |
179 | |
| 111 | case "$1" in |
180 | case "$1" in |
|
|
181 | all_but_unpack) |
|
|
182 | vdr-plugin_src_unpack add_local_patch patchmakefile |
|
|
183 | ;; |
| 112 | unpack) |
184 | unpack) |
| 113 | unpack ${A} |
185 | base_src_unpack |
| 114 | ;; |
186 | ;; |
| 115 | patchmakefile) |
187 | patchmakefile) |
| 116 | cd ${S} |
188 | if ! cd ${S}; then |
|
|
189 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
190 | ewarn "Perhaps you find one among these:" |
|
|
191 | cd "${WORKDIR}" |
|
|
192 | einfo "$(/bin/ls -1 ${WORKDIR})" |
|
|
193 | die "Could not change to plugin-source-directory!" |
|
|
194 | fi |
| 117 | |
195 | |
| 118 | ebegin "Patching Makefile" |
196 | einfo "Patching Makefile" |
|
|
197 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
198 | cp Makefile Makefile.orig |
|
|
199 | |
| 119 | sed -i.orig Makefile \ |
200 | sed -i Makefile \ |
|
|
201 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
202 | |
|
|
203 | ebegin " Setting Pathes" |
|
|
204 | sed -i Makefile \ |
| 120 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
205 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 121 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
206 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 122 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
207 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 123 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
208 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 124 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
209 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 125 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
210 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 126 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
211 | -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 $? |
212 | eend $? |
|
|
213 | |
|
|
214 | ebegin " Converting to APIVERSION" |
|
|
215 | sed -i Makefile \ |
|
|
216 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
217 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
218 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
219 | eend $? |
|
|
220 | |
|
|
221 | ebegin " Correcting CXXFLAGS" |
|
|
222 | sed -i Makefile \ |
|
|
223 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
224 | eend $? |
|
|
225 | |
|
|
226 | ebegin " Disabling file stripping" |
|
|
227 | sed -i Makefile \ |
|
|
228 | -e '/@.*strip/d' \ |
|
|
229 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
230 | -e '/^STRIP =/d' \ |
|
|
231 | -e '/@.*\$(STRIP)/d' |
|
|
232 | eend $? |
|
|
233 | |
|
|
234 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
235 | # destroys environment. |
|
|
236 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
237 | ;; |
|
|
238 | add_local_patch) |
|
|
239 | cd ${S} |
|
|
240 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
241 | echo |
|
|
242 | einfo "Applying local patches" |
|
|
243 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
244 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
245 | done |
|
|
246 | fi |
| 130 | ;; |
247 | ;; |
| 131 | esac |
248 | esac |
| 132 | |
249 | |
| 133 | shift |
250 | shift |
| 134 | done |
251 | done |
| 135 | } |
252 | } |
| 136 | |
253 | |
| 137 | vdr-plugin_copy_source_tree() { |
254 | vdr-plugin_copy_source_tree() { |
|
|
255 | pushd . >/dev/null |
| 138 | cp -r ${S} ${T}/source-tree |
256 | cp -r ${S} ${T}/source-tree |
| 139 | cd ${T}/source-tree |
257 | cd ${T}/source-tree |
| 140 | mv Makefile.orig Makefile |
258 | mv Makefile.orig Makefile |
| 141 | sed -i Makefile \ |
259 | sed -i Makefile \ |
| 142 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
260 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 143 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
261 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 144 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
262 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 145 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
263 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
264 | popd >/dev/null |
| 146 | } |
265 | } |
| 147 | |
266 | |
| 148 | vdr-plugin_install_source_tree() { |
267 | vdr-plugin_install_source_tree() { |
| 149 | einfo "Installing sources" |
268 | einfo "Installing sources" |
| 150 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
269 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 162 | case "$1" in |
281 | case "$1" in |
| 163 | prepare) |
282 | prepare) |
| 164 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
283 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 165 | ;; |
284 | ;; |
| 166 | compile) |
285 | compile) |
|
|
286 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
287 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
288 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
289 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
290 | echo |
|
|
291 | eerror "Please report this at bugs.gentoo.org." |
|
|
292 | die "vdr-plugin_src_unpack not called!" |
|
|
293 | fi |
| 167 | cd ${S} |
294 | cd ${S} |
| 168 | |
295 | |
| 169 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
296 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 170 | ;; |
297 | ;; |
| 171 | esac |
298 | esac |
| 172 | |
299 | |
| 173 | shift |
300 | shift |
| 174 | done |
301 | done |
| … | |
… | |
| 176 | |
303 | |
| 177 | vdr-plugin_src_install() { |
304 | vdr-plugin_src_install() { |
| 178 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
305 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 179 | cd ${S} |
306 | cd ${S} |
| 180 | |
307 | |
|
|
308 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
309 | local mname=${P}-Makefile |
|
|
310 | cp Makefile ${mname}.patched |
|
|
311 | cp Makefile.orig ${mname}.before |
|
|
312 | |
|
|
313 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
314 | |
|
|
315 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
316 | doins ${mname}.diff |
|
|
317 | |
|
|
318 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
319 | doins ${mname}.before |
|
|
320 | |
|
|
321 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
322 | doins ${mname}.patched |
|
|
323 | |
|
|
324 | fi |
|
|
325 | |
| 181 | insinto "${VDR_PLUGIN_DIR}" |
326 | insinto "${VDR_PLUGIN_DIR}" |
| 182 | doins libvdr-*.so.* |
327 | doins libvdr-*.so.* |
|
|
328 | local docfile |
| 183 | dodoc README* HISTORY CHANGELOG |
329 | for docfile in README* HISTORY CHANGELOG; do |
|
|
330 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
331 | done |
| 184 | |
332 | |
| 185 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
333 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 186 | if [[ -f "${f}" ]]; then |
334 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
335 | |
|
|
336 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 187 | insinto /etc/conf.d |
337 | insinto /etc/conf.d |
| 188 | newins "${f}" vdr.${VDRPLUGIN} |
338 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
|
|
339 | fi |
|
|
340 | |
|
|
341 | |
|
|
342 | # 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 |
|
|
344 | |
|
|
345 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
346 | insinto "${VDR_RC_DIR}" |
|
|
347 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
348 | fi |
|
|
349 | |
|
|
350 | |
|
|
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 |
|
|
367 | } |
|
|
368 | |
|
|
369 | vdr-plugin_pkg_postinst() { |
|
|
370 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
|
|
371 | update_vdrplugindb |
|
|
372 | fi |
|
|
373 | einfo |
|
|
374 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
375 | einfo "To activate execute the following command:" |
|
|
376 | einfo |
|
|
377 | einfo " emerge --config ${PN}" |
|
|
378 | einfo |
|
|
379 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
380 | einfo "And have a look at the config-file" |
|
|
381 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
382 | einfo |
|
|
383 | fi |
|
|
384 | } |
|
|
385 | |
|
|
386 | vdr-plugin_pkg_postrm() { |
|
|
387 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
|
|
388 | remove_vdrplugindb |
|
|
389 | fi |
|
|
390 | delete_orphan_plugindb_file |
|
|
391 | } |
|
|
392 | |
|
|
393 | vdr-plugin_pkg_config_final() { |
|
|
394 | diff ${conf_orig} ${conf} |
|
|
395 | rm ${conf_orig} |
|
|
396 | } |
|
|
397 | |
|
|
398 | vdr-plugin_pkg_config_old() { |
|
|
399 | einfo "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
|
|
400 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
401 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
402 | fi |
|
|
403 | # First test if plugin is already inside PLUGINS |
|
|
404 | local conf=/etc/conf.d/vdr |
|
|
405 | conf_orig=${conf}.before_emerge_config |
|
|
406 | cp ${conf} ${conf_orig} |
|
|
407 | |
|
|
408 | einfo "Reading ${conf}" |
|
|
409 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
410 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
411 | if [[ -n "${LINE}" ]]; then |
|
|
412 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
413 | else |
|
|
414 | echo 'PLUGINS=""' >> ${conf} |
|
|
415 | fi |
|
|
416 | unset LINE |
|
|
417 | fi |
|
|
418 | |
|
|
419 | unset PLUGINS |
|
|
420 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
421 | |
|
|
422 | active=0 |
|
|
423 | for p in ${PLUGINS}; do |
|
|
424 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
425 | active=1 |
| 189 | break |
426 | break; |
| 190 | fi |
427 | fi |
| 191 | done |
428 | done |
| 192 | |
429 | |
| 193 | for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do |
430 | if [[ "${active}" == "1" ]]; then |
| 194 | if [[ -f "${f}" ]]; then |
431 | einfo "${INSTALLPLUGIN} already activated" |
| 195 | insinto "${VDR_RC_DIR}" |
432 | echo |
| 196 | newins "${f}" plugin-${VDRPLUGIN}.sh |
433 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 197 | break |
434 | if [[ "${answer}" != "yes" ]]; then |
|
|
435 | einfo "aborted" |
|
|
436 | return |
| 198 | fi |
437 | fi |
|
|
438 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
439 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
440 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
441 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
442 | -e ${LINE}'s/ "/"/g' \ |
|
|
443 | -e ${LINE}'s/" /"/g' |
|
|
444 | |
|
|
445 | vdr-plugin_pkg_config_final |
|
|
446 | return |
|
|
447 | fi |
|
|
448 | |
|
|
449 | |
|
|
450 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
451 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
452 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
453 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
454 | -e ${LINE}'s/ "/"/g' \ |
|
|
455 | -e ${LINE}'s/" /"/g' |
|
|
456 | |
|
|
457 | vdr-plugin_pkg_config_final |
|
|
458 | } |
|
|
459 | |
|
|
460 | vdr-plugin_pkg_config_new() { |
|
|
461 | einfo "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
|
|
462 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
463 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
464 | fi |
|
|
465 | |
|
|
466 | active=0 |
|
|
467 | # First test if plugin is already inside PLUGINS |
|
|
468 | local conf=/etc/conf.d/vdr.plugins |
|
|
469 | exec 3<${conf} |
|
|
470 | while read -u 3 line; do |
|
|
471 | [[ ${line} == "" ]] && continue |
|
|
472 | [[ ${line:0:1} == "#" ]] && continue |
|
|
473 | set -- ${line} |
|
|
474 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
| 199 | done |
475 | done |
| 200 | } |
476 | exec 3<&- |
| 201 | |
477 | |
|
|
478 | if [[ $active == 0 ]]; then |
|
|
479 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
480 | |
|
|
481 | # The pure edit process. |
|
|
482 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
483 | else |
|
|
484 | einfo "${INSTALLPLUGIN} already activated" |
|
|
485 | echo |
|
|
486 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
487 | if [[ "${answer}" != "yes" ]]; then |
|
|
488 | einfo "aborted" |
|
|
489 | return |
|
|
490 | fi |
|
|
491 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
492 | |
|
|
493 | # The pure edit process |
|
|
494 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
495 | fi |
|
|
496 | } |
|
|
497 | |
| 202 | vdr-plugin_pkg_postinst() { |
498 | vdr-plugin_pkg_config() { |
| 203 | update_vdrplugindb |
499 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
| 204 | einfo |
500 | vdr-plugin_pkg_config_new |
| 205 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed," |
501 | else |
| 206 | einfo "to activate it you have to add it to /etc/conf.d/vdr." |
502 | vdr-plugin_pkg_config_old |
| 207 | einfo |
503 | fi |
| 208 | } |
504 | } |
| 209 | |
505 | |
| 210 | vdr-plugin_pkg_postrm() { |
506 | fix_vdr_libsi_include() |
| 211 | remove_vdrplugindb |
507 | { |
|
|
508 | einfo "Fixing include of libsi-headers" |
|
|
509 | local f |
|
|
510 | for f; do |
|
|
511 | sed -i "${f}" \ |
|
|
512 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
513 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
514 | done |
| 212 | } |
515 | } |
| 213 | |
516 | |
| 214 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm |
517 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |