| 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.21 2006/05/02 15:04:03 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.32 2006/09/10 10:29:21 zzam Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: |
5 | # Author: |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
6 | # Matthias Schwarzott <zzam@gentoo.org> |
|
|
7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
| 7 | |
8 | |
| 8 | # vdr-plugin.eclass |
9 | # vdr-plugin.eclass |
| 9 | # |
10 | # |
| 10 | # eclass to create ebuilds for vdr plugins |
11 | # eclass to create ebuilds for vdr plugins |
| 11 | # |
12 | # |
| … | |
… | |
| 36 | # Installation of an rc-addon file for the plugin |
37 | # Installation of an rc-addon file for the plugin |
| 37 | # |
38 | # |
| 38 | # If ${VDR_RCADDON_FILE} is set install this file |
39 | # If ${VDR_RCADDON_FILE} is set install this file |
| 39 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 40 | # |
41 | # |
| 41 | # Gets installed under /usr/lib/vdr/rcscript/plugin-${VDRPLUGIN}.sh |
42 | # 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 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
| 43 | # |
44 | # |
| 44 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
45 | # 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 | # 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 | # plugin command line options from a nicer version of a conf.d file. |
| 47 | |
48 | |
|
|
49 | # HowTo use own local patches; Example |
|
|
50 | # |
|
|
51 | # Add to your /etc/make.conf: |
|
|
52 | # VDR_LOCAL_PATCHES_DIR="/usr/local/patch" |
|
|
53 | # |
|
|
54 | # Add two DIR's in your local patch dir, ${PN}/${PV}, |
|
|
55 | # e.g for vdr-burn-0.1.0 should be: |
|
|
56 | # /usr/local/patch/vdr-burn/0.1.0/ |
|
|
57 | # |
|
|
58 | # all patches which ending on diff or patch in this DIR will automatically applied |
|
|
59 | # |
|
|
60 | |
| 48 | inherit base eutils flag-o-matic |
61 | inherit base multilib eutils flag-o-matic |
| 49 | |
62 | |
| 50 | IUSE="debug" |
63 | IUSE="debug" |
| 51 | |
64 | |
| 52 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
65 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 53 | VDRPLUGIN="${PN/#vdrplugin-/}" |
66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| … | |
… | |
| 58 | |
71 | |
| 59 | # works in most cases |
72 | # works in most cases |
| 60 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 61 | |
74 | |
| 62 | # depend on headers for DVB-driver |
75 | # depend on headers for DVB-driver |
| 63 | RDEPEND="" |
76 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
| 64 | DEPEND="media-tv/linuxtv-dvb-headers" |
77 | 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 | |
78 | |
| 75 | |
79 | |
| 76 | # this code is from linux-mod.eclass |
80 | # this code is from linux-mod.eclass |
| 77 | update_vdrplugindb() { |
81 | update_vdrplugindb() { |
| 78 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
| … | |
… | |
| 99 | vdr-plugin_pkg_setup() { |
103 | vdr-plugin_pkg_setup() { |
| 100 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
104 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 101 | append-flags -fPIC |
105 | append-flags -fPIC |
| 102 | use debug && append-flags -g |
106 | use debug && append-flags -g |
| 103 | |
107 | |
|
|
108 | # Where should the plugins live in the filesystem |
|
|
109 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
|
|
110 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
|
|
111 | |
|
|
112 | # transition to /usr/share/... will need new vdr-scripts version stable |
|
|
113 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
|
|
114 | |
|
|
115 | # Pathes to includes |
|
|
116 | VDR_INCLUDE_DIR="/usr/include/vdr" |
|
|
117 | DVB_INCLUDE_DIR="/usr/include" |
|
|
118 | |
|
|
119 | |
| 104 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' /usr/include/vdr/config.h) |
120 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 105 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' /usr/include/vdr/config.h) |
121 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 106 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
122 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 107 | |
123 | |
| 108 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
124 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 109 | einfo "APIVERSION: ${APIVERSION}" |
125 | einfo "APIVERSION: ${APIVERSION}" |
| 110 | } |
126 | } |
| 111 | |
127 | |
| 112 | vdr-plugin_src_unpack() { |
128 | vdr-plugin_src_unpack() { |
|
|
129 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
|
|
130 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
131 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
|
|
132 | echo |
|
|
133 | eerror "Please report this at bugs.gentoo.org." |
|
|
134 | die "vdr-plugin_pkg_setup not called!" |
|
|
135 | fi |
| 113 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
136 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 114 | |
137 | |
| 115 | while [ "$1" ]; do |
138 | while [ "$1" ]; do |
| 116 | |
139 | |
| 117 | case "$1" in |
140 | case "$1" in |
| 118 | unpack) |
141 | unpack) |
| … | |
… | |
| 125 | cd "${WORKDIR}" |
148 | cd "${WORKDIR}" |
| 126 | einfo "$(/bin/ls -1 ${WORKDIR})" |
149 | einfo "$(/bin/ls -1 ${WORKDIR})" |
| 127 | die "Could not change to plugin-source-directory!" |
150 | die "Could not change to plugin-source-directory!" |
| 128 | fi |
151 | fi |
| 129 | |
152 | |
| 130 | ebegin "Patching Makefile" |
153 | einfo "Patching Makefile" |
| 131 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
154 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
155 | cp Makefile Makefile.orig |
|
|
156 | |
| 132 | sed -i.orig Makefile \ |
157 | sed -i Makefile \ |
|
|
158 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
159 | |
|
|
160 | ebegin " Setting Pathes" |
|
|
161 | sed -i Makefile \ |
| 133 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
162 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 134 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
163 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 135 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
164 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 136 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
165 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 137 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
166 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 138 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
167 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 139 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
168 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 140 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
169 | eend $? |
| 141 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
170 | |
|
|
171 | ebegin " Converting to APIVERSION" |
|
|
172 | sed -i Makefile \ |
| 142 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
173 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 143 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
174 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 144 | -e '1i\APIVERSION = '"${APIVERSION}" |
175 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 145 | eend $? |
176 | eend $? |
|
|
177 | |
|
|
178 | ebegin " Correcting CXXFLAGS" |
|
|
179 | sed -i Makefile \ |
|
|
180 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
181 | eend $? |
|
|
182 | |
|
|
183 | ebegin " Disabling file stripping" |
|
|
184 | sed -i Makefile \ |
|
|
185 | -e '/@.*strip/d' \ |
|
|
186 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
187 | -e '/^STRIP =/d' \ |
|
|
188 | -e '/@.*\$(STRIP)/d' |
|
|
189 | eend $? |
|
|
190 | PLUGIN_MAKEFILE_PATCHED=1 |
|
|
191 | ;; |
|
|
192 | add_local_patch) |
|
|
193 | cd ${S} |
|
|
194 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
195 | echo |
|
|
196 | einfo "Applying local patches" |
|
|
197 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
198 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
199 | done |
|
|
200 | fi |
| 146 | ;; |
201 | ;; |
| 147 | esac |
202 | esac |
| 148 | |
203 | |
| 149 | shift |
204 | shift |
| 150 | done |
205 | done |
| 151 | } |
206 | } |
| 152 | |
207 | |
| 153 | vdr-plugin_copy_source_tree() { |
208 | vdr-plugin_copy_source_tree() { |
|
|
209 | pushd . >/dev/null |
| 154 | cp -r ${S} ${T}/source-tree |
210 | cp -r ${S} ${T}/source-tree |
| 155 | cd ${T}/source-tree |
211 | cd ${T}/source-tree |
| 156 | mv Makefile.orig Makefile |
212 | mv Makefile.orig Makefile |
| 157 | sed -i Makefile \ |
213 | sed -i Makefile \ |
| 158 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
214 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 159 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
215 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 160 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
216 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 161 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
217 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
218 | popd >/dev/null |
| 162 | } |
219 | } |
| 163 | |
220 | |
| 164 | vdr-plugin_install_source_tree() { |
221 | vdr-plugin_install_source_tree() { |
| 165 | einfo "Installing sources" |
222 | einfo "Installing sources" |
| 166 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
223 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 178 | case "$1" in |
235 | case "$1" in |
| 179 | prepare) |
236 | prepare) |
| 180 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
237 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 181 | ;; |
238 | ;; |
| 182 | compile) |
239 | compile) |
|
|
240 | if [[ -z ${PLUGIN_MAKEFILE_PATCHED} ]]; then |
|
|
241 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
242 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
243 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
244 | echo |
|
|
245 | eerror "Please report this at bugs.gentoo.org." |
|
|
246 | die "vdr-plugin_src_unpack not called!" |
|
|
247 | fi |
| 183 | cd ${S} |
248 | cd ${S} |
| 184 | |
249 | |
| 185 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
250 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 186 | ;; |
251 | ;; |
| 187 | esac |
252 | esac |
| 188 | |
253 | |
| 189 | shift |
254 | shift |
| 190 | done |
255 | done |
| … | |
… | |
| 192 | |
257 | |
| 193 | vdr-plugin_src_install() { |
258 | vdr-plugin_src_install() { |
| 194 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
259 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 195 | cd ${S} |
260 | cd ${S} |
| 196 | |
261 | |
|
|
262 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
263 | local mname=${P}-Makefile |
|
|
264 | cp Makefile ${mname}.patched |
|
|
265 | cp Makefile.orig ${mname}.before |
|
|
266 | |
|
|
267 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
268 | |
|
|
269 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
270 | doins ${mname}.diff |
|
|
271 | |
|
|
272 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
273 | doins ${mname}.before |
|
|
274 | |
|
|
275 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
276 | doins ${mname}.patched |
|
|
277 | |
|
|
278 | fi |
|
|
279 | |
| 197 | insinto "${VDR_PLUGIN_DIR}" |
280 | insinto "${VDR_PLUGIN_DIR}" |
| 198 | doins libvdr-*.so.* |
281 | doins libvdr-*.so.* |
|
|
282 | local docfile |
| 199 | dodoc README* HISTORY CHANGELOG |
283 | for docfile in README* HISTORY CHANGELOG; do |
| 200 | |
284 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
285 | done |
| 201 | |
286 | |
| 202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
287 | # 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 |
288 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 204 | |
289 | |
| 205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
290 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| … | |
… | |
| 216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
301 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 217 | fi |
302 | fi |
| 218 | |
303 | |
| 219 | |
304 | |
| 220 | |
305 | |
| 221 | insinto /usr/lib/vdr/checksums |
306 | insinto ${VDR_CHECKSUM_DIR} |
| 222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
307 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
308 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 224 | else |
309 | else |
| 225 | if which md5sum >/dev/null 2>&1; then |
310 | if which md5sum >/dev/null 2>&1; then |
| 226 | cd ${S} |
311 | cd ${S} |
| 227 | ( |
312 | ( |
| 228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
313 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 229 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
314 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 230 | ) > header-md5-${PN} |
315 | ) > header-md5-${PN} |
| 231 | doins header-md5-${PN} |
316 | doins header-md5-${PN} |
| 232 | fi |
317 | fi |
| 233 | fi |
318 | fi |