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