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