| 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.51 2007/10/08 14:58:14 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.55 2008/04/13 16:26:05 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 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
| 8 | |
8 | |
| … | |
… | |
| 84 | # file maintained by normal portage-methods |
84 | # file maintained by normal portage-methods |
| 85 | create_plugindb_file() { |
85 | create_plugindb_file() { |
| 86 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
86 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 87 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
87 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 88 | insinto "${NEW_VDRPLUGINDB_DIR}" |
88 | insinto "${NEW_VDRPLUGINDB_DIR}" |
|
|
89 | |
|
|
90 | # BUG: portage-2.1.4_rc9 will delete the EBUILD= line, so we cannot use this code. |
| 89 | cat <<-EOT > "${D}/${DB_FILE}" |
91 | # cat <<-EOT > "${D}/${DB_FILE}" |
| 90 | VDRPLUGIN_DB=1 |
92 | # VDRPLUGIN_DB=1 |
| 91 | CREATOR=ECLASS |
93 | # CREATOR=ECLASS |
| 92 | EBUILD=${CATEGORY}/${PN} |
94 | # EBUILD=${CATEGORY}/${PN} |
| 93 | EBUILD_V=${PVR} |
95 | # EBUILD_V=${PVR} |
| 94 | EOT |
96 | # EOT |
|
|
97 | { |
|
|
98 | echo "VDRPLUGIN_DB=1" |
|
|
99 | echo "CREATOR=ECLASS" |
|
|
100 | echo "EBUILD=${CATEGORY}/${PN}" |
|
|
101 | echo "EBUILD_V=${PVR}" |
|
|
102 | } > "${D}/${DB_FILE}" |
| 95 | } |
103 | } |
| 96 | |
104 | |
| 97 | # Delete files created outside of vdr-plugin.eclass |
105 | # Delete files created outside of vdr-plugin.eclass |
| 98 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| 99 | # not deleted by portage itself - should only be needed as |
107 | # not deleted by portage itself - should only be needed as |
| … | |
… | |
| 137 | doins header-md5-${PN} |
145 | doins header-md5-${PN} |
| 138 | fi |
146 | fi |
| 139 | fi |
147 | fi |
| 140 | } |
148 | } |
| 141 | |
149 | |
| 142 | vdr-plugin_pkg_setup() { |
150 | fix_vdr_libsi_include() |
| 143 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
151 | { |
| 144 | append-flags -fPIC |
152 | einfo "Fixing include of libsi-headers" |
| 145 | |
153 | local f |
| 146 | # Where should the plugins live in the filesystem |
154 | for f; do |
| 147 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
155 | sed -i "${f}" \ |
| 148 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
156 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 149 | |
157 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| 150 | # was /usr/lib/... some time ago |
158 | done |
| 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 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
| 160 | LOCDIR="/usr/share/vdr/locale" |
|
|
| 161 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
| 162 | USE_GETTEXT=1 |
|
|
| 163 | else |
|
|
| 164 | USE_GETTEXT=0 |
|
|
| 165 | fi |
|
|
| 166 | |
|
|
| 167 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
| 168 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
| 169 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
| 170 | |
|
|
| 171 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
| 172 | einfo "APIVERSION: ${APIVERSION}" |
|
|
| 173 | } |
159 | } |
| 174 | |
160 | |
| 175 | vdr-plugin_src_unpack() { |
161 | vdr_patchmakefile() { |
| 176 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
162 | einfo "Patching Makefile" |
| 177 | eerror "Wrong use of vdr-plugin.eclass." |
163 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 178 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
164 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
165 | |
|
|
166 | ebegin " Setting Pathes" |
|
|
167 | sed -i Makefile \ |
|
|
168 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
169 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
|
|
170 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
171 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
|
|
172 | -e "/^DVBDIR/d" \ |
|
|
173 | -e 's:-I$(DVBDIR)/include::' |
|
|
174 | eend $? |
|
|
175 | |
|
|
176 | # maybe needed for multiproto: |
|
|
177 | #sed -i Makefile \ |
|
|
178 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
179 | # -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
180 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
181 | |
|
|
182 | if ! grep -q APIVERSION Makefile; then |
|
|
183 | ebegin " Converting to APIVERSION" |
|
|
184 | sed -i Makefile \ |
|
|
185 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
186 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
187 | -e '/VDRVERSION =/a\APIVERSION = $(shell sed -ne '"'"'/define APIVERSION/s/^.*"\\(.*\\)".*$$/\\1/p'"'"' $(VDRDIR)/config.h)' |
|
|
188 | eend $? |
|
|
189 | fi |
|
|
190 | |
|
|
191 | # Correcting Compile-Flags |
|
|
192 | # Do not overwrite CXXFLAGS, add LDFLAGS if missing |
|
|
193 | sed -i Makefile \ |
|
|
194 | -e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
|
|
195 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
196 | |
|
|
197 | # Disabling file stripping, useful for debugging |
|
|
198 | sed -i Makefile \ |
|
|
199 | -e '/@.*strip/d' \ |
|
|
200 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
201 | -e '/@.*\$(STRIP)/d' |
|
|
202 | |
|
|
203 | # Use a file instead of a variable as single-stepping via ebuild |
|
|
204 | # destroys environment. |
|
|
205 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
|
|
206 | } |
|
|
207 | |
|
|
208 | vdr_add_local_patch() { |
|
|
209 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 179 | echo |
210 | echo |
| 180 | eerror "Please report this at bugs.gentoo.org." |
|
|
| 181 | die "vdr-plugin_pkg_setup not called!" |
|
|
| 182 | fi |
|
|
| 183 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
|
|
| 184 | |
|
|
| 185 | while [ "$1" ]; do |
|
|
| 186 | |
|
|
| 187 | case "$1" in |
|
|
| 188 | all_but_unpack) |
|
|
| 189 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
| 190 | ;; |
|
|
| 191 | unpack) |
|
|
| 192 | base_src_unpack |
|
|
| 193 | ;; |
|
|
| 194 | patchmakefile) |
|
|
| 195 | if ! cd "${S}"; then |
|
|
| 196 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
| 197 | ewarn "Perhaps you find one among these:" |
|
|
| 198 | cd "${WORKDIR}" |
|
|
| 199 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
|
|
| 200 | die "Could not change to plugin-source-directory!" |
|
|
| 201 | fi |
|
|
| 202 | |
|
|
| 203 | einfo "Patching Makefile" |
|
|
| 204 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
| 205 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
| 206 | |
|
|
| 207 | sed -i Makefile \ |
|
|
| 208 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
| 209 | |
|
|
| 210 | ebegin " Setting Pathes" |
|
|
| 211 | sed -i Makefile \ |
|
|
| 212 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
| 213 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
| 214 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
|
|
| 215 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
| 216 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
| 217 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
|
|
| 218 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
| 219 | eend $? |
|
|
| 220 | |
|
|
| 221 | ebegin " Converting to APIVERSION" |
|
|
| 222 | sed -i Makefile \ |
|
|
| 223 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
| 224 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
| 225 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
| 226 | eend $? |
|
|
| 227 | |
|
|
| 228 | ebegin " Correcting Compile-Flags" |
|
|
| 229 | sed -i Makefile \ |
|
|
| 230 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 231 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
| 232 | eend $? |
|
|
| 233 | |
|
|
| 234 | ebegin " Disabling file stripping" |
|
|
| 235 | sed -i Makefile \ |
|
|
| 236 | -e '/@.*strip/d' \ |
|
|
| 237 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
| 238 | -e '/^STRIP =/d' \ |
|
|
| 239 | -e '/@.*\$(STRIP)/d' |
|
|
| 240 | eend $? |
|
|
| 241 | |
|
|
| 242 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
| 243 | # destroys environment. |
|
|
| 244 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
| 245 | ;; |
|
|
| 246 | add_local_patch) |
|
|
| 247 | cd "${S}" |
|
|
| 248 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
| 249 | echo |
|
|
| 250 | einfo "Applying local patches" |
211 | einfo "Applying local patches" |
| 251 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
212 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
| 252 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
213 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 253 | done |
214 | done |
| 254 | fi |
215 | fi |
| 255 | ;; |
216 | } |
| 256 | i18n) |
217 | |
| 257 | cd "${S}" |
218 | vdr_i18n() { |
| 258 | if [[ ${USE_GETTEXT} = 0 ]]; then |
219 | if [[ ${USE_GETTEXT} = 0 ]]; then |
| 259 | # Remove i18n Target if using older vdr |
220 | # Remove i18n Target if using older vdr |
| 260 | sed -i Makefile \ |
221 | sed -i Makefile \ |
| 261 | -e '/^all:/s/ i18n//' |
222 | -e '/^all:/s/ i18n//' |
| 262 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
223 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
|
|
224 | einfo "Plugin is not yet changed for new translation system." |
| 263 | einfo "Converting translations to gettext" |
225 | einfo "Auto converting translations to gettext" |
| 264 | |
226 | |
| 265 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
227 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
| 266 | if [[ ! -x ${i18n_tool} ]]; then |
228 | if [[ ! -x ${i18n_tool} ]]; then |
| 267 | eerror "Missing ${i18n_tool}" |
229 | eerror "Missing ${i18n_tool}" |
| 268 | eerror "Please re-emerge vdr" |
230 | eerror "Please re-emerge vdr" |
| 269 | die "Missing ${i18n_tool}" |
231 | die "Missing ${i18n_tool}" |
| 270 | fi |
232 | fi |
| 271 | |
233 | |
| 272 | # call i18n-to-gettext tool |
234 | # call i18n-to-gettext tool |
| 273 | # take all texts missing tr call into special file |
235 | # take all texts missing tr call into special file |
| 274 | "${i18n_tool}" 2>/dev/null \ |
236 | "${i18n_tool}" 2>/dev/null \ |
| 275 | |sed -e '/^"/!d' \ |
237 | |sed -e '/^"/!d' \ |
| 276 | -e '/^""$/d' \ |
238 | -e '/^""$/d' \ |
| 277 | -e 's/\(.*\)/trNOOP(\1)/' \ |
239 | -e 's/\(.*\)/trNOOP(\1)/' \ |
| 278 | > dummy-translations-trNOOP.c |
240 | > dummy-translations-trNOOP.c |
| 279 | |
241 | |
| 280 | # if there were untranslated texts just run it again |
242 | # if there were untranslated texts just run it again |
| 281 | # now the missing calls are listed in |
243 | # now the missing calls are listed in |
| 282 | # dummy-translations-trNOOP.c |
244 | # dummy-translations-trNOOP.c |
| 283 | if [[ -s dummy-translations-trNOOP.c ]]; then |
245 | if [[ -s dummy-translations-trNOOP.c ]]; then |
| 284 | "${i18n_tool}" &>/dev/null |
246 | "${i18n_tool}" &>/dev/null |
| 285 | fi |
247 | fi |
| 286 | |
248 | |
| 287 | # now use the modified Makefile |
249 | # now use the modified Makefile |
|
|
250 | if [[ -f Makefile.new ]]; then |
| 288 | mv Makefile.new Makefile |
251 | mv Makefile.new Makefile |
|
|
252 | else |
|
|
253 | ewarn "Conversion to gettext failed. Plugin needs fixing." |
| 289 | fi |
254 | fi |
| 290 | esac |
255 | fi |
| 291 | |
|
|
| 292 | shift |
|
|
| 293 | done |
|
|
| 294 | } |
256 | } |
| 295 | |
257 | |
| 296 | vdr-plugin_copy_source_tree() { |
258 | vdr-plugin_copy_source_tree() { |
| 297 | pushd . >/dev/null |
259 | pushd . >/dev/null |
| 298 | cp -r "${S}" "${T}"/source-tree |
260 | cp -r "${S}" "${T}"/source-tree |
| … | |
… | |
| 313 | doins -r "${T}"/source-tree/* |
275 | doins -r "${T}"/source-tree/* |
| 314 | |
276 | |
| 315 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
277 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 316 | } |
278 | } |
| 317 | |
279 | |
|
|
280 | vdr-plugin_print_enable_command() { |
|
|
281 | elog |
|
|
282 | elog "To activate this vdr-plugin execute the following command:" |
|
|
283 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
284 | elog |
|
|
285 | } |
|
|
286 | |
|
|
287 | |
|
|
288 | ## exported functions |
|
|
289 | |
|
|
290 | vdr-plugin_pkg_setup() { |
|
|
291 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
|
|
292 | append-flags -fPIC |
|
|
293 | |
|
|
294 | # Where should the plugins live in the filesystem |
|
|
295 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
296 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
297 | |
|
|
298 | # was /usr/lib/... some time ago |
|
|
299 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
|
|
300 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
|
|
301 | |
|
|
302 | # Pathes to includes |
|
|
303 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
304 | DVB_INCLUDE_DIR="/usr/include" |
|
|
305 | |
|
|
306 | |
|
|
307 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
308 | LOCDIR="/usr/share/vdr/locale" |
|
|
309 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
310 | USE_GETTEXT=1 |
|
|
311 | else |
|
|
312 | USE_GETTEXT=0 |
|
|
313 | fi |
|
|
314 | |
|
|
315 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
316 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
317 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
318 | |
|
|
319 | einfo "Compiling against" |
|
|
320 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
321 | } |
|
|
322 | |
|
|
323 | vdr-plugin_src_unpack() { |
|
|
324 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
325 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
326 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
327 | echo |
|
|
328 | eerror "Please report this at bugs.gentoo.org." |
|
|
329 | die "vdr-plugin_pkg_setup not called!" |
|
|
330 | fi |
|
|
331 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
|
|
332 | |
|
|
333 | while [ "$1" ]; do |
|
|
334 | |
|
|
335 | case "$1" in |
|
|
336 | all_but_unpack) |
|
|
337 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
338 | ;; |
|
|
339 | unpack) |
|
|
340 | base_src_unpack |
|
|
341 | ;; |
|
|
342 | add_local_patch) |
|
|
343 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
344 | vdr_add_local_patch |
|
|
345 | ;; |
|
|
346 | patchmakefile) |
|
|
347 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
348 | vdr_patchmakefile |
|
|
349 | ;; |
|
|
350 | i18n) |
|
|
351 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
352 | vdr_i18n |
|
|
353 | ;; |
|
|
354 | esac |
|
|
355 | |
|
|
356 | shift |
|
|
357 | done |
|
|
358 | } |
|
|
359 | |
| 318 | vdr-plugin_src_compile() { |
360 | vdr-plugin_src_compile() { |
| 319 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
361 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 320 | |
362 | |
| 321 | while [ "$1" ]; do |
363 | while [ "$1" ]; do |
| 322 | |
364 | |
| … | |
… | |
| 403 | |
445 | |
| 404 | create_header_checksum_file |
446 | create_header_checksum_file |
| 405 | create_plugindb_file |
447 | create_plugindb_file |
| 406 | } |
448 | } |
| 407 | |
449 | |
| 408 | vdr-plugin_print_enable_command() { |
|
|
| 409 | ewarn "emerge --config ${PN} is deprecated" |
|
|
| 410 | elog |
|
|
| 411 | elog "To activate this vdr-plugin execute the following command:" |
|
|
| 412 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
| 413 | elog |
|
|
| 414 | } |
|
|
| 415 | |
|
|
| 416 | vdr-plugin_pkg_postinst() { |
450 | vdr-plugin_pkg_postinst() { |
| 417 | vdr-plugin_print_enable_command |
451 | vdr-plugin_print_enable_command |
| 418 | |
452 | |
| 419 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
453 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 420 | elog "Please have a look at the config-file" |
454 | elog "Please have a look at the config-file" |
| … | |
… | |
| 425 | |
459 | |
| 426 | vdr-plugin_pkg_postrm() { |
460 | vdr-plugin_pkg_postrm() { |
| 427 | delete_orphan_plugindb_file |
461 | delete_orphan_plugindb_file |
| 428 | } |
462 | } |
| 429 | |
463 | |
| 430 | vdr-plugin_pkg_config_legacy() { |
|
|
| 431 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
|
|
| 432 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
| 433 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
| 434 | fi |
|
|
| 435 | |
|
|
| 436 | active=0 |
|
|
| 437 | # First test if plugin is already inside PLUGINS |
|
|
| 438 | local conf=/etc/conf.d/vdr.plugins |
|
|
| 439 | exec 3<${conf} |
|
|
| 440 | while read -u 3 line; do |
|
|
| 441 | [[ ${line} == "" ]] && continue |
|
|
| 442 | [[ ${line:0:1} == "#" ]] && continue |
|
|
| 443 | set -- ${line} |
|
|
| 444 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
|
|
| 445 | done |
|
|
| 446 | exec 3<&- |
|
|
| 447 | |
|
|
| 448 | if [[ $active == 0 ]]; then |
|
|
| 449 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 450 | |
|
|
| 451 | # The pure edit process. |
|
|
| 452 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
| 453 | else |
|
|
| 454 | elog "${INSTALLPLUGIN} already activated" |
|
|
| 455 | echo |
|
|
| 456 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 457 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 458 | elog "aborted" |
|
|
| 459 | return |
|
|
| 460 | fi |
|
|
| 461 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
| 462 | |
|
|
| 463 | # The pure edit process |
|
|
| 464 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
|
|
| 465 | fi |
|
|
| 466 | } |
|
|
| 467 | |
|
|
| 468 | vdr-plugin_pkg_config() { |
464 | vdr-plugin_pkg_config() { |
|
|
465 | ewarn "emerge --config ${PN} is no longer supported" |
| 469 | vdr-plugin_print_enable_command |
466 | vdr-plugin_print_enable_command |
| 470 | |
|
|
| 471 | einfo "Calling this now" |
|
|
| 472 | eselect vdr-plugin enable "${PN#vdr-}" |
|
|
| 473 | } |
|
|
| 474 | |
|
|
| 475 | fix_vdr_libsi_include() |
|
|
| 476 | { |
|
|
| 477 | einfo "Fixing include of libsi-headers" |
|
|
| 478 | local f |
|
|
| 479 | for f; do |
|
|
| 480 | sed -i "${f}" \ |
|
|
| 481 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
| 482 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
| 483 | done |
|
|
| 484 | } |
467 | } |
| 485 | |
468 | |
| 486 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
469 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |