| 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.2 2005/08/07 13:55:43 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.17 2006/03/17 15:13:24 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" |
| … | |
… | |
| 72 | DVB_INCLUDE_DIR="/usr/include" |
73 | DVB_INCLUDE_DIR="/usr/include" |
| 73 | |
74 | |
| 74 | |
75 | |
| 75 | # this code is from linux-mod.eclass |
76 | # this code is from linux-mod.eclass |
| 76 | update_vdrplugindb() { |
77 | update_vdrplugindb() { |
| 77 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugins-rebuild/ |
78 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 78 | |
79 | |
| 79 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
80 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
| 80 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
81 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
| 81 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
82 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
| 82 | fi |
83 | fi |
| … | |
… | |
| 85 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
86 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
| 86 | fi |
87 | fi |
| 87 | } |
88 | } |
| 88 | |
89 | |
| 89 | remove_vdrplugindb() { |
90 | remove_vdrplugindb() { |
| 90 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugins-rebuild/ |
91 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| 91 | |
92 | |
| 92 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
93 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
| 93 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
94 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
| 94 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
95 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
| 95 | fi |
96 | fi |
| 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'"' '/VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
| 103 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
105 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 104 | } |
106 | } |
| 105 | |
107 | |
| … | |
… | |
| 108 | |
110 | |
| 109 | while [ "$1" ]; do |
111 | while [ "$1" ]; do |
| 110 | |
112 | |
| 111 | case "$1" in |
113 | case "$1" in |
| 112 | unpack) |
114 | unpack) |
| 113 | unpack ${A} |
115 | base_src_unpack |
| 114 | ;; |
116 | ;; |
| 115 | patchmakefile) |
117 | patchmakefile) |
| 116 | cd ${S} |
118 | cd ${S} |
| 117 | |
119 | |
| 118 | ebegin "Patching Makefile" |
120 | ebegin "Patching Makefile" |
| 119 | sed -i Makefile \ |
121 | sed -i.orig Makefile \ |
| 120 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
122 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 121 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
123 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 122 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
124 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 123 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
125 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 124 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
126 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 125 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
127 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
| 126 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
128 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 127 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
129 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
| 128 | -e 's:$(VDRDIR)/\(config.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
130 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
| 129 | eend $? |
131 | eend $? |
| 130 | ;; |
132 | ;; |
| 131 | esac |
133 | esac |
| 132 | |
134 | |
| 133 | shift |
135 | shift |
| 134 | done |
136 | done |
| 135 | } |
137 | } |
| 136 | |
138 | |
|
|
139 | vdr-plugin_copy_source_tree() { |
|
|
140 | cp -r ${S} ${T}/source-tree |
|
|
141 | cd ${T}/source-tree |
|
|
142 | mv Makefile.orig Makefile |
|
|
143 | sed -i Makefile \ |
|
|
144 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
|
|
145 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
146 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
|
|
147 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
148 | } |
|
|
149 | |
|
|
150 | vdr-plugin_install_source_tree() { |
|
|
151 | einfo "Installing sources" |
|
|
152 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
|
|
153 | insinto ${destdir}-${PV} |
|
|
154 | doins -r ${T}/source-tree/* |
|
|
155 | |
|
|
156 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
|
|
157 | } |
|
|
158 | |
| 137 | vdr-plugin_src_compile() { |
159 | vdr-plugin_src_compile() { |
|
|
160 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
161 | |
|
|
162 | while [ "$1" ]; do |
|
|
163 | |
|
|
164 | case "$1" in |
|
|
165 | prepare) |
|
|
166 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
|
|
167 | ;; |
|
|
168 | compile) |
| 138 | cd ${S} |
169 | cd ${S} |
| 139 | |
170 | |
| 140 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
171 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
|
|
172 | ;; |
|
|
173 | esac |
|
|
174 | |
|
|
175 | shift |
|
|
176 | done |
| 141 | } |
177 | } |
| 142 | |
178 | |
| 143 | vdr-plugin_src_install() { |
179 | vdr-plugin_src_install() { |
|
|
180 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 144 | cd ${S} |
181 | cd ${S} |
| 145 | |
182 | |
| 146 | insinto "${VDR_PLUGIN_DIR}" |
183 | insinto "${VDR_PLUGIN_DIR}" |
| 147 | doins libvdr-*.so.* |
184 | doins libvdr-*.so.* |
| 148 | dodoc README* HISTORY CHANGELOG |
185 | dodoc README* HISTORY CHANGELOG |
| 149 | |
186 | |
| 150 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
187 | |
| 151 | if [[ -f "${f}" ]]; then |
188 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
189 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
190 | |
|
|
191 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 152 | insinto /etc/conf.d |
192 | insinto /etc/conf.d |
| 153 | newins "${f}" vdr.${VDRPLUGIN} |
193 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 154 | break |
194 | fi |
|
|
195 | |
|
|
196 | |
|
|
197 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
198 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
199 | |
|
|
200 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
201 | insinto "${VDR_RC_DIR}" |
|
|
202 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
203 | fi |
|
|
204 | |
|
|
205 | |
|
|
206 | |
|
|
207 | insinto /usr/lib/vdr/checksums |
|
|
208 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
|
|
209 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
|
|
210 | else |
|
|
211 | if which md5sum >/dev/null 2>&1; then |
|
|
212 | cd ${S} |
|
|
213 | ( |
|
|
214 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
|
|
215 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
216 | ) > header-md5-${PN} |
|
|
217 | doins header-md5-${PN} |
| 155 | fi |
218 | 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 |
219 | fi |
| 164 | done |
|
|
| 165 | } |
220 | } |
| 166 | |
221 | |
| 167 | vdr-plugin_pkg_postinst() { |
222 | vdr-plugin_pkg_postinst() { |
| 168 | update_vdrplugindb |
223 | update_vdrplugindb |
| 169 | einfo |
224 | einfo |
| 170 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed," |
225 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 171 | einfo "to activate it you have to add it to /etc/conf.d/vdr." |
226 | einfo "To activate execute the following command:" |
| 172 | einfo |
227 | einfo |
|
|
228 | einfo " emerge --config ${PN}" |
|
|
229 | einfo |
|
|
230 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
231 | einfo "And have a look at the config-file" |
|
|
232 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
233 | einfo |
|
|
234 | fi |
| 173 | } |
235 | } |
| 174 | |
236 | |
| 175 | vdr-plugin_pkg_postrm() { |
237 | vdr-plugin_pkg_postrm() { |
| 176 | remove_vdrplugindb |
238 | remove_vdrplugindb |
| 177 | } |
239 | } |
| 178 | |
240 | |
|
|
241 | vdr-plugin_pkg_config_final() { |
|
|
242 | diff ${conf_orig} ${conf} |
|
|
243 | rm ${conf_orig} |
|
|
244 | } |
|
|
245 | |
|
|
246 | vdr-plugin_pkg_config() { |
|
|
247 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
|
|
248 | INSTALLPLUGIN="${VDRPLUGIN}" |
|
|
249 | fi |
|
|
250 | # First test if plugin is already inside PLUGINS |
|
|
251 | local conf=/etc/conf.d/vdr |
|
|
252 | conf_orig=${conf}.before_emerge_config |
|
|
253 | cp ${conf} ${conf_orig} |
|
|
254 | |
|
|
255 | einfo "Reading ${conf}" |
|
|
256 | if ! grep -q "^PLUGINS=" ${conf}; then |
|
|
257 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
|
|
258 | if [[ -n "${LINE}" ]]; then |
|
|
259 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
260 | else |
|
|
261 | echo 'PLUGINS=""' >> ${conf} |
|
|
262 | fi |
|
|
263 | unset LINE |
|
|
264 | fi |
|
|
265 | |
|
|
266 | unset PLUGINS |
|
|
267 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
268 | |
|
|
269 | active=0 |
|
|
270 | for p in ${PLUGINS}; do |
|
|
271 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
272 | active=1 |
|
|
273 | break; |
|
|
274 | fi |
|
|
275 | done |
|
|
276 | |
|
|
277 | if [[ "${active}" == "1" ]]; then |
|
|
278 | einfo "${INSTALLPLUGIN} already activated" |
|
|
279 | echo |
|
|
280 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
|
|
281 | if [[ "${answer}" != "yes" ]]; then |
|
|
282 | einfo "aborted" |
|
|
283 | return |
|
|
284 | fi |
|
|
285 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
|
|
286 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
287 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
288 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
289 | -e ${LINE}'s/ "/"/g' \ |
|
|
290 | -e ${LINE}'s/" /"/g' |
|
|
291 | |
|
|
292 | vdr-plugin_pkg_config_final |
|
|
293 | return |
|
|
294 | fi |
|
|
295 | |
|
|
296 | |
|
|
297 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
298 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
299 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
300 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
301 | -e ${LINE}'s/ "/"/g' \ |
|
|
302 | -e ${LINE}'s/" /"/g' |
|
|
303 | |
|
|
304 | vdr-plugin_pkg_config_final |
|
|
305 | } |
|
|
306 | |
| 179 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm |
307 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |