| 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.20 2006/05/02 15:00:15 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.26 2006/07/08 15:28:15 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 |
| … | |
… | |
| 36 | # Installation of an rc-addon file for the plugin |
36 | # Installation of an rc-addon file for the plugin |
| 37 | # |
37 | # |
| 38 | # If ${VDR_RCADDON_FILE} is set install this file |
38 | # If ${VDR_RCADDON_FILE} is set install this file |
| 39 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
39 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 40 | # |
40 | # |
| 41 | # Gets installed under /usr/lib/vdr/rcscript/plugin-${VDRPLUGIN}.sh |
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) |
42 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
| 43 | # |
43 | # |
| 44 | # 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 |
| 45 | # 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 |
| 46 | # 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. |
| 47 | |
47 | |
| 48 | inherit base eutils flag-o-matic |
48 | inherit base multilib eutils flag-o-matic |
| 49 | |
49 | |
| 50 | IUSE="debug" |
50 | IUSE="debug" |
| 51 | |
51 | |
| 52 | # 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 |
| 53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| … | |
… | |
| 58 | |
58 | |
| 59 | # works in most cases |
59 | # works in most cases |
| 60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 61 | |
61 | |
| 62 | # depend on headers for DVB-driver |
62 | # depend on headers for DVB-driver |
| 63 | RDEPEND="" |
63 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
| 64 | DEPEND="media-tv/linuxtv-dvb-headers" |
64 | DEPEND="media-tv/linuxtv-dvb-headers" |
| 65 | |
|
|
| 66 | # Where should the plugins live in the filesystem |
|
|
| 67 | VDR_PLUGIN_DIR="/usr/lib/vdr/plugins" |
|
|
| 68 | |
|
|
| 69 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
|
|
| 70 | |
|
|
| 71 | # Pathes to includes |
|
|
| 72 | VDR_INCLUDE_DIR="/usr/include" |
|
|
| 73 | DVB_INCLUDE_DIR="/usr/include" |
|
|
| 74 | |
65 | |
| 75 | |
66 | |
| 76 | # this code is from linux-mod.eclass |
67 | # this code is from linux-mod.eclass |
| 77 | update_vdrplugindb() { |
68 | update_vdrplugindb() { |
| 78 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
69 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| … | |
… | |
| 99 | vdr-plugin_pkg_setup() { |
90 | vdr-plugin_pkg_setup() { |
| 100 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
91 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 101 | append-flags -fPIC |
92 | append-flags -fPIC |
| 102 | use debug && append-flags -g |
93 | use debug && append-flags -g |
| 103 | |
94 | |
|
|
95 | # Where should the plugins live in the filesystem |
|
|
96 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
97 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
98 | |
|
|
99 | # transition to /usr/share/... will need new vdr-scripts version stable |
|
|
100 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
|
|
101 | |
|
|
102 | # Pathes to includes |
|
|
103 | VDR_INCLUDE_DIR="/usr/include" |
|
|
104 | DVB_INCLUDE_DIR="/usr/include" |
|
|
105 | |
|
|
106 | |
| 104 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
107 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
| 105 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' /usr/include/vdr/config.h) |
108 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
| 106 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
109 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 107 | |
110 | |
| 108 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
111 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 109 | einfo "APIVERSION: ${APIVERSION}" |
112 | einfo "APIVERSION: ${APIVERSION}" |
| 110 | } |
113 | } |
| … | |
… | |
| 125 | cd "${WORKDIR}" |
128 | cd "${WORKDIR}" |
| 126 | einfo "$(/bin/ls -1 ${WORKDIR})" |
129 | einfo "$(/bin/ls -1 ${WORKDIR})" |
| 127 | die "Could not change to plugin-source-directory!" |
130 | die "Could not change to plugin-source-directory!" |
| 128 | fi |
131 | fi |
| 129 | |
132 | |
| 130 | ebegin "Patching Makefile" |
133 | einfo "Patching Makefile" |
| 131 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
134 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
135 | cp Makefile Makefile.orig |
|
|
136 | |
| 132 | sed -i.orig Makefile \ |
137 | sed -i Makefile \ |
|
|
138 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
139 | |
|
|
140 | ebegin " Setting Pathes" |
|
|
141 | sed -i Makefile \ |
| 133 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
142 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 134 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
143 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 135 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
144 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 136 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
145 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 137 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
| 138 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
146 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
| 139 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
147 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 140 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
148 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
| 141 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
149 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
|
|
150 | eend $? |
|
|
151 | |
|
|
152 | ebegin " Converting to APIVERSION" |
|
|
153 | sed -i Makefile \ |
| 142 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
154 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 143 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
155 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 144 | -e '1i\APIVERSION = '"${APIVERSION}" |
156 | -e '2i\APIVERSION = '"${APIVERSION}" |
|
|
157 | eend $? |
|
|
158 | |
|
|
159 | ebegin " Correcting CXXFLAGS" |
|
|
160 | sed -i Makefile \ |
|
|
161 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
162 | eend $? |
|
|
163 | |
|
|
164 | ebegin " Disabling file stripping" |
|
|
165 | sed -i Makefile \ |
|
|
166 | -e '/@.*strip/d' \ |
|
|
167 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
168 | -e '/^STRIP =/d' \ |
|
|
169 | -e '/@.*\$(STRIP)/d' |
| 145 | eend $? |
170 | eend $? |
| 146 | ;; |
171 | ;; |
| 147 | esac |
172 | esac |
| 148 | |
173 | |
| 149 | shift |
174 | shift |
| … | |
… | |
| 192 | |
217 | |
| 193 | vdr-plugin_src_install() { |
218 | vdr-plugin_src_install() { |
| 194 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
219 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 195 | cd ${S} |
220 | cd ${S} |
| 196 | |
221 | |
|
|
222 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
223 | local mname=${P}-Makefile |
|
|
224 | cp Makefile ${mname}.patched |
|
|
225 | cp Makefile.orig ${mname}.before |
|
|
226 | |
|
|
227 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
228 | |
|
|
229 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
230 | doins ${mname}.diff |
|
|
231 | |
|
|
232 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
233 | doins ${mname}.before |
|
|
234 | |
|
|
235 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
236 | doins ${mname}.patched |
|
|
237 | |
|
|
238 | fi |
|
|
239 | |
| 197 | insinto "${VDR_PLUGIN_DIR}" |
240 | insinto "${VDR_PLUGIN_DIR}" |
| 198 | doins libvdr-*.so.* |
241 | doins libvdr-*.so.* |
|
|
242 | local docfile |
| 199 | dodoc README* HISTORY CHANGELOG |
243 | for docfile in README* HISTORY CHANGELOG; do |
| 200 | |
244 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
245 | done |
| 201 | |
246 | |
| 202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
247 | # 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 |
248 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 204 | |
249 | |
| 205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
250 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| … | |
… | |
| 216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
261 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 217 | fi |
262 | fi |
| 218 | |
263 | |
| 219 | |
264 | |
| 220 | |
265 | |
| 221 | insinto /usr/lib/vdr/checksums |
266 | insinto ${VDR_CHECKSUM_DIR} |
| 222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
267 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
268 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 224 | else |
269 | else |
| 225 | if which md5sum >/dev/null 2>&1; then |
270 | if which md5sum >/dev/null 2>&1; then |
| 226 | cd ${S} |
271 | cd ${S} |
| 227 | ( |
272 | ( |
| 228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
273 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
| … | |
… | |
| 316 | -e ${LINE}'s/" /"/g' |
361 | -e ${LINE}'s/" /"/g' |
| 317 | |
362 | |
| 318 | vdr-plugin_pkg_config_final |
363 | vdr-plugin_pkg_config_final |
| 319 | } |
364 | } |
| 320 | |
365 | |
|
|
366 | fix_vdr_libsi_include() |
|
|
367 | { |
|
|
368 | einfo "Fixing include of libsi-headers" |
|
|
369 | local f |
|
|
370 | for f; do |
|
|
371 | sed -i "${f}" \ |
|
|
372 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
|
|
373 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
|
|
374 | done |
|
|
375 | } |
|
|
376 | |
| 321 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
377 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |