| 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.21 2006/05/02 15:04:03 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.47 2007/08/14 14:47:21 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 | # |
| … | |
… | |
| 36 | # Installation of an rc-addon file for the plugin |
37 | # Installation of an rc-addon file for the plugin |
| 37 | # |
38 | # |
| 38 | # If ${VDR_RCADDON_FILE} is set install this file |
39 | # If ${VDR_RCADDON_FILE} is set install this file |
| 39 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 40 | # |
41 | # |
| 41 | # Gets installed under /usr/lib/vdr/rcscript/plugin-${VDRPLUGIN}.sh |
42 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 42 | # (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) |
| 43 | # |
44 | # |
| 44 | # 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 |
| 45 | # 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 |
| 46 | # 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. |
| 47 | |
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 | |
| 48 | inherit base eutils flag-o-matic |
61 | inherit base multilib eutils flag-o-matic |
| 49 | |
62 | |
| 50 | IUSE="debug" |
63 | IUSE="" |
| 51 | |
64 | |
| 52 | # 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 |
| 53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| 54 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
67 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 55 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
68 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
| … | |
… | |
| 58 | |
71 | |
| 59 | # works in most cases |
72 | # works in most cases |
| 60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 61 | |
74 | |
| 62 | # depend on headers for DVB-driver |
75 | # depend on headers for DVB-driver |
| 63 | RDEPEND="" |
76 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
| 64 | DEPEND="media-tv/linuxtv-dvb-headers" |
77 | DEPEND="media-tv/linuxtv-dvb-headers" |
| 65 | |
|
|
| 66 | # Where should the plugins live in the filesystem |
|
|
| 67 | VDR_PLUGIN_DIR="/usr/lib/vdr/plugins" |
|
|
| 68 | |
|
|
| 69 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
|
|
| 70 | |
|
|
| 71 | # Pathes to includes |
|
|
| 72 | VDR_INCLUDE_DIR="/usr/include" |
|
|
| 73 | DVB_INCLUDE_DIR="/usr/include" |
|
|
| 74 | |
78 | |
| 75 | |
79 | |
| 76 | # this code is from linux-mod.eclass |
80 | # this code is from linux-mod.eclass |
| 77 | update_vdrplugindb() { |
81 | update_vdrplugindb() { |
| 78 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| … | |
… | |
| 94 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 95 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 96 | fi |
100 | fi |
| 97 | } |
101 | } |
| 98 | |
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 | |
|
|
142 | |
|
|
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 | |
| 99 | vdr-plugin_pkg_setup() { |
163 | vdr-plugin_pkg_setup() { |
| 100 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
164 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 101 | append-flags -fPIC |
165 | append-flags -fPIC |
| 102 | use debug && append-flags -g |
|
|
| 103 | |
166 | |
|
|
167 | # 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 | # 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 | |
|
|
175 | # Pathes to includes |
|
|
176 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
177 | DVB_INCLUDE_DIR="/usr/include" |
|
|
178 | |
|
|
179 | |
| 104 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
180 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 105 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' /usr/include/vdr/config.h) |
181 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 106 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
182 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 107 | |
183 | |
| 108 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
184 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 109 | einfo "APIVERSION: ${APIVERSION}" |
185 | einfo "APIVERSION: ${APIVERSION}" |
| 110 | } |
186 | } |
| 111 | |
187 | |
| 112 | vdr-plugin_src_unpack() { |
188 | vdr-plugin_src_unpack() { |
|
|
189 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
190 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
191 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
192 | echo |
|
|
193 | eerror "Please report this at bugs.gentoo.org." |
|
|
194 | die "vdr-plugin_pkg_setup not called!" |
|
|
195 | fi |
| 113 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
196 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 114 | |
197 | |
| 115 | while [ "$1" ]; do |
198 | while [ "$1" ]; do |
| 116 | |
199 | |
| 117 | case "$1" in |
200 | case "$1" in |
|
|
201 | all_but_unpack) |
|
|
202 | vdr-plugin_src_unpack add_local_patch patchmakefile |
|
|
203 | ;; |
| 118 | unpack) |
204 | unpack) |
| 119 | base_src_unpack |
205 | base_src_unpack |
| 120 | ;; |
206 | ;; |
| 121 | patchmakefile) |
207 | patchmakefile) |
| 122 | if ! cd ${S}; then |
208 | if ! cd ${S}; then |
| 123 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
209 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 124 | ewarn "Perhaps you find one among these:" |
210 | ewarn "Perhaps you find one among these:" |
| 125 | cd "${WORKDIR}" |
211 | cd "${WORKDIR}" |
| 126 | einfo "$(/bin/ls -1 ${WORKDIR})" |
212 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
| 127 | die "Could not change to plugin-source-directory!" |
213 | die "Could not change to plugin-source-directory!" |
| 128 | fi |
214 | fi |
| 129 | |
215 | |
| 130 | ebegin "Patching Makefile" |
216 | einfo "Patching Makefile" |
| 131 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
217 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
218 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
219 | |
| 132 | sed -i.orig Makefile \ |
220 | sed -i Makefile \ |
|
|
221 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
222 | |
|
|
223 | ebegin " Setting Pathes" |
|
|
224 | sed -i Makefile \ |
| 133 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
225 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 134 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
226 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 135 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
227 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 136 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
228 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 137 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
229 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 138 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
230 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 139 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
231 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 140 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
232 | eend $? |
| 141 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
233 | |
|
|
234 | ebegin " Converting to APIVERSION" |
|
|
235 | sed -i Makefile \ |
| 142 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
236 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 143 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
237 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 144 | -e '1i\APIVERSION = '"${APIVERSION}" |
238 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 145 | eend $? |
239 | eend $? |
|
|
240 | |
|
|
241 | ebegin " Correcting Compile-Flags" |
|
|
242 | sed -i Makefile \ |
|
|
243 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
244 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
245 | eend $? |
|
|
246 | |
|
|
247 | ebegin " Disabling file stripping" |
|
|
248 | sed -i Makefile \ |
|
|
249 | -e '/@.*strip/d' \ |
|
|
250 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
251 | -e '/^STRIP =/d' \ |
|
|
252 | -e '/@.*\$(STRIP)/d' |
|
|
253 | eend $? |
|
|
254 | |
|
|
255 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
256 | # destroys environment. |
|
|
257 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
258 | ;; |
|
|
259 | add_local_patch) |
|
|
260 | cd ${S} |
|
|
261 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
262 | echo |
|
|
263 | einfo "Applying local patches" |
|
|
264 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
265 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
266 | done |
|
|
267 | fi |
| 146 | ;; |
268 | ;; |
| 147 | esac |
269 | esac |
| 148 | |
270 | |
| 149 | shift |
271 | shift |
| 150 | done |
272 | done |
| 151 | } |
273 | } |
| 152 | |
274 | |
| 153 | vdr-plugin_copy_source_tree() { |
275 | vdr-plugin_copy_source_tree() { |
|
|
276 | pushd . >/dev/null |
| 154 | cp -r ${S} ${T}/source-tree |
277 | cp -r ${S} ${T}/source-tree |
| 155 | cd ${T}/source-tree |
278 | cd ${T}/source-tree |
| 156 | mv Makefile.orig Makefile |
279 | cp "${WORKDIR}"/Makefile.before Makefile |
| 157 | sed -i Makefile \ |
280 | sed -i Makefile \ |
| 158 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
281 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 159 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
282 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 160 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
283 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 161 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
284 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
285 | popd >/dev/null |
| 162 | } |
286 | } |
| 163 | |
287 | |
| 164 | vdr-plugin_install_source_tree() { |
288 | vdr-plugin_install_source_tree() { |
| 165 | einfo "Installing sources" |
289 | einfo "Installing sources" |
| 166 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
290 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 178 | case "$1" in |
302 | case "$1" in |
| 179 | prepare) |
303 | prepare) |
| 180 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
304 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 181 | ;; |
305 | ;; |
| 182 | compile) |
306 | compile) |
|
|
307 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
308 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
309 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
310 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
311 | echo |
|
|
312 | eerror "Please report this at bugs.gentoo.org." |
|
|
313 | die "vdr-plugin_src_unpack not called!" |
|
|
314 | fi |
| 183 | cd ${S} |
315 | cd ${S} |
| 184 | |
316 | |
| 185 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
317 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 186 | ;; |
318 | ;; |
| 187 | esac |
319 | esac |
| 188 | |
320 | |
| 189 | shift |
321 | shift |
| 190 | done |
322 | done |
| 191 | } |
323 | } |
| 192 | |
324 | |
| 193 | vdr-plugin_src_install() { |
325 | vdr-plugin_src_install() { |
| 194 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
326 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
|
|
327 | cd "${WORKDIR}" |
|
|
328 | |
|
|
329 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
330 | local mname=${P}-Makefile |
|
|
331 | cp "${S}"/Makefile ${mname}.patched |
|
|
332 | cp Makefile.before ${mname}.before |
|
|
333 | |
|
|
334 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
335 | |
|
|
336 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
337 | doins ${mname}.diff |
|
|
338 | |
|
|
339 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
340 | doins ${mname}.before |
|
|
341 | |
|
|
342 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
343 | doins ${mname}.patched |
|
|
344 | |
|
|
345 | fi |
|
|
346 | |
| 195 | cd ${S} |
347 | cd "${S}" |
| 196 | |
|
|
| 197 | insinto "${VDR_PLUGIN_DIR}" |
348 | insinto "${VDR_PLUGIN_DIR}" |
| 198 | doins libvdr-*.so.* |
349 | doins libvdr-*.so.* |
|
|
350 | local docfile |
| 199 | dodoc README* HISTORY CHANGELOG |
351 | for docfile in README* HISTORY CHANGELOG; do |
| 200 | |
352 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
353 | done |
| 201 | |
354 | |
| 202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
355 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 203 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
356 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 204 | |
357 | |
| 205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
358 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 206 | insinto /etc/conf.d |
|
|
| 207 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
359 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 208 | fi |
360 | fi |
| 209 | |
361 | |
| 210 | |
362 | |
| 211 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
363 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
| 212 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
364 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| … | |
… | |
| 214 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
366 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 215 | insinto "${VDR_RC_DIR}" |
367 | insinto "${VDR_RC_DIR}" |
| 216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
368 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 217 | fi |
369 | fi |
| 218 | |
370 | |
| 219 | |
371 | create_header_checksum_file |
| 220 | |
372 | create_plugindb_file |
| 221 | insinto /usr/lib/vdr/checksums |
|
|
| 222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
|
|
| 223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
|
|
| 224 | else |
|
|
| 225 | if which md5sum >/dev/null 2>&1; then |
|
|
| 226 | cd ${S} |
|
|
| 227 | ( |
|
|
| 228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
|
|
| 229 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 230 | ) > header-md5-${PN} |
|
|
| 231 | doins header-md5-${PN} |
|
|
| 232 | fi |
|
|
| 233 | fi |
|
|
| 234 | } |
373 | } |
| 235 | |
374 | |
| 236 | vdr-plugin_pkg_postinst() { |
375 | vdr-plugin_pkg_postinst() { |
|
|
376 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 237 | update_vdrplugindb |
377 | update_vdrplugindb |
| 238 | einfo |
378 | fi |
|
|
379 | elog |
| 239 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
380 | elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 240 | einfo "To activate execute the following command:" |
381 | elog "To activate execute the following command:" |
| 241 | einfo |
382 | elog |
| 242 | einfo " emerge --config ${PN}" |
383 | elog " emerge --config ${PN}" |
| 243 | einfo |
384 | elog |
| 244 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
385 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 245 | einfo "And have a look at the config-file" |
386 | elog "And have a look at the config-file" |
| 246 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
387 | elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
| 247 | einfo |
388 | elog |
| 248 | fi |
389 | fi |
| 249 | } |
390 | } |
| 250 | |
391 | |
| 251 | vdr-plugin_pkg_postrm() { |
392 | vdr-plugin_pkg_postrm() { |
|
|
393 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
| 252 | remove_vdrplugindb |
394 | remove_vdrplugindb |
|
|
395 | fi |
|
|
396 | delete_orphan_plugindb_file |
| 253 | } |
397 | } |
| 254 | |
398 | |
| 255 | vdr-plugin_pkg_config_final() { |
399 | vdr-plugin_pkg_config_final() { |
| 256 | diff ${conf_orig} ${conf} |
400 | diff ${conf_orig} ${conf} |
| 257 | rm ${conf_orig} |
401 | rm ${conf_orig} |
| 258 | } |
402 | } |
| 259 | |
403 | |
| 260 | vdr-plugin_pkg_config() { |
404 | vdr-plugin_pkg_config_old() { |
|
|
405 | elog "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
| 261 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
406 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 262 | INSTALLPLUGIN="${VDRPLUGIN}" |
407 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 263 | fi |
408 | fi |
| 264 | # First test if plugin is already inside PLUGINS |
409 | # First test if plugin is already inside PLUGINS |
| 265 | local conf=/etc/conf.d/vdr |
410 | local conf=/etc/conf.d/vdr |
| 266 | conf_orig=${conf}.before_emerge_config |
411 | conf_orig=${conf}.before_emerge_config |
| 267 | cp ${conf} ${conf_orig} |
412 | cp ${conf} ${conf_orig} |
| 268 | |
413 | |
| 269 | einfo "Reading ${conf}" |
414 | elog "Reading ${conf}" |
| 270 | if ! grep -q "^PLUGINS=" ${conf}; then |
415 | if ! grep -q "^PLUGINS=" ${conf}; then |
| 271 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
416 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
| 272 | if [[ -n "${LINE}" ]]; then |
417 | if [[ -n "${LINE}" ]]; then |
| 273 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
418 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
| 274 | else |
419 | else |
| … | |
… | |
| 287 | break; |
432 | break; |
| 288 | fi |
433 | fi |
| 289 | done |
434 | done |
| 290 | |
435 | |
| 291 | if [[ "${active}" == "1" ]]; then |
436 | if [[ "${active}" == "1" ]]; then |
| 292 | einfo "${INSTALLPLUGIN} already activated" |
437 | elog "${INSTALLPLUGIN} already activated" |
| 293 | echo |
438 | echo |
| 294 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
439 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 295 | if [[ "${answer}" != "yes" ]]; then |
440 | if [[ "${answer}" != "yes" ]]; then |
| 296 | einfo "aborted" |
441 | elog "aborted" |
| 297 | return |
442 | return |
| 298 | fi |
443 | fi |
| 299 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
444 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
| 300 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
445 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
| 301 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
446 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
| 302 | -e ${LINE}'s/ \( \)*/ /g' \ |
447 | -e ${LINE}'s/ \( \)*/ /g' \ |
| 303 | -e ${LINE}'s/ "/"/g' \ |
448 | -e ${LINE}'s/ "/"/g' \ |
| 304 | -e ${LINE}'s/" /"/g' |
449 | -e ${LINE}'s/" /"/g' |
| … | |
… | |
| 306 | vdr-plugin_pkg_config_final |
451 | vdr-plugin_pkg_config_final |
| 307 | return |
452 | return |
| 308 | fi |
453 | fi |
| 309 | |
454 | |
| 310 | |
455 | |
| 311 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
456 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
| 312 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
457 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
| 313 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
458 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
| 314 | -e ${LINE}'s/ \( \)*/ /g' \ |
459 | -e ${LINE}'s/ \( \)*/ /g' \ |
| 315 | -e ${LINE}'s/ "/"/g' \ |
460 | -e ${LINE}'s/ "/"/g' \ |
| 316 | -e ${LINE}'s/" /"/g' |
461 | -e ${LINE}'s/" /"/g' |
| 317 | |
462 | |
| 318 | vdr-plugin_pkg_config_final |
463 | vdr-plugin_pkg_config_final |
|
|
464 | } |
|
|
465 | |
|
|
466 | vdr-plugin_pkg_config_new() { |
|
|
467 | elog "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
|
|
468 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
469 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
470 | fi |
|
|
471 | |
|
|
472 | active=0 |
|
|
473 | # First test if plugin is already inside PLUGINS |
|
|
474 | local conf=/etc/conf.d/vdr.plugins |
|
|
475 | exec 3<${conf} |
|
|
476 | while read -u 3 line; do |
|
|
477 | [[ ${line} == "" ]] && continue |
|
|
478 | [[ ${line:0:1} == "#" ]] && continue |
|
|
479 | set -- ${line} |
|
|
480 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
|
|
481 | done |
|
|
482 | exec 3<&- |
|
|
483 | |
|
|
484 | if [[ $active == 0 ]]; then |
|
|
485 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
486 | |
|
|
487 | # The pure edit process. |
|
|
488 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
489 | else |
|
|
490 | elog "${INSTALLPLUGIN} already activated" |
|
|
491 | echo |
|
|
492 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
493 | if [[ "${answer}" != "yes" ]]; then |
|
|
494 | elog "aborted" |
|
|
495 | return |
|
|
496 | fi |
|
|
497 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
498 | |
|
|
499 | # The pure edit process |
|
|
500 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
501 | fi |
|
|
502 | } |
|
|
503 | |
|
|
504 | vdr-plugin_pkg_config() { |
|
|
505 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
|
|
506 | vdr-plugin_pkg_config_new |
|
|
507 | else |
|
|
508 | vdr-plugin_pkg_config_old |
|
|
509 | fi |
| 319 | } |
510 | } |
| 320 | |
511 | |
| 321 | fix_vdr_libsi_include() |
512 | fix_vdr_libsi_include() |
| 322 | { |
513 | { |
| 323 | einfo "Fixing include of libsi-headers" |
514 | einfo "Fixing include of libsi-headers" |