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