| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.3 2005/08/07 14:15:10 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.19 2006/04/26 13:36:10 zzam Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: |
5 | # Author: |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
6 | # Matthias Schwarzott <zzam@gentoo.org> |
| 7 | |
7 | |
| 8 | # vdr-plugin.eclass |
8 | # vdr-plugin.eclass |
| … | |
… | |
| 20 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
20 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
| 21 | # LICENSE="GPL-2" |
21 | # LICENSE="GPL-2" |
| 22 | # KEYWORDS="~x86" |
22 | # KEYWORDS="~x86" |
| 23 | # DEPEND=">=media-video/vdr-1.3.27" |
23 | # DEPEND=">=media-video/vdr-1.3.27" |
| 24 | # |
24 | # |
| 25 | # |
25 | # |
| 26 | |
26 | |
| 27 | # There are some special files in ${FILESDIR} which get installed when |
27 | # Installation of a config file for the plugin |
| 28 | # they exist: |
28 | # |
|
|
29 | # If ${VDR_CONFD_FILE} is set install this file |
|
|
30 | # else install ${FILESDIR}/confd if it exists. |
| 29 | |
31 | |
| 30 | # ${FILESDIR}/confd-${PV} or ${FILESDIR}/confd: |
|
|
| 31 | # The first matching is installed under /etc/conf.d/vdr.${VDRPLUGIN} |
32 | # Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
| 32 | # (in example vdr-femon this would be /etc/conf.d/vdr.femon) |
33 | # For the plugin vdr-femon this would be /etc/conf.d/vdr.femon |
| 33 | # |
|
|
| 34 | # Everything put in variable _EXTRAOPTS is appended to the command line of |
|
|
| 35 | # the plugin. |
|
|
| 36 | |
34 | |
| 37 | |
35 | |
| 38 | # ${FILESDIR}/rc-addon-${PV}.sh or ${FILESDIR}/rc-addon.sh: |
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 | # |
| 39 | # The first matching is installed under /usr/lib/vdr/rcscript/vdr.${VDRPLUGIN}.sh |
41 | # Gets installed under /usr/lib/vdr/rcscript/plugin-${VDRPLUGIN}.sh |
| 40 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/vdr.femon.sh) |
42 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
| 41 | # |
43 | # |
| 42 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
44 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
| 43 | # It could be used for special startup actions for this plugins, or to create the |
45 | # It could be used for special startup actions for this plugins, or to create the |
| 44 | # plugin command line options from a nicer version of a conf.d file. |
46 | # plugin command line options from a nicer version of a conf.d file. |
| 45 | |
47 | |
| 46 | inherit eutils flag-o-matic |
48 | inherit base eutils flag-o-matic |
|
|
49 | |
|
|
50 | IUSE="debug" |
| 47 | |
51 | |
| 48 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
52 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 49 | VDRPLUGIN="${PN/#vdrplugin-/}" |
53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| 50 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
54 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 51 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
55 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
| … | |
… | |
| 55 | # works in most cases |
59 | # works in most cases |
| 56 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 57 | |
61 | |
| 58 | # depend on headers for DVB-driver |
62 | # depend on headers for DVB-driver |
| 59 | RDEPEND="" |
63 | RDEPEND="" |
| 60 | DEPEND="|| ( |
64 | DEPEND="media-tv/linuxtv-dvb-headers" |
| 61 | >=sys-kernel/linux-headers-2.6.11-r2 |
|
|
| 62 | media-tv/linuxtv-dvb |
|
|
| 63 | )" |
|
|
| 64 | |
65 | |
| 65 | # Where should the plugins live in the filesystem |
66 | # Where should the plugins live in the filesystem |
| 66 | VDR_PLUGIN_DIR="/usr/lib/vdr/plugins" |
67 | VDR_PLUGIN_DIR="/usr/lib/vdr/plugins" |
| 67 | |
68 | |
| 68 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
69 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
| … | |
… | |
| 96 | } |
97 | } |
| 97 | |
98 | |
| 98 | vdr-plugin_pkg_setup() { |
99 | vdr-plugin_pkg_setup() { |
| 99 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
100 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 100 | append-flags -fPIC |
101 | append-flags -fPIC |
|
|
102 | use debug && append-flags -g |
| 101 | |
103 | |
| 102 | VDRVERSION=$(awk -F'"' '/VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
104 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
|
|
105 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' /usr/include/vdr/config.h) |
|
|
106 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
|
|
107 | |
| 103 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
108 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
109 | einfo "APIVERSION: ${APIVERSION}" |
| 104 | } |
110 | } |
| 105 | |
111 | |
| 106 | vdr-plugin_src_unpack() { |
112 | vdr-plugin_src_unpack() { |
| 107 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
113 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
| 108 | |
114 | |
| 109 | while [ "$1" ]; do |
115 | while [ "$1" ]; do |
| 110 | |
116 | |
| 111 | case "$1" in |
117 | case "$1" in |
| 112 | unpack) |
118 | unpack) |
| 113 | unpack ${A} |
119 | base_src_unpack |
| 114 | ;; |
120 | ;; |
| 115 | patchmakefile) |
121 | patchmakefile) |
| 116 | cd ${S} |
122 | cd ${S} |
| 117 | |
123 | |
| 118 | ebegin "Patching Makefile" |
124 | ebegin "Patching Makefile" |
| 119 | sed -i Makefile \ |
125 | sed -i.orig Makefile \ |
| 120 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
126 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 121 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
127 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 122 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
128 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 123 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
129 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 124 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
130 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 125 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
131 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
| 126 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
132 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 127 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
133 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
| 128 | -e 's:$(VDRDIR)/\(config.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
134 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
|
|
135 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
136 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
137 | -e '1i\APIVERSION = '"${APIVERSION}" |
| 129 | eend $? |
138 | eend $? |
| 130 | ;; |
139 | ;; |
| 131 | esac |
140 | esac |
| 132 | |
141 | |
| 133 | shift |
142 | shift |
| 134 | done |
143 | done |
| 135 | } |
144 | } |
| 136 | |
145 | |
|
|
146 | vdr-plugin_copy_source_tree() { |
|
|
147 | cp -r ${S} ${T}/source-tree |
|
|
148 | cd ${T}/source-tree |
|
|
149 | mv Makefile.orig Makefile |
|
|
150 | sed -i Makefile \ |
|
|
151 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
152 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
153 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
154 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
155 | } |
|
|
156 | |
|
|
157 | vdr-plugin_install_source_tree() { |
|
|
158 | einfo "Installing sources" |
|
|
159 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
|
|
160 | insinto ${destdir}-${PV} |
|
|
161 | doins -r ${T}/source-tree/* |
|
|
162 | |
|
|
163 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
|
|
164 | } |
|
|
165 | |
| 137 | vdr-plugin_src_compile() { |
166 | vdr-plugin_src_compile() { |
|
|
167 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
168 | |
|
|
169 | while [ "$1" ]; do |
|
|
170 | |
|
|
171 | case "$1" in |
|
|
172 | prepare) |
|
|
173 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
174 | ;; |
|
|
175 | compile) |
| 138 | cd ${S} |
176 | cd ${S} |
| 139 | |
177 | |
| 140 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
178 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
|
|
179 | ;; |
|
|
180 | esac |
|
|
181 | |
|
|
182 | shift |
|
|
183 | done |
| 141 | } |
184 | } |
| 142 | |
185 | |
| 143 | vdr-plugin_src_install() { |
186 | vdr-plugin_src_install() { |
|
|
187 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 144 | cd ${S} |
188 | cd ${S} |
| 145 | |
189 | |
| 146 | insinto "${VDR_PLUGIN_DIR}" |
190 | insinto "${VDR_PLUGIN_DIR}" |
| 147 | doins libvdr-*.so.* |
191 | doins libvdr-*.so.* |
| 148 | dodoc README* HISTORY CHANGELOG |
192 | dodoc README* HISTORY CHANGELOG |
| 149 | |
193 | |
| 150 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
194 | |
| 151 | if [[ -f "${f}" ]]; then |
195 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
196 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
197 | |
|
|
198 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 152 | insinto /etc/conf.d |
199 | insinto /etc/conf.d |
| 153 | newins "${f}" vdr.${VDRPLUGIN} |
200 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 154 | break |
201 | fi |
|
|
202 | |
|
|
203 | |
|
|
204 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
205 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
206 | |
|
|
207 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
208 | insinto "${VDR_RC_DIR}" |
|
|
209 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
210 | fi |
|
|
211 | |
|
|
212 | |
|
|
213 | |
|
|
214 | insinto /usr/lib/vdr/checksums |
|
|
215 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
|
|
216 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
|
|
217 | else |
|
|
218 | if which md5sum >/dev/null 2>&1; then |
|
|
219 | cd ${S} |
|
|
220 | ( |
|
|
221 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
|
|
222 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
223 | ) > header-md5-${PN} |
|
|
224 | doins header-md5-${PN} |
| 155 | fi |
225 | fi |
| 156 | done |
|
|
| 157 | |
|
|
| 158 | for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do |
|
|
| 159 | if [[ -f "${f}" ]]; then |
|
|
| 160 | insinto "${VDR_RC_DIR}" |
|
|
| 161 | newins "${f}" vdr.${VDRPLUGIN}.sh |
|
|
| 162 | break |
|
|
| 163 | fi |
226 | fi |
| 164 | done |
|
|
| 165 | } |
227 | } |
| 166 | |
228 | |
| 167 | vdr-plugin_pkg_postinst() { |
229 | vdr-plugin_pkg_postinst() { |
| 168 | update_vdrplugindb |
230 | update_vdrplugindb |
| 169 | einfo |
231 | einfo |
| 170 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed," |
232 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 171 | einfo "to activate it you have to add it to /etc/conf.d/vdr." |
233 | einfo "To activate execute the following command:" |
| 172 | einfo |
234 | einfo |
|
|
235 | einfo " emerge --config ${PN}" |
|
|
236 | einfo |
|
|
237 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
238 | einfo "And have a look at the config-file" |
|
|
239 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
240 | einfo |
|
|
241 | fi |
| 173 | } |
242 | } |
| 174 | |
243 | |
| 175 | vdr-plugin_pkg_postrm() { |
244 | vdr-plugin_pkg_postrm() { |
| 176 | remove_vdrplugindb |
245 | remove_vdrplugindb |
| 177 | } |
246 | } |
| 178 | |
247 | |
|
|
248 | vdr-plugin_pkg_config_final() { |
|
|
249 | diff ${conf_orig} ${conf} |
|
|
250 | rm ${conf_orig} |
|
|
251 | } |
|
|
252 | |
|
|
253 | vdr-plugin_pkg_config() { |
|
|
254 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
255 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
256 | fi |
|
|
257 | # First test if plugin is already inside PLUGINS |
|
|
258 | local conf=/etc/conf.d/vdr |
|
|
259 | conf_orig=${conf}.before_emerge_config |
|
|
260 | cp ${conf} ${conf_orig} |
|
|
261 | |
|
|
262 | einfo "Reading ${conf}" |
|
|
263 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
264 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
265 | if [[ -n "${LINE}" ]]; then |
|
|
266 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
267 | else |
|
|
268 | echo 'PLUGINS=""' >> ${conf} |
|
|
269 | fi |
|
|
270 | unset LINE |
|
|
271 | fi |
|
|
272 | |
|
|
273 | unset PLUGINS |
|
|
274 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
275 | |
|
|
276 | active=0 |
|
|
277 | for p in ${PLUGINS}; do |
|
|
278 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
279 | active=1 |
|
|
280 | break; |
|
|
281 | fi |
|
|
282 | done |
|
|
283 | |
|
|
284 | if [[ "${active}" == "1" ]]; then |
|
|
285 | einfo "${INSTALLPLUGIN} already activated" |
|
|
286 | echo |
|
|
287 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
288 | if [[ "${answer}" != "yes" ]]; then |
|
|
289 | einfo "aborted" |
|
|
290 | return |
|
|
291 | fi |
|
|
292 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
293 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
294 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
295 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
296 | -e ${LINE}'s/ "/"/g' \ |
|
|
297 | -e ${LINE}'s/" /"/g' |
|
|
298 | |
|
|
299 | vdr-plugin_pkg_config_final |
|
|
300 | return |
|
|
301 | fi |
|
|
302 | |
|
|
303 | |
|
|
304 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
305 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
306 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
307 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
308 | -e ${LINE}'s/ "/"/g' \ |
|
|
309 | -e ${LINE}'s/" /"/g' |
|
|
310 | |
|
|
311 | vdr-plugin_pkg_config_final |
|
|
312 | } |
|
|
313 | |
| 179 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm |
314 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |