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