| 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.12 2006/02/03 21:18:52 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.21 2006/05/02 15:04:03 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 |
| … | |
… | |
| 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/plugin-${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/plugin-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 base 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/}" |
| … | |
… | |
| 93 | } |
97 | } |
| 94 | |
98 | |
| 95 | vdr-plugin_pkg_setup() { |
99 | vdr-plugin_pkg_setup() { |
| 96 | # -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) |
| 97 | append-flags -fPIC |
101 | append-flags -fPIC |
|
|
102 | use debug && append-flags -g |
| 98 | |
103 | |
| 99 | 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 | |
| 100 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
108 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
|
|
109 | einfo "APIVERSION: ${APIVERSION}" |
| 101 | } |
110 | } |
| 102 | |
111 | |
| 103 | vdr-plugin_src_unpack() { |
112 | vdr-plugin_src_unpack() { |
| 104 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
113 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
| 105 | |
114 | |
| … | |
… | |
| 108 | case "$1" in |
117 | case "$1" in |
| 109 | unpack) |
118 | unpack) |
| 110 | base_src_unpack |
119 | base_src_unpack |
| 111 | ;; |
120 | ;; |
| 112 | patchmakefile) |
121 | patchmakefile) |
| 113 | cd ${S} |
122 | if ! cd ${S}; then |
|
|
123 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
|
|
124 | ewarn "Perhaps you find one among these:" |
|
|
125 | cd "${WORKDIR}" |
|
|
126 | einfo "$(/bin/ls -1 ${WORKDIR})" |
|
|
127 | die "Could not change to plugin-source-directory!" |
|
|
128 | fi |
| 114 | |
129 | |
| 115 | ebegin "Patching Makefile" |
130 | ebegin "Patching Makefile" |
|
|
131 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 116 | sed -i.orig Makefile \ |
132 | sed -i.orig Makefile \ |
| 117 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
133 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 118 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
134 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 119 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
135 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 120 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
136 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 121 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
137 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 122 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
138 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
| 123 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
139 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 124 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
140 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
| 125 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
141 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
|
|
142 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
|
|
143 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
|
|
144 | -e '1i\APIVERSION = '"${APIVERSION}" |
| 126 | eend $? |
145 | eend $? |
| 127 | ;; |
146 | ;; |
| 128 | esac |
147 | esac |
| 129 | |
148 | |
| 130 | shift |
149 | shift |
| … | |
… | |
| 177 | |
196 | |
| 178 | insinto "${VDR_PLUGIN_DIR}" |
197 | insinto "${VDR_PLUGIN_DIR}" |
| 179 | doins libvdr-*.so.* |
198 | doins libvdr-*.so.* |
| 180 | dodoc README* HISTORY CHANGELOG |
199 | dodoc README* HISTORY CHANGELOG |
| 181 | |
200 | |
| 182 | for f in ${FILESDIR}/confd-${PV} ${FILESDIR}/confd; do |
201 | |
| 183 | if [[ -f "${f}" ]]; then |
202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
|
|
203 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
|
|
204 | |
|
|
205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 184 | insinto /etc/conf.d |
206 | insinto /etc/conf.d |
| 185 | newins "${f}" vdr.${VDRPLUGIN} |
207 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 186 | break |
208 | fi |
|
|
209 | |
|
|
210 | |
|
|
211 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
|
|
212 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
|
|
213 | |
|
|
214 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
|
|
215 | insinto "${VDR_RC_DIR}" |
|
|
216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
|
|
217 | fi |
|
|
218 | |
|
|
219 | |
|
|
220 | |
|
|
221 | insinto /usr/lib/vdr/checksums |
|
|
222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
|
|
223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
|
|
224 | else |
|
|
225 | if which md5sum >/dev/null 2>&1; then |
|
|
226 | cd ${S} |
|
|
227 | ( |
|
|
228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
|
|
229 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
230 | ) > header-md5-${PN} |
|
|
231 | doins header-md5-${PN} |
| 187 | fi |
232 | fi |
| 188 | done |
|
|
| 189 | |
|
|
| 190 | for f in ${FILESDIR}/rc-addon-${PV}.sh ${FILESDIR}/rc-addon.sh; do |
|
|
| 191 | if [[ -f "${f}" ]]; then |
|
|
| 192 | insinto "${VDR_RC_DIR}" |
|
|
| 193 | newins "${f}" plugin-${VDRPLUGIN}.sh |
|
|
| 194 | break |
|
|
| 195 | fi |
233 | fi |
| 196 | done |
|
|
| 197 | } |
234 | } |
| 198 | |
235 | |
| 199 | vdr-plugin_pkg_postinst() { |
236 | vdr-plugin_pkg_postinst() { |
| 200 | update_vdrplugindb |
237 | update_vdrplugindb |
| 201 | einfo |
238 | einfo |
| 202 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
239 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
| 203 | einfo "To activate execute the following command:" |
240 | einfo "To activate execute the following command:" |
| 204 | einfo |
241 | einfo |
| 205 | einfo " emerge --config ${PN}" |
242 | einfo " emerge --config ${PN}" |
| 206 | einfo |
243 | einfo |
|
|
244 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
|
|
245 | einfo "And have a look at the config-file" |
|
|
246 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
|
|
247 | einfo |
|
|
248 | fi |
| 207 | } |
249 | } |
| 208 | |
250 | |
| 209 | vdr-plugin_pkg_postrm() { |
251 | vdr-plugin_pkg_postrm() { |
| 210 | remove_vdrplugindb |
252 | remove_vdrplugindb |
| 211 | } |
253 | } |
| … | |
… | |
| 274 | -e ${LINE}'s/" /"/g' |
316 | -e ${LINE}'s/" /"/g' |
| 275 | |
317 | |
| 276 | vdr-plugin_pkg_config_final |
318 | vdr-plugin_pkg_config_final |
| 277 | } |
319 | } |
| 278 | |
320 | |
|
|
321 | fix_vdr_libsi_include() |
|
|
322 | { |
|
|
323 | einfo "Fixing include of libsi-headers" |
|
|
324 | local f |
|
|
325 | for f; do |
|
|
326 | sed -i "${f}" \ |
|
|
327 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
328 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
329 | done |
|
|
330 | } |
|
|
331 | |
| 279 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
332 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |