1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/vdr-plugin.eclass,v 1.4 2005/08/22 16:20:30 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/Attic/vdr-plugin.eclass,v 1.74 2011/08/29 01:28:10 vapier 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 | |
27 | # There are some special files in ${FILESDIR} which get installed when |
29 | # For patching you should modify src_prepare phase: |
28 | # they exist: |
30 | # |
|
|
31 | # src_prepare() { |
|
|
32 | # epatch "${FILESDIR}"/${P}-xxx.patch |
|
|
33 | # vdr-plugin_src_prepare |
|
|
34 | # } |
29 | |
35 | |
30 | # ${FILESDIR}/confd-${PV} or ${FILESDIR}/confd: |
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 | |
31 | # The first matching is installed under /etc/conf.d/vdr.${VDRPLUGIN} |
41 | # Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
32 | # (in example vdr-femon this would be /etc/conf.d/vdr.femon) |
42 | # 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 | |
43 | |
37 | |
44 | |
38 | # ${FILESDIR}/rc-addon-${PV}.sh or ${FILESDIR}/rc-addon.sh: |
45 | # Installation of an rc-addon file for the plugin |
39 | # The first matching is installed under /usr/lib/vdr/rcscript/vdr.${VDRPLUGIN}.sh |
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 |
40 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/vdr.femon.sh) |
51 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
41 | # |
52 | # |
42 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
53 | # 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 |
54 | # 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. |
55 | # plugin command line options from a nicer version of a conf.d file. |
45 | |
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 | |
46 | 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="" |
47 | |
76 | |
48 | # 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 |
49 | VDRPLUGIN="${PN/#vdrplugin-/}" |
78 | VDRPLUGIN="${PN/#vdrplugin-/}" |
50 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
79 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
51 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
80 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
… | |
… | |
54 | |
83 | |
55 | # works in most cases |
84 | # works in most cases |
56 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
85 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
57 | |
86 | |
58 | # depend on headers for DVB-driver |
87 | # depend on headers for DVB-driver |
59 | RDEPEND="" |
88 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
60 | DEPEND="|| ( |
89 | |
61 | >=sys-kernel/linux-headers-2.6.11-r2 |
90 | DEPEND="${COMMON_DEPEND} |
62 | media-tv/linuxtv-dvb |
91 | media-tv/linuxtv-dvb-headers" |
63 | )" |
92 | RDEPEND="${COMMON_DEPEND} |
|
|
93 | >=app-admin/eselect-vdr-0.0.2" |
64 | |
94 | |
65 | # Where should the plugins live in the filesystem |
95 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
66 | 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 |
67 | |
103 | |
68 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
104 | # New method of storing plugindb |
69 | |
105 | # Called from src_install |
70 | # Pathes to includes |
106 | # file maintained by normal portage-methods |
71 | VDR_INCLUDE_DIR="/usr/include" |
107 | 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/ |
108 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
109 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
110 | insinto "${NEW_VDRPLUGINDB_DIR}" |
78 | |
111 | |
79 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
112 | # 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} |
113 | # cat <<-EOT > "${D}/${DB_FILE}" |
81 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
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 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
269 | |
|
|
270 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
271 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
272 | return 1 |
|
|
273 | fi |
|
|
274 | |
|
|
275 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
276 | eerror "Missing ${i18n_tool}" |
|
|
277 | eerror "Please re-emerge vdr" |
|
|
278 | die "Missing ${i18n_tool}" |
|
|
279 | fi |
|
|
280 | |
|
|
281 | ebegin "Auto converting translations to gettext" |
|
|
282 | # call i18n-to-gettext tool |
|
|
283 | # take all texts missing tr call into special file |
|
|
284 | "${i18n_tool}" 2>/dev/null \ |
|
|
285 | |sed -e '/^"/!d' \ |
|
|
286 | -e '/^""$/d' \ |
|
|
287 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
288 | > dummy-translations-trNOOP.c |
|
|
289 | |
|
|
290 | # if there were untranslated texts just run it again |
|
|
291 | # now the missing calls are listed in |
|
|
292 | # dummy-translations-trNOOP.c |
|
|
293 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
294 | "${i18n_tool}" &>/dev/null |
|
|
295 | fi |
|
|
296 | |
|
|
297 | # now use the modified Makefile |
|
|
298 | if [[ -f Makefile.new ]]; then |
|
|
299 | mv Makefile.new Makefile |
|
|
300 | eend 0 "" |
|
|
301 | else |
|
|
302 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
|
|
303 | return 1 |
|
|
304 | fi |
|
|
305 | } |
|
|
306 | |
|
|
307 | vdr_i18n_disable_gettext() { |
|
|
308 | #einfo "Disabling gettext support in plugin" |
|
|
309 | |
|
|
310 | # Remove i18n Target if using older vdr |
|
|
311 | sed -i Makefile \ |
|
|
312 | -e '/^all:/s/ i18n//' |
|
|
313 | } |
|
|
314 | |
|
|
315 | vdr_i18n() { |
|
|
316 | if vdr_has_gettext; then |
|
|
317 | #einfo "VDR has gettext support" |
|
|
318 | if plugin_has_gettext; then |
|
|
319 | #einfo "Plugin has gettext support, fine" |
|
|
320 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
321 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
|
|
322 | fi |
|
|
323 | else |
|
|
324 | vdr_i18n_convert_to_gettext |
|
|
325 | if [[ $? != 0 ]]; then |
|
|
326 | eerror "" |
|
|
327 | eerror "Plugin will have only english OSD texts" |
|
|
328 | eerror "it needs manual fixing." |
|
|
329 | fi |
82 | fi |
330 | fi |
83 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
331 | else |
84 | einfo "Adding plugin to vdrplugindb." |
332 | #einfo "VDR has no gettext support" |
85 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
333 | if plugin_has_gettext; then |
|
|
334 | vdr_i18n_disable_gettext |
86 | fi |
335 | 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 |
336 | fi |
96 | } |
337 | } |
|
|
338 | |
|
|
339 | vdr-plugin_copy_source_tree() { |
|
|
340 | pushd . >/dev/null |
|
|
341 | cp -r "${S}" "${T}"/source-tree |
|
|
342 | cd "${T}"/source-tree |
|
|
343 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
344 | # TODO: Fix this, maybe no longer needed |
|
|
345 | sed -i Makefile \ |
|
|
346 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
347 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
348 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
349 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
350 | popd >/dev/null |
|
|
351 | } |
|
|
352 | |
|
|
353 | vdr-plugin_install_source_tree() { |
|
|
354 | einfo "Installing sources" |
|
|
355 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
|
|
356 | insinto "${destdir}-${PV}" |
|
|
357 | doins -r "${T}"/source-tree/* |
|
|
358 | |
|
|
359 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
|
|
360 | } |
|
|
361 | |
|
|
362 | vdr-plugin_print_enable_command() { |
|
|
363 | local p_name c=0 l="" |
|
|
364 | for p_name in ${vdr_plugin_list}; do |
|
|
365 | c=$(( c+1 )) |
|
|
366 | l="$l ${p_name#vdr-}" |
|
|
367 | done |
|
|
368 | |
|
|
369 | elog |
|
|
370 | case $c in |
|
|
371 | 1) elog "Installed plugin${l}" ;; |
|
|
372 | *) elog "Installed $c plugins:${l}" ;; |
|
|
373 | esac |
|
|
374 | elog "To activate a plugin execute this command:" |
|
|
375 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
|
|
376 | elog |
|
|
377 | } |
|
|
378 | |
|
|
379 | has_vdr() { |
|
|
380 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
381 | } |
|
|
382 | |
|
|
383 | ## exported functions |
97 | |
384 | |
98 | vdr-plugin_pkg_setup() { |
385 | vdr-plugin_pkg_setup() { |
99 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
386 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
100 | append-flags -fPIC |
387 | append-flags -fPIC |
101 | |
388 | |
102 | VDRVERSION=$(awk -F'"' '/VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
389 | # Plugins need to be compiled with position independent code, otherwise linking |
103 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
390 | # VDR against it will fail |
104 | } |
391 | if has_version ">=media-video/vdr-1.7.13"; then |
|
|
392 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
393 | fi |
105 | |
394 | |
|
|
395 | # Where should the plugins live in the filesystem |
|
|
396 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
397 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
398 | |
|
|
399 | # was /usr/lib/... some time ago |
|
|
400 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
|
|
401 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
|
|
402 | |
|
|
403 | # Pathes to includes |
|
|
404 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
405 | DVB_INCLUDE_DIR="/usr/include" |
|
|
406 | |
|
|
407 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
408 | if has_version ">=media-video/vdr-1.7.17"; then |
|
|
409 | LOCDIR="/usr/share/locale" |
|
|
410 | else |
|
|
411 | LOCDIR="/usr/share/vdr/locale" |
|
|
412 | fi |
|
|
413 | |
|
|
414 | if ! has_vdr; then |
|
|
415 | # set to invalid values to detect abuses |
|
|
416 | VDRVERSION="eclass_no_vdr_installed" |
|
|
417 | APIVERSION="eclass_no_vdr_installed" |
|
|
418 | |
|
|
419 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
420 | einfo "VDR not found!" |
|
|
421 | else |
|
|
422 | # if vdr is required |
|
|
423 | die "VDR not found!" |
|
|
424 | fi |
|
|
425 | return |
|
|
426 | fi |
|
|
427 | |
|
|
428 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
429 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
|
|
430 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
431 | |
|
|
432 | einfo "Compiling against" |
|
|
433 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
434 | } |
|
|
435 | |
106 | vdr-plugin_src_unpack() { |
436 | vdr-plugin_src_util() { |
107 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
|
|
108 | |
437 | |
109 | while [ "$1" ]; do |
438 | while [ "$1" ]; do |
110 | |
439 | |
111 | case "$1" in |
440 | case "$1" in |
|
|
441 | all) |
|
|
442 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
443 | ;; |
|
|
444 | prepare|all_but_unpack) |
|
|
445 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
446 | ;; |
112 | unpack) |
447 | unpack) |
113 | unpack ${A} |
448 | base_src_unpack |
|
|
449 | ;; |
|
|
450 | add_local_patch) |
|
|
451 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
452 | vdr_add_local_patch |
114 | ;; |
453 | ;; |
115 | patchmakefile) |
454 | patchmakefile) |
116 | cd ${S} |
455 | cd "${S}" || die "Could not change to plugin-source-directory!" |
117 | |
456 | vdr_patchmakefile |
118 | ebegin "Patching Makefile" |
457 | ;; |
119 | sed -i Makefile \ |
458 | i18n) |
120 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
459 | cd "${S}" || die "Could not change to plugin-source-directory!" |
121 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
460 | 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 | ;; |
461 | ;; |
131 | esac |
462 | esac |
132 | |
463 | |
133 | shift |
464 | shift |
134 | done |
465 | done |
135 | } |
466 | } |
136 | |
467 | |
|
|
468 | vdr-plugin_src_unpack() { |
|
|
469 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
470 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
471 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
472 | echo |
|
|
473 | eerror "Please report this at bugs.gentoo.org." |
|
|
474 | die "vdr-plugin_pkg_setup not called!" |
|
|
475 | fi |
|
|
476 | if [ -z "$1" ]; then |
|
|
477 | case "${EAPI:-0}" in |
|
|
478 | 2|3) |
|
|
479 | vdr-plugin_src_util unpack |
|
|
480 | ;; |
|
|
481 | *) |
|
|
482 | vdr-plugin_src_util all |
|
|
483 | ;; |
|
|
484 | esac |
|
|
485 | |
|
|
486 | else |
|
|
487 | vdr-plugin_src_util $@ |
|
|
488 | fi |
|
|
489 | } |
|
|
490 | |
|
|
491 | vdr-plugin_src_prepare() { |
|
|
492 | base_src_prepare |
|
|
493 | vdr-plugin_src_util prepare |
|
|
494 | } |
|
|
495 | |
137 | vdr-plugin_src_compile() { |
496 | vdr-plugin_src_compile() { |
|
|
497 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
|
|
498 | |
|
|
499 | while [ "$1" ]; do |
|
|
500 | |
|
|
501 | case "$1" in |
|
|
502 | copy_source) |
|
|
503 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
504 | ;; |
|
|
505 | compile) |
|
|
506 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
507 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
508 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
509 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
510 | echo |
|
|
511 | eerror "Please report this at bugs.gentoo.org." |
|
|
512 | die "vdr-plugin_src_unpack not called!" |
|
|
513 | fi |
138 | cd ${S} |
514 | cd "${S}" |
139 | |
515 | |
140 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
516 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
517 | |
|
|
518 | emake ${BUILD_PARAMS} \ |
|
|
519 | ${BUILD_TARGETS} \ |
|
|
520 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
521 | LIBDIR="${S}" \ |
|
|
522 | TMPDIR="${T}" \ |
|
|
523 | || die "emake failed" |
|
|
524 | ;; |
|
|
525 | esac |
|
|
526 | |
|
|
527 | shift |
|
|
528 | done |
141 | } |
529 | } |
142 | |
530 | |
143 | vdr-plugin_src_install() { |
531 | vdr-plugin_src_install() { |
|
|
532 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
|
|
533 | cd "${WORKDIR}" |
|
|
534 | |
|
|
535 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
536 | local mname="${P}-Makefile" |
|
|
537 | cp "${S}"/Makefile "${mname}.patched" |
|
|
538 | cp Makefile.before "${mname}.before" |
|
|
539 | |
|
|
540 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
|
|
541 | |
|
|
542 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
543 | doins "${mname}.diff" |
|
|
544 | |
|
|
545 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
546 | doins "${mname}.before" |
|
|
547 | |
|
|
548 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
549 | doins "${mname}.patched" |
|
|
550 | |
|
|
551 | fi |
|
|
552 | |
|
|
553 | |
|
|
554 | |
144 | cd ${S} |
555 | cd "${S}" |
145 | |
|
|
146 | insinto "${VDR_PLUGIN_DIR}" |
556 | insinto "${VDR_PLUGIN_DIR}" |
147 | doins libvdr-*.so.* |
557 | doins libvdr-*.so.* |
148 | dodoc README* HISTORY CHANGELOG |
|
|
149 | |
558 | |
150 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
559 | # create list of all created plugin libs |
151 | if [[ -f "${f}" ]]; then |
560 | vdr_plugin_list="" |
152 | insinto /etc/conf.d |
561 | local p_name |
153 | newins "${f}" vdr.${VDRPLUGIN} |
562 | for p in libvdr-*.so.*; do |
154 | break |
563 | p_name="${p%.so*}" |
155 | fi |
564 | p_name="${p_name#lib}" |
|
|
565 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
156 | done |
566 | done |
157 | |
567 | |
158 | for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do |
568 | create_header_checksum_file ${vdr_plugin_list} |
159 | if [[ -f "${f}" ]]; then |
569 | create_plugindb_file ${vdr_plugin_list} |
|
|
570 | |
|
|
571 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
|
|
572 | einfo "Installing locales" |
|
|
573 | cd "${TMP_LOCALE_DIR}" |
160 | insinto "${VDR_RC_DIR}" |
574 | insinto "${LOCDIR}" |
161 | newins "${f}" vdr.${VDRPLUGIN}.sh |
575 | doins -r * |
162 | break |
|
|
163 | fi |
576 | fi |
|
|
577 | |
|
|
578 | cd "${S}" |
|
|
579 | local docfile |
|
|
580 | for docfile in README* HISTORY CHANGELOG; do |
|
|
581 | [[ -f ${docfile} ]] && dodoc ${docfile} |
164 | done |
582 | done |
|
|
583 | |
|
|
584 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
585 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
586 | |
|
|
587 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
|
|
588 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
|
|
589 | fi |
|
|
590 | |
|
|
591 | |
|
|
592 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
593 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
594 | |
|
|
595 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
596 | insinto "${VDR_RC_DIR}" |
|
|
597 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
598 | fi |
165 | } |
599 | } |
166 | |
600 | |
167 | vdr-plugin_pkg_postinst() { |
601 | vdr-plugin_pkg_postinst() { |
168 | update_vdrplugindb |
602 | vdr-plugin_print_enable_command |
169 | einfo |
603 | |
170 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed," |
604 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
171 | einfo "to activate it you have to add it to /etc/conf.d/vdr." |
605 | elog "Please have a look at the config-file" |
172 | einfo |
606 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
607 | elog |
|
|
608 | fi |
173 | } |
609 | } |
174 | |
610 | |
175 | vdr-plugin_pkg_postrm() { |
611 | vdr-plugin_pkg_postrm() { |
176 | remove_vdrplugindb |
612 | delete_orphan_plugindb_file |
177 | } |
613 | } |
178 | |
614 | |
|
|
615 | vdr-plugin_pkg_config() { |
|
|
616 | ewarn "emerge --config ${PN} is no longer supported" |
|
|
617 | vdr-plugin_print_enable_command |
|
|
618 | } |
|
|
619 | |
|
|
620 | case "${EAPI:-0}" in |
|
|
621 | 2|3) |
|
|
622 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
623 | ;; |
|
|
624 | *) |
179 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm |
625 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
626 | ;; |
|
|
627 | esac |