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/Attic/vdr-plugin.eclass,v 1.35 2006/10/08 13:11:28 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/vdr-plugin.eclass,v 1.65 2008/07/03 11:18:13 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 | |
… | |
… | |
58 | # all patches which ending on diff or patch in this DIR will automatically applied |
58 | # all patches which ending on diff or patch in this DIR will automatically applied |
59 | # |
59 | # |
60 | |
60 | |
61 | inherit base multilib eutils flag-o-matic |
61 | inherit base multilib eutils flag-o-matic |
62 | |
62 | |
63 | IUSE="debug" |
63 | IUSE="" |
64 | |
64 | |
65 | # 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 |
66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
67 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
67 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
68 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
68 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
… | |
… | |
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 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
|
|
77 | |
|
|
78 | DEPEND="${COMMON_DEPEND} |
77 | DEPEND="media-tv/linuxtv-dvb-headers" |
79 | media-tv/linuxtv-dvb-headers" |
|
|
80 | RDEPEND="${COMMON_DEPEND} |
|
|
81 | >=app-admin/eselect-vdr-0.0.2" |
78 | |
82 | |
79 | |
83 | # New method of storing plugindb |
80 | # this code is from linux-mod.eclass |
84 | # Called from src_install |
81 | update_vdrplugindb() { |
85 | # file maintained by normal portage-methods |
|
|
86 | create_plugindb_file() { |
82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
87 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
88 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
89 | insinto "${NEW_VDRPLUGINDB_DIR}" |
83 | |
90 | |
84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
91 | # BUG: portage-2.1.4_rc9 will delete the EBUILD= line, so we cannot use this code. |
85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
92 | # cat <<-EOT > "${D}/${DB_FILE}" |
86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
93 | # VDRPLUGIN_DB=1 |
|
|
94 | # CREATOR=ECLASS |
|
|
95 | # EBUILD=${CATEGORY}/${PN} |
|
|
96 | # EBUILD_V=${PVR} |
|
|
97 | # EOT |
|
|
98 | { |
|
|
99 | echo "VDRPLUGIN_DB=1" |
|
|
100 | echo "CREATOR=ECLASS" |
|
|
101 | echo "EBUILD=${CATEGORY}/${PN}" |
|
|
102 | echo "EBUILD_V=${PVR}" |
|
|
103 | echo "PLUGINS=\"$@\"" |
|
|
104 | } > "${D}/${DB_FILE}" |
|
|
105 | } |
|
|
106 | |
|
|
107 | # Delete files created outside of vdr-plugin.eclass |
|
|
108 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
|
|
109 | # not deleted by portage itself - should only be needed as |
|
|
110 | # long as not every system has switched over to |
|
|
111 | # vdrplugin-rebuild-0.2 / gentoo-vdr-scripts-0.4.2 |
|
|
112 | delete_orphan_plugindb_file() { |
|
|
113 | #elog Testing for orphaned plugindb file |
|
|
114 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
115 | local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
116 | |
|
|
117 | # file exists |
|
|
118 | [[ -f ${DB_FILE} ]] || return |
|
|
119 | |
|
|
120 | # will portage handle the file itself |
|
|
121 | if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
|
|
122 | #elog file owned by eclass - don't touch it |
|
|
123 | return |
|
|
124 | fi |
|
|
125 | |
|
|
126 | elog "Removing orphaned plugindb-file." |
|
|
127 | elog "\t#rm ${DB_FILE}" |
|
|
128 | rm "${DB_FILE}" |
|
|
129 | } |
|
|
130 | |
|
|
131 | |
|
|
132 | create_header_checksum_file() |
|
|
133 | { |
|
|
134 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
135 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
136 | |
|
|
137 | local CHKSUM="header-md5-vdr" |
|
|
138 | |
|
|
139 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
140 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
141 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
142 | ( |
|
|
143 | cd "${VDR_INCLUDE_DIR}" |
|
|
144 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
145 | ) > "${CHKSUM}" |
|
|
146 | else |
|
|
147 | die "Could not create md5 checksum of headers" |
|
|
148 | fi |
|
|
149 | |
|
|
150 | insinto "${VDR_CHECKSUM_DIR}" |
|
|
151 | local p_name |
|
|
152 | for p_name; do |
|
|
153 | newins "${CHKSUM}" "header-md5-${p_name}" |
|
|
154 | done |
|
|
155 | } |
|
|
156 | |
|
|
157 | fix_vdr_libsi_include() |
|
|
158 | { |
|
|
159 | einfo "Fixing include of libsi-headers" |
|
|
160 | local f |
|
|
161 | for f; do |
|
|
162 | sed -i "${f}" \ |
|
|
163 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
164 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
165 | done |
|
|
166 | } |
|
|
167 | |
|
|
168 | vdr_patchmakefile() { |
|
|
169 | einfo "Patching Makefile" |
|
|
170 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
171 | cp Makefile "${WORKDIR}"/Makefile.before |
|
|
172 | |
|
|
173 | # plugin makefiles use VDRDIR in strange ways |
|
|
174 | # assumptions: |
|
|
175 | # 1. $(VDRDIR) contains Make.config |
|
|
176 | # 2. $(VDRDIR) contains config.h |
|
|
177 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
178 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
179 | # 5. $(VDRDIR)/locale exists |
|
|
180 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
181 | # |
|
|
182 | # We only have one directory (for now /usr/include/vdr), |
|
|
183 | # that contains vdr-headers and Make.config. |
|
|
184 | # To satisfy 1-3 we do this: |
|
|
185 | # Set VDRDIR=/usr/include/vdr |
|
|
186 | # Set VDRINCDIR=/usr/include |
|
|
187 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
188 | |
|
|
189 | ebegin " Setting paths" |
|
|
190 | sed -i Makefile \ |
|
|
191 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
192 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
|
|
193 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
|
|
194 | \ |
|
|
195 | -e 's:-I$(DVBDIR)/include::' \ |
|
|
196 | -e 's:-I$(DVBDIR)::' |
|
|
197 | eend 0 |
|
|
198 | |
|
|
199 | # maybe needed for multiproto: |
|
|
200 | #sed -i Makefile \ |
|
|
201 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
202 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
203 | |
|
|
204 | if ! grep -q APIVERSION Makefile; then |
|
|
205 | ebegin " Converting to APIVERSION" |
|
|
206 | sed -i Makefile \ |
|
|
207 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
208 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
209 | -e '/VDRVERSION =/a\APIVERSION = $(shell sed -ne '"'"'/define APIVERSION/s/^.*"\\(.*\\)".*$$/\\1/p'"'"' $(VDRDIR)/config.h)' |
|
|
210 | eend $? |
|
|
211 | fi |
|
|
212 | |
|
|
213 | # Correcting Compile-Flags |
|
|
214 | # Do not overwrite CXXFLAGS, add LDFLAGS if missing |
|
|
215 | sed -i Makefile \ |
|
|
216 | -e '/^CXXFLAGS[[:space:]]*=/s/=/?=/' \ |
|
|
217 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
|
|
218 | |
|
|
219 | # Disabling file stripping, useful for debugging |
|
|
220 | sed -i Makefile \ |
|
|
221 | -e '/@.*strip/d' \ |
|
|
222 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
223 | -e '/@.*\$(STRIP)/d' |
|
|
224 | |
|
|
225 | # Use a file instead of a variable as single-stepping via ebuild |
|
|
226 | # destroys environment. |
|
|
227 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
|
|
228 | } |
|
|
229 | |
|
|
230 | vdr_add_local_patch() { |
|
|
231 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
232 | echo |
|
|
233 | einfo "Applying local patches" |
|
|
234 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
|
|
235 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
236 | done |
|
|
237 | fi |
|
|
238 | } |
|
|
239 | |
|
|
240 | vdr_has_gettext() { |
|
|
241 | has_version ">=media-video/vdr-1.5.7" |
|
|
242 | } |
|
|
243 | |
|
|
244 | plugin_has_gettext() { |
|
|
245 | [[ -d po ]] |
|
|
246 | } |
|
|
247 | |
|
|
248 | vdr_i18n_convert_to_gettext() { |
|
|
249 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
250 | |
|
|
251 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
252 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
253 | return 1 |
|
|
254 | fi |
|
|
255 | |
|
|
256 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
257 | eerror "Missing ${i18n_tool}" |
|
|
258 | eerror "Please re-emerge vdr" |
|
|
259 | die "Missing ${i18n_tool}" |
|
|
260 | fi |
|
|
261 | |
|
|
262 | ebegin "Auto converting translations to gettext" |
|
|
263 | # call i18n-to-gettext tool |
|
|
264 | # take all texts missing tr call into special file |
|
|
265 | "${i18n_tool}" 2>/dev/null \ |
|
|
266 | |sed -e '/^"/!d' \ |
|
|
267 | -e '/^""$/d' \ |
|
|
268 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
269 | > dummy-translations-trNOOP.c |
|
|
270 | |
|
|
271 | # if there were untranslated texts just run it again |
|
|
272 | # now the missing calls are listed in |
|
|
273 | # dummy-translations-trNOOP.c |
|
|
274 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
275 | "${i18n_tool}" &>/dev/null |
|
|
276 | fi |
|
|
277 | |
|
|
278 | # now use the modified Makefile |
|
|
279 | if [[ -f Makefile.new ]]; then |
|
|
280 | mv Makefile.new Makefile |
|
|
281 | eend 0 "" |
|
|
282 | else |
|
|
283 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
|
|
284 | return 1 |
|
|
285 | fi |
|
|
286 | } |
|
|
287 | |
|
|
288 | vdr_i18n_disable_gettext() { |
|
|
289 | ebegin "Disabling gettext support in plugin" |
|
|
290 | # Remove i18n Target if using older vdr |
|
|
291 | sed -i Makefile \ |
|
|
292 | -e '/^all:/s/ i18n//' |
|
|
293 | eend 0 |
|
|
294 | } |
|
|
295 | |
|
|
296 | vdr_i18n() { |
|
|
297 | if vdr_has_gettext; then |
|
|
298 | einfo "VDR has gettext support" |
|
|
299 | if plugin_has_gettext; then |
|
|
300 | einfo "Plugin has gettext support, fine" |
|
|
301 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
302 | ewarn "Please remove left over NO_GETTEXT_HACK." |
|
|
303 | fi |
|
|
304 | else |
|
|
305 | vdr_i18n_convert_to_gettext |
|
|
306 | if [[ $? != 0 ]]; then |
|
|
307 | eerror "" |
|
|
308 | eerror "Plugin will have only english OSD texts" |
|
|
309 | eerror "it needs manual fixing." |
|
|
310 | fi |
87 | fi |
311 | fi |
88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
312 | else |
89 | einfo "Adding plugin to vdrplugindb." |
313 | einfo "VDR has no gettext support" |
90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
314 | if plugin_has_gettext; then |
|
|
315 | vdr_i18n_disable_gettext |
91 | fi |
316 | 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 |
317 | fi |
101 | } |
318 | } |
|
|
319 | |
|
|
320 | vdr-plugin_copy_source_tree() { |
|
|
321 | pushd . >/dev/null |
|
|
322 | cp -r "${S}" "${T}"/source-tree |
|
|
323 | cd "${T}"/source-tree |
|
|
324 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
325 | # TODO: Fix this, maybe no longer needed |
|
|
326 | sed -i Makefile \ |
|
|
327 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
328 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
329 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
330 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
331 | popd >/dev/null |
|
|
332 | } |
|
|
333 | |
|
|
334 | vdr-plugin_install_source_tree() { |
|
|
335 | einfo "Installing sources" |
|
|
336 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
|
|
337 | insinto "${destdir}-${PV}" |
|
|
338 | doins -r "${T}"/source-tree/* |
|
|
339 | |
|
|
340 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
|
|
341 | } |
|
|
342 | |
|
|
343 | vdr-plugin_print_enable_command() { |
|
|
344 | local p_name c=0 l="" |
|
|
345 | for p_name in ${vdr_plugin_list}; do |
|
|
346 | c=$(( c+1 )) |
|
|
347 | l="$l ${p_name#vdr-}" |
|
|
348 | done |
|
|
349 | |
|
|
350 | elog |
|
|
351 | case $c in |
|
|
352 | 1) elog "Installed plugin${l}" ;; |
|
|
353 | *) elog "Installed $c plugins:${l}" ;; |
|
|
354 | esac |
|
|
355 | elog "To activate a plugin execute this command:" |
|
|
356 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
|
|
357 | elog |
|
|
358 | } |
|
|
359 | |
|
|
360 | |
|
|
361 | ## exported functions |
102 | |
362 | |
103 | vdr-plugin_pkg_setup() { |
363 | vdr-plugin_pkg_setup() { |
104 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
364 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
105 | append-flags -fPIC |
365 | append-flags -fPIC |
106 | use debug && append-flags -g |
|
|
107 | |
366 | |
108 | # Where should the plugins live in the filesystem |
367 | # Where should the plugins live in the filesystem |
109 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
368 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
110 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
369 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
111 | |
370 | |
… | |
… | |
115 | |
374 | |
116 | # Pathes to includes |
375 | # Pathes to includes |
117 | VDR_INCLUDE_DIR="/usr/include/vdr" |
376 | VDR_INCLUDE_DIR="/usr/include/vdr" |
118 | DVB_INCLUDE_DIR="/usr/include" |
377 | DVB_INCLUDE_DIR="/usr/include" |
119 | |
378 | |
|
|
379 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
380 | LOCDIR="/usr/share/vdr/locale" |
120 | |
381 | |
121 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
382 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
122 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
383 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
123 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
384 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
124 | |
385 | |
125 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
386 | einfo "Compiling against" |
126 | einfo "APIVERSION: ${APIVERSION}" |
387 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
127 | } |
388 | } |
128 | |
389 | |
129 | vdr-plugin_src_unpack() { |
390 | vdr-plugin_src_unpack() { |
130 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
391 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
131 | eerror "Wrong use of vdr-plugin.eclass." |
392 | eerror "Wrong use of vdr-plugin.eclass." |
132 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
393 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
133 | echo |
394 | echo |
134 | eerror "Please report this at bugs.gentoo.org." |
395 | eerror "Please report this at bugs.gentoo.org." |
135 | die "vdr-plugin_pkg_setup not called!" |
396 | die "vdr-plugin_pkg_setup not called!" |
136 | fi |
397 | fi |
137 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
398 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
138 | |
399 | |
139 | while [ "$1" ]; do |
400 | while [ "$1" ]; do |
140 | |
401 | |
141 | case "$1" in |
402 | case "$1" in |
142 | all_but_unpack) |
403 | all_but_unpack) |
143 | vdr-plugin_src_unpack add_local_patch patchmakefile |
404 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
144 | ;; |
405 | ;; |
145 | unpack) |
406 | unpack) |
146 | base_src_unpack |
407 | base_src_unpack |
147 | ;; |
408 | ;; |
|
|
409 | add_local_patch) |
|
|
410 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
411 | vdr_add_local_patch |
|
|
412 | ;; |
148 | patchmakefile) |
413 | patchmakefile) |
149 | if ! cd ${S}; then |
|
|
150 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
151 | ewarn "Perhaps you find one among these:" |
|
|
152 | cd "${WORKDIR}" |
|
|
153 | einfo "$(/bin/ls -1 ${WORKDIR})" |
|
|
154 | die "Could not change to plugin-source-directory!" |
414 | cd "${S}" || die "Could not change to plugin-source-directory!" |
155 | fi |
415 | vdr_patchmakefile |
156 | |
|
|
157 | einfo "Patching Makefile" |
|
|
158 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
159 | cp Makefile Makefile.orig |
|
|
160 | |
|
|
161 | sed -i Makefile \ |
|
|
162 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
163 | |
|
|
164 | ebegin " Setting Pathes" |
|
|
165 | sed -i Makefile \ |
|
|
166 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
|
|
167 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
168 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
|
|
169 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
170 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
|
|
171 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
|
|
172 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
|
|
173 | eend $? |
|
|
174 | |
|
|
175 | ebegin " Converting to APIVERSION" |
|
|
176 | sed -i Makefile \ |
|
|
177 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
178 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
179 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
180 | eend $? |
|
|
181 | |
|
|
182 | ebegin " Correcting CXXFLAGS" |
|
|
183 | sed -i Makefile \ |
|
|
184 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
185 | eend $? |
|
|
186 | |
|
|
187 | ebegin " Disabling file stripping" |
|
|
188 | sed -i Makefile \ |
|
|
189 | -e '/@.*strip/d' \ |
|
|
190 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
191 | -e '/^STRIP =/d' \ |
|
|
192 | -e '/@.*\$(STRIP)/d' |
|
|
193 | eend $? |
|
|
194 | |
|
|
195 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
196 | # destroys environment. |
|
|
197 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
198 | ;; |
416 | ;; |
199 | add_local_patch) |
417 | i18n) |
200 | cd ${S} |
418 | cd "${S}" || die "Could not change to plugin-source-directory!" |
201 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
419 | vdr_i18n |
202 | echo |
|
|
203 | einfo "Applying local patches" |
|
|
204 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
205 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
206 | done |
|
|
207 | fi |
|
|
208 | ;; |
420 | ;; |
209 | esac |
421 | esac |
210 | |
422 | |
211 | shift |
423 | shift |
212 | done |
424 | done |
213 | } |
|
|
214 | |
|
|
215 | vdr-plugin_copy_source_tree() { |
|
|
216 | pushd . >/dev/null |
|
|
217 | cp -r ${S} ${T}/source-tree |
|
|
218 | cd ${T}/source-tree |
|
|
219 | mv Makefile.orig Makefile |
|
|
220 | sed -i Makefile \ |
|
|
221 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
222 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
223 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
224 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
225 | popd >/dev/null |
|
|
226 | } |
|
|
227 | |
|
|
228 | vdr-plugin_install_source_tree() { |
|
|
229 | einfo "Installing sources" |
|
|
230 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
|
|
231 | insinto ${destdir}-${PV} |
|
|
232 | doins -r ${T}/source-tree/* |
|
|
233 | |
|
|
234 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
|
|
235 | } |
425 | } |
236 | |
426 | |
237 | vdr-plugin_src_compile() { |
427 | vdr-plugin_src_compile() { |
238 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
428 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
239 | |
429 | |
… | |
… | |
250 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
440 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
251 | echo |
441 | echo |
252 | eerror "Please report this at bugs.gentoo.org." |
442 | eerror "Please report this at bugs.gentoo.org." |
253 | die "vdr-plugin_src_unpack not called!" |
443 | die "vdr-plugin_src_unpack not called!" |
254 | fi |
444 | fi |
255 | cd ${S} |
445 | cd "${S}" |
256 | |
446 | |
257 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
447 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
448 | |
|
|
449 | emake ${BUILD_PARAMS} \ |
|
|
450 | ${BUILD_TARGETS} \ |
|
|
451 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
452 | LIBDIR="${S}" \ |
|
|
453 | TMPDIR="${T}" \ |
|
|
454 | || die "emake failed" |
258 | ;; |
455 | ;; |
259 | esac |
456 | esac |
260 | |
457 | |
261 | shift |
458 | shift |
262 | done |
459 | done |
263 | } |
460 | } |
264 | |
461 | |
265 | vdr-plugin_src_install() { |
462 | vdr-plugin_src_install() { |
266 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
463 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
267 | cd ${S} |
464 | cd "${WORKDIR}" |
268 | |
465 | |
269 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
466 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
270 | local mname=${P}-Makefile |
467 | local mname="${P}-Makefile" |
271 | cp Makefile ${mname}.patched |
468 | cp "${S}"/Makefile "${mname}.patched" |
272 | cp Makefile.orig ${mname}.before |
469 | cp Makefile.before "${mname}.before" |
273 | |
470 | |
274 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
471 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
275 | |
472 | |
276 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
473 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
277 | doins ${mname}.diff |
474 | doins "${mname}.diff" |
278 | |
475 | |
279 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
476 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
280 | doins ${mname}.before |
477 | doins "${mname}.before" |
281 | |
478 | |
282 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
479 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
283 | doins ${mname}.patched |
480 | doins "${mname}.patched" |
284 | |
481 | |
285 | fi |
482 | fi |
286 | |
483 | |
|
|
484 | |
|
|
485 | |
|
|
486 | cd "${S}" |
287 | insinto "${VDR_PLUGIN_DIR}" |
487 | insinto "${VDR_PLUGIN_DIR}" |
288 | doins libvdr-*.so.* |
488 | doins libvdr-*.so.* |
|
|
489 | |
|
|
490 | # create list of all created plugin libs |
|
|
491 | vdr_plugin_list="" |
|
|
492 | local p_name |
|
|
493 | for p in libvdr-*.so.*; do |
|
|
494 | p_name="${p%.so*}" |
|
|
495 | p_name="${p_name#lib}" |
|
|
496 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
497 | done |
|
|
498 | |
|
|
499 | create_header_checksum_file ${vdr_plugin_list} |
|
|
500 | create_plugindb_file ${vdr_plugin_list} |
|
|
501 | |
|
|
502 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
|
|
503 | einfo "Installing locales" |
|
|
504 | cd "${TMP_LOCALE_DIR}" |
|
|
505 | insinto "${LOCDIR}" |
|
|
506 | doins -r * |
|
|
507 | fi |
|
|
508 | |
|
|
509 | cd "${S}" |
289 | local docfile |
510 | local docfile |
290 | for docfile in README* HISTORY CHANGELOG; do |
511 | for docfile in README* HISTORY CHANGELOG; do |
291 | [[ -f ${docfile} ]] && dodoc ${docfile} |
512 | [[ -f ${docfile} ]] && dodoc ${docfile} |
292 | done |
513 | done |
293 | |
514 | |
294 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
515 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
295 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
516 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
296 | |
517 | |
297 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
518 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
298 | insinto /etc/conf.d |
|
|
299 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
519 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
300 | fi |
520 | fi |
301 | |
521 | |
302 | |
522 | |
303 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
523 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
304 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
524 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
305 | |
525 | |
306 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
526 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
307 | insinto "${VDR_RC_DIR}" |
527 | insinto "${VDR_RC_DIR}" |
308 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
528 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
309 | fi |
529 | fi |
310 | |
|
|
311 | |
|
|
312 | |
|
|
313 | insinto ${VDR_CHECKSUM_DIR} |
|
|
314 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
315 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
|
|
316 | else |
|
|
317 | if which md5sum >/dev/null 2>&1; then |
|
|
318 | cd ${S} |
|
|
319 | ( |
|
|
320 | cd ${ROOT}${VDR_INCLUDE_DIR} |
|
|
321 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
322 | ) > header-md5-${PN} |
|
|
323 | doins header-md5-${PN} |
|
|
324 | fi |
|
|
325 | fi |
|
|
326 | } |
530 | } |
327 | |
531 | |
328 | vdr-plugin_pkg_postinst() { |
532 | vdr-plugin_pkg_postinst() { |
329 | update_vdrplugindb |
533 | vdr-plugin_print_enable_command |
330 | einfo |
534 | |
331 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
332 | einfo "To activate execute the following command:" |
|
|
333 | einfo |
|
|
334 | einfo " emerge --config ${PN}" |
|
|
335 | einfo |
|
|
336 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
535 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
337 | einfo "And have a look at the config-file" |
536 | elog "Please have a look at the config-file" |
338 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
537 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
339 | einfo |
538 | elog |
340 | fi |
539 | fi |
341 | } |
540 | } |
342 | |
541 | |
343 | vdr-plugin_pkg_postrm() { |
542 | vdr-plugin_pkg_postrm() { |
344 | remove_vdrplugindb |
543 | delete_orphan_plugindb_file |
345 | } |
|
|
346 | |
|
|
347 | vdr-plugin_pkg_config_final() { |
|
|
348 | diff ${conf_orig} ${conf} |
|
|
349 | rm ${conf_orig} |
|
|
350 | } |
544 | } |
351 | |
545 | |
352 | vdr-plugin_pkg_config() { |
546 | vdr-plugin_pkg_config() { |
353 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
547 | ewarn "emerge --config ${PN} is no longer supported" |
354 | INSTALLPLUGIN="${VDRPLUGIN}" |
548 | vdr-plugin_print_enable_command |
355 | fi |
|
|
356 | # First test if plugin is already inside PLUGINS |
|
|
357 | local conf=/etc/conf.d/vdr |
|
|
358 | conf_orig=${conf}.before_emerge_config |
|
|
359 | cp ${conf} ${conf_orig} |
|
|
360 | |
|
|
361 | einfo "Reading ${conf}" |
|
|
362 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
363 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
364 | if [[ -n "${LINE}" ]]; then |
|
|
365 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
366 | else |
|
|
367 | echo 'PLUGINS=""' >> ${conf} |
|
|
368 | fi |
|
|
369 | unset LINE |
|
|
370 | fi |
|
|
371 | |
|
|
372 | unset PLUGINS |
|
|
373 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
374 | |
|
|
375 | active=0 |
|
|
376 | for p in ${PLUGINS}; do |
|
|
377 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
378 | active=1 |
|
|
379 | break; |
|
|
380 | fi |
|
|
381 | done |
|
|
382 | |
|
|
383 | if [[ "${active}" == "1" ]]; then |
|
|
384 | einfo "${INSTALLPLUGIN} already activated" |
|
|
385 | echo |
|
|
386 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
387 | if [[ "${answer}" != "yes" ]]; then |
|
|
388 | einfo "aborted" |
|
|
389 | return |
|
|
390 | fi |
|
|
391 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
392 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
393 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
394 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
395 | -e ${LINE}'s/ "/"/g' \ |
|
|
396 | -e ${LINE}'s/" /"/g' |
|
|
397 | |
|
|
398 | vdr-plugin_pkg_config_final |
|
|
399 | return |
|
|
400 | fi |
|
|
401 | |
|
|
402 | |
|
|
403 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
404 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
405 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
406 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
407 | -e ${LINE}'s/ "/"/g' \ |
|
|
408 | -e ${LINE}'s/" /"/g' |
|
|
409 | |
|
|
410 | vdr-plugin_pkg_config_final |
|
|
411 | } |
|
|
412 | |
|
|
413 | fix_vdr_libsi_include() |
|
|
414 | { |
|
|
415 | einfo "Fixing include of libsi-headers" |
|
|
416 | local f |
|
|
417 | for f; do |
|
|
418 | sed -i "${f}" \ |
|
|
419 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
420 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
421 | done |
|
|
422 | } |
549 | } |
423 | |
550 | |
424 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
551 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |