| 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.12 2006/02/03 21:18:52 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.42 2007/02/17 01:07:48 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 base eutils flag-o-matic |
61 | inherit base multilib eutils flag-o-matic |
|
|
62 | |
|
|
63 | IUSE="" |
| 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="media-tv/linuxtv-dvb-headers" |
77 | DEPEND="media-tv/linuxtv-dvb-headers" |
| 61 | |
|
|
| 62 | # Where should the plugins live in the filesystem |
|
|
| 63 | VDR_PLUGIN_DIR="/usr/lib/vdr/plugins" |
|
|
| 64 | |
|
|
| 65 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
|
|
| 66 | |
|
|
| 67 | # Pathes to includes |
|
|
| 68 | VDR_INCLUDE_DIR="/usr/include" |
|
|
| 69 | DVB_INCLUDE_DIR="/usr/include" |
|
|
| 70 | |
78 | |
| 71 | |
79 | |
| 72 | # this code is from linux-mod.eclass |
80 | # this code is from linux-mod.eclass |
| 73 | update_vdrplugindb() { |
81 | update_vdrplugindb() { |
| 74 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| … | |
… | |
| 90 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 91 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 92 | fi |
100 | fi |
| 93 | } |
101 | } |
| 94 | |
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 | #elog 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 | #elog file owned by eclass - don't touch it |
|
|
134 | return |
|
|
135 | fi |
|
|
136 | |
|
|
137 | elog "Removing orphaned plugindb-file." |
|
|
138 | elog "\t#rm ${DB_FILE}" |
|
|
139 | rm ${DB_FILE} |
|
|
140 | } |
|
|
141 | |
| 95 | vdr-plugin_pkg_setup() { |
142 | vdr-plugin_pkg_setup() { |
| 96 | # -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) |
| 97 | append-flags -fPIC |
144 | append-flags -fPIC |
| 98 | |
145 | |
| 99 | VDRVERSION=$(awk -F'"' '/VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
146 | # Where should the plugins live in the filesystem |
|
|
147 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
148 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
149 | |
|
|
150 | # was /usr/lib/... some time ago |
|
|
151 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
|
|
152 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
|
|
153 | |
|
|
154 | # Pathes to includes |
|
|
155 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
156 | DVB_INCLUDE_DIR="/usr/include" |
|
|
157 | |
|
|
158 | |
|
|
159 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
|
|
160 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
|
|
161 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
162 | |
| 100 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
163 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
164 | einfo "APIVERSION: ${APIVERSION}" |
| 101 | } |
165 | } |
| 102 | |
166 | |
| 103 | vdr-plugin_src_unpack() { |
167 | vdr-plugin_src_unpack() { |
|
|
168 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
169 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
170 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
171 | echo |
|
|
172 | eerror "Please report this at bugs.gentoo.org." |
|
|
173 | die "vdr-plugin_pkg_setup not called!" |
|
|
174 | fi |
| 104 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
175 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 105 | |
176 | |
| 106 | while [ "$1" ]; do |
177 | while [ "$1" ]; do |
| 107 | |
178 | |
| 108 | case "$1" in |
179 | case "$1" in |
|
|
180 | all_but_unpack) |
|
|
181 | vdr-plugin_src_unpack add_local_patch patchmakefile |
|
|
182 | ;; |
| 109 | unpack) |
183 | unpack) |
| 110 | base_src_unpack |
184 | base_src_unpack |
| 111 | ;; |
185 | ;; |
| 112 | patchmakefile) |
186 | patchmakefile) |
| 113 | cd ${S} |
187 | if ! cd ${S}; then |
|
|
188 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
189 | ewarn "Perhaps you find one among these:" |
|
|
190 | cd "${WORKDIR}" |
|
|
191 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
|
|
192 | die "Could not change to plugin-source-directory!" |
|
|
193 | fi |
| 114 | |
194 | |
| 115 | ebegin "Patching Makefile" |
195 | einfo "Patching Makefile" |
|
|
196 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
197 | cp Makefile Makefile.orig |
|
|
198 | |
| 116 | sed -i.orig Makefile \ |
199 | sed -i Makefile \ |
|
|
200 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
201 | |
|
|
202 | ebegin " Setting Pathes" |
|
|
203 | sed -i Makefile \ |
| 117 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
204 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 118 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
205 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 119 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
206 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 120 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
207 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
208 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
209 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
|
|
210 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
211 | eend $? |
|
|
212 | |
|
|
213 | ebegin " Converting to APIVERSION" |
|
|
214 | sed -i Makefile \ |
|
|
215 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
216 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
217 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
218 | eend $? |
|
|
219 | |
|
|
220 | ebegin " Correcting Compile-Flags" |
|
|
221 | sed -i Makefile \ |
| 121 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
222 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 122 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
223 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
| 123 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
| 124 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
|
|
| 125 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
|
|
| 126 | eend $? |
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 |
| 127 | ;; |
247 | ;; |
| 128 | esac |
248 | esac |
| 129 | |
249 | |
| 130 | shift |
250 | shift |
| 131 | done |
251 | done |
| 132 | } |
252 | } |
| 133 | |
253 | |
| 134 | vdr-plugin_copy_source_tree() { |
254 | vdr-plugin_copy_source_tree() { |
|
|
255 | pushd . >/dev/null |
| 135 | cp -r ${S} ${T}/source-tree |
256 | cp -r ${S} ${T}/source-tree |
| 136 | cd ${T}/source-tree |
257 | cd ${T}/source-tree |
| 137 | mv Makefile.orig Makefile |
258 | mv Makefile.orig Makefile |
| 138 | sed -i Makefile \ |
259 | sed -i Makefile \ |
| 139 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
260 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 140 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
261 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 141 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
262 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 142 | -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 |
| 143 | } |
265 | } |
| 144 | |
266 | |
| 145 | vdr-plugin_install_source_tree() { |
267 | vdr-plugin_install_source_tree() { |
| 146 | einfo "Installing sources" |
268 | einfo "Installing sources" |
| 147 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
269 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 159 | case "$1" in |
281 | case "$1" in |
| 160 | prepare) |
282 | prepare) |
| 161 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
283 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 162 | ;; |
284 | ;; |
| 163 | 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 |
| 164 | cd ${S} |
294 | cd ${S} |
| 165 | |
295 | |
| 166 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
296 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 167 | ;; |
297 | ;; |
| 168 | esac |
298 | esac |
| 169 | |
299 | |
| 170 | shift |
300 | shift |
| 171 | done |
301 | done |
| … | |
… | |
| 173 | |
303 | |
| 174 | vdr-plugin_src_install() { |
304 | vdr-plugin_src_install() { |
| 175 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
305 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 176 | cd ${S} |
306 | cd ${S} |
| 177 | |
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 | |
| 178 | insinto "${VDR_PLUGIN_DIR}" |
326 | insinto "${VDR_PLUGIN_DIR}" |
| 179 | doins libvdr-*.so.* |
327 | doins libvdr-*.so.* |
|
|
328 | local docfile |
| 180 | dodoc README* HISTORY CHANGELOG |
329 | for docfile in README* HISTORY CHANGELOG; do |
|
|
330 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
331 | done |
| 181 | |
332 | |
| 182 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
333 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 183 | 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 |
| 184 | insinto /etc/conf.d |
337 | insinto /etc/conf.d |
| 185 | newins "${f}" vdr.${VDRPLUGIN} |
338 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 186 | break |
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 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
353 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
354 | |
|
|
355 | insinto ${VDR_CHECKSUM_DIR} |
|
|
356 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
357 | newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
358 | else |
|
|
359 | if which md5sum >/dev/null 2>&1; then |
|
|
360 | cd ${S} |
|
|
361 | ( |
|
|
362 | cd ${VDR_INCLUDE_DIR} |
|
|
363 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
364 | ) > header-md5-${PN} |
|
|
365 | doins header-md5-${PN} |
| 187 | fi |
366 | fi |
| 188 | done |
|
|
| 189 | |
|
|
| 190 | for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do |
|
|
| 191 | if [[ -f "${f}" ]]; then |
|
|
| 192 | insinto "${VDR_RC_DIR}" |
|
|
| 193 | newins "${f}" plugin-${VDRPLUGIN}.sh |
|
|
| 194 | break |
|
|
| 195 | fi |
367 | fi |
| 196 | done |
368 | |
|
|
369 | create_plugindb_file |
| 197 | } |
370 | } |
| 198 | |
371 | |
| 199 | vdr-plugin_pkg_postinst() { |
372 | vdr-plugin_pkg_postinst() { |
|
|
373 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 200 | update_vdrplugindb |
374 | update_vdrplugindb |
| 201 | einfo |
375 | fi |
|
|
376 | elog |
| 202 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
377 | elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 203 | einfo "To activate execute the following command:" |
378 | elog "To activate execute the following command:" |
| 204 | einfo |
379 | elog |
| 205 | einfo " emerge --config ${PN}" |
380 | elog " emerge --config ${PN}" |
| 206 | einfo |
381 | elog |
|
|
382 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
383 | elog "And have a look at the config-file" |
|
|
384 | elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
385 | elog |
|
|
386 | fi |
| 207 | } |
387 | } |
| 208 | |
388 | |
| 209 | vdr-plugin_pkg_postrm() { |
389 | vdr-plugin_pkg_postrm() { |
|
|
390 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 210 | remove_vdrplugindb |
391 | remove_vdrplugindb |
|
|
392 | fi |
|
|
393 | delete_orphan_plugindb_file |
| 211 | } |
394 | } |
| 212 | |
395 | |
| 213 | vdr-plugin_pkg_config_final() { |
396 | vdr-plugin_pkg_config_final() { |
| 214 | diff ${conf_orig} ${conf} |
397 | diff ${conf_orig} ${conf} |
| 215 | rm ${conf_orig} |
398 | rm ${conf_orig} |
| 216 | } |
399 | } |
| 217 | |
400 | |
| 218 | vdr-plugin_pkg_config() { |
401 | vdr-plugin_pkg_config_old() { |
|
|
402 | elog "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
| 219 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
403 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 220 | INSTALLPLUGIN="${VDRPLUGIN}" |
404 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 221 | fi |
405 | fi |
| 222 | # First test if plugin is already inside PLUGINS |
406 | # First test if plugin is already inside PLUGINS |
| 223 | local conf=/etc/conf.d/vdr |
407 | local conf=/etc/conf.d/vdr |
| 224 | conf_orig=${conf}.before_emerge_config |
408 | conf_orig=${conf}.before_emerge_config |
| 225 | cp ${conf} ${conf_orig} |
409 | cp ${conf} ${conf_orig} |
| 226 | |
410 | |
| 227 | einfo "Reading ${conf}" |
411 | elog "Reading ${conf}" |
| 228 | if ! grep -q "^PLUGINS=" ${conf}; then |
412 | if ! grep -q "^PLUGINS=" ${conf}; then |
| 229 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
413 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
| 230 | if [[ -n "${LINE}" ]]; then |
414 | if [[ -n "${LINE}" ]]; then |
| 231 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
415 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
| 232 | else |
416 | else |
| … | |
… | |
| 245 | break; |
429 | break; |
| 246 | fi |
430 | fi |
| 247 | done |
431 | done |
| 248 | |
432 | |
| 249 | if [[ "${active}" == "1" ]]; then |
433 | if [[ "${active}" == "1" ]]; then |
| 250 | einfo "${INSTALLPLUGIN} already activated" |
434 | elog "${INSTALLPLUGIN} already activated" |
| 251 | echo |
435 | echo |
| 252 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
436 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 253 | if [[ "${answer}" != "yes" ]]; then |
437 | if [[ "${answer}" != "yes" ]]; then |
| 254 | einfo "aborted" |
438 | elog "aborted" |
| 255 | return |
439 | return |
| 256 | fi |
440 | fi |
| 257 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
441 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
| 258 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
442 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
| 259 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
443 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
| 260 | -e ${LINE}'s/ \( \)*/ /g' \ |
444 | -e ${LINE}'s/ \( \)*/ /g' \ |
| 261 | -e ${LINE}'s/ "/"/g' \ |
445 | -e ${LINE}'s/ "/"/g' \ |
| 262 | -e ${LINE}'s/" /"/g' |
446 | -e ${LINE}'s/" /"/g' |
| … | |
… | |
| 264 | vdr-plugin_pkg_config_final |
448 | vdr-plugin_pkg_config_final |
| 265 | return |
449 | return |
| 266 | fi |
450 | fi |
| 267 | |
451 | |
| 268 | |
452 | |
| 269 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
453 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
| 270 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
454 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
| 271 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
455 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
| 272 | -e ${LINE}'s/ \( \)*/ /g' \ |
456 | -e ${LINE}'s/ \( \)*/ /g' \ |
| 273 | -e ${LINE}'s/ "/"/g' \ |
457 | -e ${LINE}'s/ "/"/g' \ |
| 274 | -e ${LINE}'s/" /"/g' |
458 | -e ${LINE}'s/" /"/g' |
| 275 | |
459 | |
| 276 | vdr-plugin_pkg_config_final |
460 | vdr-plugin_pkg_config_final |
| 277 | } |
461 | } |
| 278 | |
462 | |
|
|
463 | vdr-plugin_pkg_config_new() { |
|
|
464 | elog "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
|
|
465 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
466 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
467 | fi |
|
|
468 | |
|
|
469 | active=0 |
|
|
470 | # First test if plugin is already inside PLUGINS |
|
|
471 | local conf=/etc/conf.d/vdr.plugins |
|
|
472 | exec 3<${conf} |
|
|
473 | while read -u 3 line; do |
|
|
474 | [[ ${line} == "" ]] && continue |
|
|
475 | [[ ${line:0:1} == "#" ]] && continue |
|
|
476 | set -- ${line} |
|
|
477 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
|
|
478 | done |
|
|
479 | exec 3<&- |
|
|
480 | |
|
|
481 | if [[ $active == 0 ]]; then |
|
|
482 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
483 | |
|
|
484 | # The pure edit process. |
|
|
485 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
486 | else |
|
|
487 | elog "${INSTALLPLUGIN} already activated" |
|
|
488 | echo |
|
|
489 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
490 | if [[ "${answer}" != "yes" ]]; then |
|
|
491 | elog "aborted" |
|
|
492 | return |
|
|
493 | fi |
|
|
494 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
495 | |
|
|
496 | # The pure edit process |
|
|
497 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
498 | fi |
|
|
499 | } |
|
|
500 | |
|
|
501 | vdr-plugin_pkg_config() { |
|
|
502 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
|
|
503 | vdr-plugin_pkg_config_new |
|
|
504 | else |
|
|
505 | vdr-plugin_pkg_config_old |
|
|
506 | fi |
|
|
507 | } |
|
|
508 | |
|
|
509 | fix_vdr_libsi_include() |
|
|
510 | { |
|
|
511 | einfo "Fixing include of libsi-headers" |
|
|
512 | local f |
|
|
513 | for f; do |
|
|
514 | sed -i "${f}" \ |
|
|
515 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
516 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
517 | done |
|
|
518 | } |
|
|
519 | |
| 279 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
520 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |