| 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.47 2007/08/14 14:47:21 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.54 2008/03/22 18:04:51 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}" |
| 140 | } |
127 | } |
| 141 | |
128 | |
| 142 | |
129 | |
| 143 | create_header_checksum_file() |
130 | create_header_checksum_file() |
| 144 | { |
131 | { |
| 145 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
| 146 | # If vdr in $ROOT and / differ, plugins will not run anyway |
133 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 147 | |
134 | |
| 148 | insinto ${VDR_CHECKSUM_DIR} |
135 | insinto "${VDR_CHECKSUM_DIR}" |
| 149 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 150 | newins ${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
| 151 | else |
138 | else |
| 152 | if type -p md5sum >/dev/null 2>&1; then |
139 | if type -p md5sum >/dev/null 2>&1; then |
| 153 | cd ${S} |
140 | cd "${S}" |
| 154 | ( |
141 | ( |
| 155 | cd ${VDR_INCLUDE_DIR} |
142 | cd "${VDR_INCLUDE_DIR}" |
| 156 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
143 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 157 | ) > header-md5-${PN} |
144 | ) > header-md5-${PN} |
| 158 | doins header-md5-${PN} |
145 | doins header-md5-${PN} |
| 159 | fi |
146 | fi |
| 160 | fi |
147 | fi |
| … | |
… | |
| 175 | # Pathes to includes |
162 | # Pathes to includes |
| 176 | VDR_INCLUDE_DIR="/usr/include/vdr" |
163 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 177 | DVB_INCLUDE_DIR="/usr/include" |
164 | DVB_INCLUDE_DIR="/usr/include" |
| 178 | |
165 | |
| 179 | |
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 | |
| 180 | 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) |
| 181 | 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) |
| 182 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
177 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 183 | |
178 | |
| 184 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
179 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 185 | einfo "APIVERSION: ${APIVERSION}" |
180 | einfo "APIVERSION: ${APIVERSION}" |
| 186 | } |
181 | } |
| … | |
… | |
| 191 | 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." |
| 192 | echo |
187 | echo |
| 193 | eerror "Please report this at bugs.gentoo.org." |
188 | eerror "Please report this at bugs.gentoo.org." |
| 194 | die "vdr-plugin_pkg_setup not called!" |
189 | die "vdr-plugin_pkg_setup not called!" |
| 195 | fi |
190 | fi |
| 196 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
191 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
| 197 | |
192 | |
| 198 | while [ "$1" ]; do |
193 | while [ "$1" ]; do |
| 199 | |
194 | |
| 200 | case "$1" in |
195 | case "$1" in |
| 201 | all_but_unpack) |
196 | all_but_unpack) |
| 202 | vdr-plugin_src_unpack add_local_patch patchmakefile |
197 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
| 203 | ;; |
198 | ;; |
| 204 | unpack) |
199 | unpack) |
| 205 | base_src_unpack |
200 | base_src_unpack |
| 206 | ;; |
201 | ;; |
| 207 | patchmakefile) |
202 | patchmakefile) |
| 208 | if ! cd ${S}; then |
203 | if ! cd "${S}"; then |
| 209 | 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##*/}" |
| 210 | ewarn "Perhaps you find one among these:" |
205 | ewarn "Perhaps you find one among these:" |
| 211 | cd "${WORKDIR}" |
206 | cd "${WORKDIR}" |
| 212 | ewarn "$(/bin/ls -1 ${WORKDIR})" |
207 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
| 213 | die "Could not change to plugin-source-directory!" |
208 | die "Could not change to plugin-source-directory!" |
| 214 | fi |
209 | fi |
| 215 | |
210 | |
| 216 | einfo "Patching Makefile" |
211 | einfo "Patching Makefile" |
| 217 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
212 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| … | |
… | |
| 237 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
232 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 238 | -e '2i\APIVERSION = '"${APIVERSION}" |
233 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 239 | eend $? |
234 | eend $? |
| 240 | |
235 | |
| 241 | ebegin " Correcting Compile-Flags" |
236 | ebegin " Correcting Compile-Flags" |
|
|
237 | # Do not overwrite CXXFLAGS, add LDFLAGS if missing |
| 242 | sed -i Makefile \ |
238 | sed -i Makefile \ |
| 243 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
239 | -e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
| 244 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
240 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
| 245 | eend $? |
241 | eend $? |
| 246 | |
242 | |
| 247 | ebegin " Disabling file stripping" |
243 | ebegin " Disabling file stripping" |
| 248 | sed -i Makefile \ |
244 | sed -i Makefile \ |
| … | |
… | |
| 252 | -e '/@.*\$(STRIP)/d' |
248 | -e '/@.*\$(STRIP)/d' |
| 253 | eend $? |
249 | eend $? |
| 254 | |
250 | |
| 255 | # Use a file instead of an variable as single-stepping via ebuild |
251 | # Use a file instead of an variable as single-stepping via ebuild |
| 256 | # destroys environment. |
252 | # destroys environment. |
| 257 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
253 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
| 258 | ;; |
254 | ;; |
| 259 | add_local_patch) |
255 | add_local_patch) |
| 260 | cd ${S} |
256 | cd "${S}" |
| 261 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
257 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 262 | echo |
258 | echo |
| 263 | einfo "Applying local patches" |
259 | einfo "Applying local patches" |
| 264 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
260 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
| 265 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
261 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 266 | done |
262 | done |
| 267 | fi |
263 | fi |
| 268 | ;; |
264 | ;; |
|
|
265 | i18n) |
|
|
266 | cd "${S}" |
|
|
267 | if [[ ${USE_GETTEXT} = 0 ]]; then |
|
|
268 | # Remove i18n Target if using older vdr |
|
|
269 | sed -i Makefile \ |
|
|
270 | -e '/^all:/s/ i18n//' |
|
|
271 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
|
|
272 | einfo "Plugin is not yet changed for new translation system." |
|
|
273 | einfo "Auto converting translations to gettext" |
|
|
274 | |
|
|
275 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
276 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
277 | eerror "Missing ${i18n_tool}" |
|
|
278 | eerror "Please re-emerge vdr" |
|
|
279 | die "Missing ${i18n_tool}" |
|
|
280 | fi |
|
|
281 | |
|
|
282 | # call i18n-to-gettext tool |
|
|
283 | # take all texts missing tr call into special file |
|
|
284 | "${i18n_tool}" 2>/dev/null \ |
|
|
285 | |sed -e '/^"/!d' \ |
|
|
286 | -e '/^""$/d' \ |
|
|
287 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
288 | > dummy-translations-trNOOP.c |
|
|
289 | |
|
|
290 | # if there were untranslated texts just run it again |
|
|
291 | # now the missing calls are listed in |
|
|
292 | # dummy-translations-trNOOP.c |
|
|
293 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
294 | "${i18n_tool}" &>/dev/null |
|
|
295 | fi |
|
|
296 | |
|
|
297 | # now use the modified Makefile |
|
|
298 | if [[ -f Makefile.new ]]; then |
|
|
299 | mv Makefile.new Makefile |
|
|
300 | else |
|
|
301 | ewarn "Conversion to gettext failed. Plugin needs fixing." |
|
|
302 | fi |
|
|
303 | fi |
| 269 | esac |
304 | esac |
| 270 | |
305 | |
| 271 | shift |
306 | shift |
| 272 | done |
307 | done |
| 273 | } |
308 | } |
| 274 | |
309 | |
| 275 | vdr-plugin_copy_source_tree() { |
310 | vdr-plugin_copy_source_tree() { |
| 276 | pushd . >/dev/null |
311 | pushd . >/dev/null |
| 277 | cp -r ${S} ${T}/source-tree |
312 | cp -r "${S}" "${T}"/source-tree |
| 278 | cd ${T}/source-tree |
313 | cd "${T}"/source-tree |
| 279 | cp "${WORKDIR}"/Makefile.before Makefile |
314 | cp "${WORKDIR}"/Makefile.before Makefile |
| 280 | sed -i Makefile \ |
315 | sed -i Makefile \ |
| 281 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
316 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 282 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
317 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 283 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
318 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| … | |
… | |
| 285 | popd >/dev/null |
320 | popd >/dev/null |
| 286 | } |
321 | } |
| 287 | |
322 | |
| 288 | vdr-plugin_install_source_tree() { |
323 | vdr-plugin_install_source_tree() { |
| 289 | einfo "Installing sources" |
324 | einfo "Installing sources" |
| 290 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
325 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
| 291 | insinto ${destdir}-${PV} |
326 | insinto "${destdir}-${PV}" |
| 292 | doins -r ${T}/source-tree/* |
327 | doins -r "${T}"/source-tree/* |
| 293 | |
328 | |
| 294 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
329 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 295 | } |
330 | } |
| 296 | |
331 | |
| 297 | vdr-plugin_src_compile() { |
332 | vdr-plugin_src_compile() { |
| 298 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
333 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 299 | |
334 | |
| … | |
… | |
| 310 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
345 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
| 311 | echo |
346 | echo |
| 312 | eerror "Please report this at bugs.gentoo.org." |
347 | eerror "Please report this at bugs.gentoo.org." |
| 313 | die "vdr-plugin_src_unpack not called!" |
348 | die "vdr-plugin_src_unpack not called!" |
| 314 | fi |
349 | fi |
| 315 | cd ${S} |
350 | cd "${S}" |
| 316 | |
351 | |
| 317 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
352 | emake ${BUILD_PARAMS} \ |
|
|
353 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
|
|
354 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
355 | || die "emake failed" |
| 318 | ;; |
356 | ;; |
| 319 | esac |
357 | esac |
| 320 | |
358 | |
| 321 | shift |
359 | shift |
| 322 | done |
360 | done |
| … | |
… | |
| 325 | vdr-plugin_src_install() { |
363 | vdr-plugin_src_install() { |
| 326 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
364 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 327 | cd "${WORKDIR}" |
365 | cd "${WORKDIR}" |
| 328 | |
366 | |
| 329 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
367 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 330 | local mname=${P}-Makefile |
368 | local mname="${P}-Makefile" |
| 331 | cp "${S}"/Makefile ${mname}.patched |
369 | cp "${S}"/Makefile "${mname}.patched" |
| 332 | cp Makefile.before ${mname}.before |
370 | cp Makefile.before "${mname}.before" |
| 333 | |
371 | |
| 334 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
372 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
| 335 | |
373 | |
| 336 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
374 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 337 | doins ${mname}.diff |
375 | doins "${mname}.diff" |
| 338 | |
376 | |
| 339 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
377 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 340 | doins ${mname}.before |
378 | doins "${mname}.before" |
| 341 | |
379 | |
| 342 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
380 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 343 | doins ${mname}.patched |
381 | doins "${mname}.patched" |
| 344 | |
382 | |
| 345 | fi |
383 | fi |
| 346 | |
384 | |
| 347 | cd "${S}" |
385 | cd "${S}" |
| 348 | insinto "${VDR_PLUGIN_DIR}" |
386 | insinto "${VDR_PLUGIN_DIR}" |
| 349 | doins libvdr-*.so.* |
387 | doins libvdr-*.so.* |
|
|
388 | |
|
|
389 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
|
|
390 | einfo "Installing locales" |
|
|
391 | cd "${TMP_LOCALE_DIR}" |
|
|
392 | insinto "${LOCDIR}" |
|
|
393 | doins -r * |
|
|
394 | fi |
|
|
395 | |
|
|
396 | cd "${S}" |
| 350 | local docfile |
397 | local docfile |
| 351 | for docfile in README* HISTORY CHANGELOG; do |
398 | for docfile in README* HISTORY CHANGELOG; do |
| 352 | [[ -f ${docfile} ]] && dodoc ${docfile} |
399 | [[ -f ${docfile} ]] && dodoc ${docfile} |
| 353 | done |
400 | done |
| 354 | |
401 | |
| … | |
… | |
| 370 | |
417 | |
| 371 | create_header_checksum_file |
418 | create_header_checksum_file |
| 372 | create_plugindb_file |
419 | create_plugindb_file |
| 373 | } |
420 | } |
| 374 | |
421 | |
|
|
422 | vdr-plugin_print_enable_command() { |
|
|
423 | elog |
|
|
424 | elog "To activate this vdr-plugin execute the following command:" |
|
|
425 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
|
|
426 | elog |
|
|
427 | } |
|
|
428 | |
| 375 | vdr-plugin_pkg_postinst() { |
429 | vdr-plugin_pkg_postinst() { |
| 376 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
430 | vdr-plugin_print_enable_command |
| 377 | update_vdrplugindb |
431 | |
| 378 | fi |
|
|
| 379 | elog |
|
|
| 380 | elog "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
| 381 | elog "To activate execute the following command:" |
|
|
| 382 | elog |
|
|
| 383 | elog " emerge --config ${PN}" |
|
|
| 384 | elog |
|
|
| 385 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
432 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 386 | elog "And have a look at the config-file" |
433 | elog "Please have a look at the config-file" |
| 387 | elog "/etc/conf.d/vdr.${VDRPLUGIN}" |
434 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
| 388 | elog |
435 | elog |
| 389 | fi |
436 | fi |
| 390 | } |
437 | } |
| 391 | |
438 | |
| 392 | vdr-plugin_pkg_postrm() { |
439 | vdr-plugin_pkg_postrm() { |
| 393 | if has_version "<=media-tv/vdrplugin-rebuild-0.1"; then |
|
|
| 394 | remove_vdrplugindb |
|
|
| 395 | fi |
|
|
| 396 | delete_orphan_plugindb_file |
440 | delete_orphan_plugindb_file |
| 397 | } |
441 | } |
| 398 | |
442 | |
| 399 | vdr-plugin_pkg_config_final() { |
|
|
| 400 | diff ${conf_orig} ${conf} |
|
|
| 401 | rm ${conf_orig} |
|
|
| 402 | } |
|
|
| 403 | |
|
|
| 404 | vdr-plugin_pkg_config_old() { |
443 | vdr-plugin_pkg_config_legacy() { |
| 405 | elog "Using interface of gentoo-vdr-scripts-0.3.6 and older" |
|
|
| 406 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
| 407 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
| 408 | fi |
|
|
| 409 | # First test if plugin is already inside PLUGINS |
|
|
| 410 | local conf=/etc/conf.d/vdr |
|
|
| 411 | conf_orig=${conf}.before_emerge_config |
|
|
| 412 | cp ${conf} ${conf_orig} |
|
|
| 413 | |
|
|
| 414 | elog "Reading ${conf}" |
|
|
| 415 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
| 416 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
| 417 | if [[ -n "${LINE}" ]]; then |
|
|
| 418 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
| 419 | else |
|
|
| 420 | echo 'PLUGINS=""' >> ${conf} |
|
|
| 421 | fi |
|
|
| 422 | unset LINE |
|
|
| 423 | fi |
|
|
| 424 | |
|
|
| 425 | unset PLUGINS |
|
|
| 426 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
| 427 | |
|
|
| 428 | active=0 |
|
|
| 429 | for p in ${PLUGINS}; do |
|
|
| 430 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
| 431 | active=1 |
|
|
| 432 | break; |
|
|
| 433 | fi |
|
|
| 434 | done |
|
|
| 435 | |
|
|
| 436 | if [[ "${active}" == "1" ]]; then |
|
|
| 437 | elog "${INSTALLPLUGIN} already activated" |
|
|
| 438 | echo |
|
|
| 439 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
| 440 | if [[ "${answer}" != "yes" ]]; then |
|
|
| 441 | elog "aborted" |
|
|
| 442 | return |
|
|
| 443 | fi |
|
|
| 444 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
| 445 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
| 446 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
| 447 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 448 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 449 | -e ${LINE}'s/" /"/g' |
|
|
| 450 | |
|
|
| 451 | vdr-plugin_pkg_config_final |
|
|
| 452 | return |
|
|
| 453 | fi |
|
|
| 454 | |
|
|
| 455 | |
|
|
| 456 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 457 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
| 458 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
| 459 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 460 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 461 | -e ${LINE}'s/" /"/g' |
|
|
| 462 | |
|
|
| 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" |
444 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
| 468 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
445 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 469 | INSTALLPLUGIN="${VDRPLUGIN}" |
446 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 470 | fi |
447 | fi |
| 471 | |
448 | |
| 472 | active=0 |
449 | active=0 |
| … | |
… | |
| 500 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
477 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
| 501 | fi |
478 | fi |
| 502 | } |
479 | } |
| 503 | |
480 | |
| 504 | vdr-plugin_pkg_config() { |
481 | vdr-plugin_pkg_config() { |
| 505 | if has_version ">media-tv/gentoo-vdr-scripts-0.3.6"; then |
482 | ewarn "emerge --config ${PN} is no longer supported" |
| 506 | vdr-plugin_pkg_config_new |
483 | vdr-plugin_print_enable_command |
| 507 | else |
|
|
| 508 | vdr-plugin_pkg_config_old |
|
|
| 509 | fi |
|
|
| 510 | } |
484 | } |
| 511 | |
485 | |
| 512 | fix_vdr_libsi_include() |
486 | fix_vdr_libsi_include() |
| 513 | { |
487 | { |
| 514 | einfo "Fixing include of libsi-headers" |
488 | einfo "Fixing include of libsi-headers" |