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