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