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