| 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.41 2007/01/06 14:47:04 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.53 2008/02/13 19:44:44 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 | |
| … | |
… | |
| 71 | |
71 | |
| 72 | # works in most cases |
72 | # works in most cases |
| 73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 74 | |
74 | |
| 75 | # depend on headers for DVB-driver |
75 | # depend on headers for DVB-driver |
| 76 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
76 | DEPEND=">=media-tv/gentoo-vdr-scripts-0.3.8 |
|
|
77 | || ( >=media-tv/gentoo-vdr-scripts-0.4.2 >=media-tv/vdrplugin-rebuild-0.2 ) |
|
|
78 | >=app-admin/eselect-vdr-0.0.2 |
| 77 | DEPEND="media-tv/linuxtv-dvb-headers" |
79 | media-tv/linuxtv-dvb-headers" |
| 78 | |
80 | |
| 79 | |
|
|
| 80 | # this code is from linux-mod.eclass |
|
|
| 81 | update_vdrplugindb() { |
|
|
| 82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
|
|
| 83 | |
|
|
| 84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
|
|
| 85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
|
|
| 86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 87 | fi |
|
|
| 88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 89 | einfo "Adding plugin to vdrplugindb." |
|
|
| 90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 91 | fi |
|
|
| 92 | } |
|
|
| 93 | |
|
|
| 94 | remove_vdrplugindb() { |
|
|
| 95 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
|
|
| 96 | |
|
|
| 97 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
|
|
| 99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 100 | fi |
|
|
| 101 | } |
|
|
| 102 | |
81 | |
| 103 | # New method of storing plugindb |
82 | # New method of storing plugindb |
| 104 | # Called from src_install |
83 | # Called from src_install |
| 105 | # file maintained by normal portage-methods |
84 | # file maintained by normal portage-methods |
| 106 | create_plugindb_file() { |
85 | create_plugindb_file() { |
| 107 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
86 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 108 | local DB_FILE=${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
87 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 109 | 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. |
| 110 | cat <<-EOT > ${D}/${DB_FILE} |
91 | # cat <<-EOT > "${D}/${DB_FILE}" |
| 111 | VDRPLUGIN_DB=1 |
92 | # VDRPLUGIN_DB=1 |
| 112 | CREATOR=ECLASS |
93 | # CREATOR=ECLASS |
| 113 | EBUILD=${CATEGORY}/${PN} |
94 | # EBUILD=${CATEGORY}/${PN} |
| 114 | EBUILD_V=${PVR} |
95 | # EBUILD_V=${PVR} |
| 115 | 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}" |
| 116 | } |
103 | } |
| 117 | |
104 | |
| 118 | # Delete files created outside of vdr-plugin.eclass |
105 | # Delete files created outside of vdr-plugin.eclass |
| 119 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| 120 | # not deleted by portage itself - should only be needed as |
107 | # not deleted by portage itself - should only be needed as |
| 121 | # long as not every system has switched over to |
108 | # long as not every system has switched over to |
| 122 | # vdrplugin-rebuild-0.2 |
109 | # vdrplugin-rebuild-0.2 / gentoo-vdr-scripts-0.4.2 |
| 123 | delete_orphan_plugindb_file() { |
110 | delete_orphan_plugindb_file() { |
| 124 | #elog Testing for orphaned plugindb file |
111 | #elog Testing for orphaned plugindb file |
| 125 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
112 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
| 126 | local DB_FILE=${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF} |
113 | local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
| 127 | |
114 | |
| 128 | # file exists |
115 | # file exists |
| 129 | [[ -f ${DB_FILE} ]] || return |
116 | [[ -f ${DB_FILE} ]] || return |
| 130 | |
117 | |
| 131 | # will portage handle the file itself |
118 | # will portage handle the file itself |
| 132 | if grep -q CREATOR=ECLASS ${DB_FILE}; then |
119 | if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
| 133 | #elog file owned by eclass - don't touch it |
120 | #elog file owned by eclass - don't touch it |
| 134 | return |
121 | return |
| 135 | fi |
122 | fi |
| 136 | |
123 | |
| 137 | elog "Removing orphaned plugindb-file." |
124 | elog "Removing orphaned plugindb-file." |
| 138 | elog "\t#rm ${DB_FILE}" |
125 | elog "\t#rm ${DB_FILE}" |
| 139 | rm ${DB_FILE} |
126 | rm "${DB_FILE}" |
|
|
127 | } |
|
|
128 | |
|
|
129 | |
|
|
130 | create_header_checksum_file() |
|
|
131 | { |
|
|
132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
133 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
134 | |
|
|
135 | insinto "${VDR_CHECKSUM_DIR}" |
|
|
136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
|
|
138 | else |
|
|
139 | if type -p md5sum >/dev/null 2>&1; then |
|
|
140 | cd "${S}" |
|
|
141 | ( |
|
|
142 | cd "${VDR_INCLUDE_DIR}" |
|
|
143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
144 | ) > header-md5-${PN} |
|
|
145 | doins header-md5-${PN} |
|
|
146 | fi |
|
|
147 | fi |
| 140 | } |
148 | } |
| 141 | |
149 | |
| 142 | vdr-plugin_pkg_setup() { |
150 | vdr-plugin_pkg_setup() { |
| 143 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
151 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 144 | append-flags -fPIC |
152 | append-flags -fPIC |
| … | |
… | |
| 154 | # Pathes to includes |
162 | # Pathes to includes |
| 155 | VDR_INCLUDE_DIR="/usr/include/vdr" |
163 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 156 | DVB_INCLUDE_DIR="/usr/include" |
164 | DVB_INCLUDE_DIR="/usr/include" |
| 157 | |
165 | |
| 158 | |
166 | |
|
|
167 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
168 | LOCDIR="/usr/share/vdr/locale" |
|
|
169 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
170 | USE_GETTEXT=1 |
|
|
171 | else |
|
|
172 | USE_GETTEXT=0 |
|
|
173 | fi |
|
|
174 | |
| 159 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
175 | 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) |
176 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 161 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
177 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 162 | |
178 | |
| 163 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
179 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 164 | einfo "APIVERSION: ${APIVERSION}" |
180 | einfo "APIVERSION: ${APIVERSION}" |
| 165 | } |
181 | } |
| … | |
… | |
| 170 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
186 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 171 | echo |
187 | echo |
| 172 | eerror "Please report this at bugs.gentoo.org." |
188 | eerror "Please report this at bugs.gentoo.org." |
| 173 | die "vdr-plugin_pkg_setup not called!" |
189 | die "vdr-plugin_pkg_setup not called!" |
| 174 | fi |
190 | fi |
| 175 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
191 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
| 176 | |
192 | |
| 177 | while [ "$1" ]; do |
193 | while [ "$1" ]; do |
| 178 | |
194 | |
| 179 | case "$1" in |
195 | case "$1" in |
| 180 | all_but_unpack) |
196 | all_but_unpack) |
| 181 | vdr-plugin_src_unpack add_local_patch patchmakefile |
197 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
| 182 | ;; |
198 | ;; |
| 183 | unpack) |
199 | unpack) |
| 184 | base_src_unpack |
200 | base_src_unpack |
| 185 | ;; |
201 | ;; |
| 186 | patchmakefile) |
202 | patchmakefile) |
| 187 | if ! cd ${S}; then |
203 | if ! cd "${S}"; then |
| 188 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
204 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 189 | ewarn "Perhaps you find one among these:" |
205 | ewarn "Perhaps you find one among these:" |
| 190 | cd "${WORKDIR}" |
206 | cd "${WORKDIR}" |
| 191 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
207 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
| 192 | die "Could not change to plugin-source-directory!" |
208 | die "Could not change to plugin-source-directory!" |
| 193 | fi |
209 | fi |
| 194 | |
210 | |
| 195 | einfo "Patching Makefile" |
211 | einfo "Patching Makefile" |
| 196 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
212 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 197 | cp Makefile Makefile.orig |
213 | cp Makefile "${WORKDIR}"/Makefile.before |
| 198 | |
214 | |
| 199 | sed -i Makefile \ |
215 | sed -i Makefile \ |
| 200 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
216 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 201 | |
217 | |
| 202 | ebegin " Setting Pathes" |
218 | ebegin " Setting Pathes" |
| … | |
… | |
| 231 | -e '/@.*\$(STRIP)/d' |
247 | -e '/@.*\$(STRIP)/d' |
| 232 | eend $? |
248 | eend $? |
| 233 | |
249 | |
| 234 | # Use a file instead of an variable as single-stepping via ebuild |
250 | # Use a file instead of an variable as single-stepping via ebuild |
| 235 | # destroys environment. |
251 | # destroys environment. |
| 236 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
252 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
| 237 | ;; |
253 | ;; |
| 238 | add_local_patch) |
254 | add_local_patch) |
| 239 | cd ${S} |
255 | cd "${S}" |
| 240 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
256 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 241 | echo |
257 | echo |
| 242 | einfo "Applying local patches" |
258 | einfo "Applying local patches" |
| 243 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
259 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
| 244 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
260 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 245 | done |
261 | done |
| 246 | fi |
262 | fi |
| 247 | ;; |
263 | ;; |
|
|
264 | i18n) |
|
|
265 | cd "${S}" |
|
|
266 | if [[ ${USE_GETTEXT} = 0 ]]; then |
|
|
267 | # Remove i18n Target if using older vdr |
|
|
268 | sed -i Makefile \ |
|
|
269 | -e '/^all:/s/ i18n//' |
|
|
270 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
|
|
271 | einfo "Converting translations to gettext" |
|
|
272 | |
|
|
273 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
274 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
275 | eerror "Missing ${i18n_tool}" |
|
|
276 | eerror "Please re-emerge vdr" |
|
|
277 | die "Missing ${i18n_tool}" |
|
|
278 | fi |
|
|
279 | |
|
|
280 | # call i18n-to-gettext tool |
|
|
281 | # take all texts missing tr call into special file |
|
|
282 | "${i18n_tool}" 2>/dev/null \ |
|
|
283 | |sed -e '/^"/!d' \ |
|
|
284 | -e '/^""$/d' \ |
|
|
285 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
286 | > dummy-translations-trNOOP.c |
|
|
287 | |
|
|
288 | # if there were untranslated texts just run it again |
|
|
289 | # now the missing calls are listed in |
|
|
290 | # dummy-translations-trNOOP.c |
|
|
291 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
292 | "${i18n_tool}" &>/dev/null |
|
|
293 | fi |
|
|
294 | |
|
|
295 | # now use the modified Makefile |
|
|
296 | mv Makefile.new Makefile |
|
|
297 | fi |
| 248 | esac |
298 | esac |
| 249 | |
299 | |
| 250 | shift |
300 | shift |
| 251 | done |
301 | done |
| 252 | } |
302 | } |
| 253 | |
303 | |
| 254 | vdr-plugin_copy_source_tree() { |
304 | vdr-plugin_copy_source_tree() { |
| 255 | pushd . >/dev/null |
305 | pushd . >/dev/null |
| 256 | cp -r ${S} ${T}/source-tree |
306 | cp -r "${S}" "${T}"/source-tree |
| 257 | cd ${T}/source-tree |
307 | cd "${T}"/source-tree |
| 258 | mv Makefile.orig Makefile |
308 | cp "${WORKDIR}"/Makefile.before Makefile |
| 259 | sed -i Makefile \ |
309 | sed -i Makefile \ |
| 260 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
310 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 261 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
311 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 262 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
312 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 263 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
313 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| 264 | popd >/dev/null |
314 | popd >/dev/null |
| 265 | } |
315 | } |
| 266 | |
316 | |
| 267 | vdr-plugin_install_source_tree() { |
317 | vdr-plugin_install_source_tree() { |
| 268 | einfo "Installing sources" |
318 | einfo "Installing sources" |
| 269 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
319 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
| 270 | insinto ${destdir}-${PV} |
320 | insinto "${destdir}-${PV}" |
| 271 | doins -r ${T}/source-tree/* |
321 | doins -r "${T}"/source-tree/* |
| 272 | |
322 | |
| 273 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
323 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 274 | } |
324 | } |
| 275 | |
325 | |
| 276 | vdr-plugin_src_compile() { |
326 | vdr-plugin_src_compile() { |
| 277 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
327 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 278 | |
328 | |
| … | |
… | |
| 289 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
339 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
| 290 | echo |
340 | echo |
| 291 | eerror "Please report this at bugs.gentoo.org." |
341 | eerror "Please report this at bugs.gentoo.org." |
| 292 | die "vdr-plugin_src_unpack not called!" |
342 | die "vdr-plugin_src_unpack not called!" |
| 293 | fi |
343 | fi |
| 294 | cd ${S} |
344 | cd "${S}" |
| 295 | |
345 | |
| 296 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
346 | emake ${BUILD_PARAMS} \ |
|
|
347 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
|
|
348 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
349 | || die "emake failed" |
| 297 | ;; |
350 | ;; |
| 298 | esac |
351 | esac |
| 299 | |
352 | |
| 300 | shift |
353 | shift |
| 301 | done |
354 | done |
| 302 | } |
355 | } |
| 303 | |
356 | |
| 304 | vdr-plugin_src_install() { |
357 | vdr-plugin_src_install() { |
| 305 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
358 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 306 | cd ${S} |
359 | cd "${WORKDIR}" |
| 307 | |
360 | |
| 308 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
361 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 309 | local mname=${P}-Makefile |
362 | local mname="${P}-Makefile" |
| 310 | cp Makefile ${mname}.patched |
363 | cp "${S}"/Makefile "${mname}.patched" |
| 311 | cp Makefile.orig ${mname}.before |
364 | cp Makefile.before "${mname}.before" |
| 312 | |
365 | |
| 313 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
366 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
| 314 | |
367 | |
| 315 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
368 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 316 | doins ${mname}.diff |
369 | doins "${mname}.diff" |
| 317 | |
370 | |
| 318 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
371 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 319 | doins ${mname}.before |
372 | doins "${mname}.before" |
| 320 | |
373 | |
| 321 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
374 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 322 | doins ${mname}.patched |
375 | doins "${mname}.patched" |
| 323 | |
376 | |
| 324 | fi |
377 | fi |
| 325 | |
378 | |
|
|
379 | cd "${S}" |
| 326 | insinto "${VDR_PLUGIN_DIR}" |
380 | insinto "${VDR_PLUGIN_DIR}" |
| 327 | doins libvdr-*.so.* |
381 | doins libvdr-*.so.* |
|
|
382 | |
|
|
383 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
|
|
384 | einfo "Installing locales" |
|
|
385 | cd "${TMP_LOCALE_DIR}" |
|
|
386 | insinto "${LOCDIR}" |
|
|
387 | doins -r * |
|
|
388 | fi |
|
|
389 | |
|
|
390 | cd "${S}" |
| 328 | local docfile |
391 | local docfile |
| 329 | for docfile in README* HISTORY CHANGELOG; do |
392 | for docfile in README* HISTORY CHANGELOG; do |
| 330 | [[ -f ${docfile} ]] && dodoc ${docfile} |
393 | [[ -f ${docfile} ]] && dodoc ${docfile} |
| 331 | done |
394 | done |
| 332 | |
395 | |
| 333 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
396 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 334 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
397 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 335 | |
398 | |
| 336 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
399 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 337 | insinto /etc/conf.d |
|
|
| 338 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
400 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 339 | fi |
401 | fi |
| 340 | |
402 | |
| 341 | |
403 | |
| 342 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
404 | # 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 |
405 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| … | |
… | |
| 345 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
407 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 346 | insinto "${VDR_RC_DIR}" |
408 | insinto "${VDR_RC_DIR}" |
| 347 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
409 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 348 | fi |
410 | fi |
| 349 | |
411 | |
| 350 | |
412 | create_header_checksum_file |
| 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 |
413 | create_plugindb_file |
| 367 | } |
414 | } |
| 368 | |
415 | |
|
|
416 | vdr-plugin_print_enable_command() { |
|
|
417 | ewarn "emerge --config ${PN} is deprecated" |
|
|
418 | elog |
|
|
419 | elog "To activate this vdr-plugin execute the following command:" |
|
|
420 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
421 | elog |
|
|
422 | } |
|
|
423 | |
| 369 | vdr-plugin_pkg_postinst() { |
424 | vdr-plugin_pkg_postinst() { |
| 370 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
425 | vdr-plugin_print_enable_command |
| 371 | update_vdrplugindb |
426 | |
| 372 | fi |
|
|
| 373 | elog |
|
|
| 374 | elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
| 375 | elog "To activate execute the following command:" |
|
|
| 376 | elog |
|
|
| 377 | elog " emerge --config ${PN}" |
|
|
| 378 | elog |
|
|
| 379 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
427 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 380 | elog "And have a look at the config-file" |
428 | elog "Please have a look at the config-file" |
| 381 | elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
429 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
| 382 | elog |
430 | elog |
| 383 | fi |
431 | fi |
| 384 | } |
432 | } |
| 385 | |
433 | |
| 386 | vdr-plugin_pkg_postrm() { |
434 | 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 |
435 | delete_orphan_plugindb_file |
| 391 | } |
436 | } |
| 392 | |
437 | |
| 393 | vdr-plugin_pkg_config_final() { |
|
|
| 394 | diff ${conf_orig} ${conf} |
|
|
| 395 | rm ${conf_orig} |
|
|
| 396 | } |
|
|
| 397 | |
|
|
| 398 | vdr-plugin_pkg_config_old() { |
438 | vdr-plugin_pkg_config_legacy() { |
| 399 | elog "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 | elog "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 |
|
|
| 426 | break; |
|
|
| 427 | fi |
|
|
| 428 | done |
|
|
| 429 | |
|
|
| 430 | if [[ "${active}" == "1" ]]; then |
|
|
| 431 | elog "${INSTALLPLUGIN} already activated" |
|
|
| 432 | echo |
|
|
| 433 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 434 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 435 | elog "aborted" |
|
|
| 436 | return |
|
|
| 437 | fi |
|
|
| 438 | elog "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 | elog "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 | elog "Using interface introduced with gentoo-vdr-scripts-0.3.7" |
439 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
| 462 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
440 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 463 | INSTALLPLUGIN="${VDRPLUGIN}" |
441 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 464 | fi |
442 | fi |
| 465 | |
443 | |
| 466 | active=0 |
444 | active=0 |
| … | |
… | |
| 494 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
472 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
| 495 | fi |
473 | fi |
| 496 | } |
474 | } |
| 497 | |
475 | |
| 498 | vdr-plugin_pkg_config() { |
476 | vdr-plugin_pkg_config() { |
| 499 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
477 | vdr-plugin_print_enable_command |
| 500 | vdr-plugin_pkg_config_new |
478 | |
| 501 | else |
479 | einfo "Calling this now" |
| 502 | vdr-plugin_pkg_config_old |
480 | eselect vdr-plugin enable "${PN#vdr-}" |
| 503 | fi |
|
|
| 504 | } |
481 | } |
| 505 | |
482 | |
| 506 | fix_vdr_libsi_include() |
483 | fix_vdr_libsi_include() |
| 507 | { |
484 | { |
| 508 | einfo "Fixing include of libsi-headers" |
485 | einfo "Fixing include of libsi-headers" |