| 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.22 2006/06/17 14:51:32 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.33 2006/09/19 19:31:33 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 | # |
| … | |
… | |
| 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 multilib 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 |
| … | |
… | |
| 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 | |
78 | |
| 66 | |
79 | |
| 67 | # this code is from linux-mod.eclass |
80 | # this code is from linux-mod.eclass |
| 68 | update_vdrplugindb() { |
81 | update_vdrplugindb() { |
| … | |
… | |
| 98 | |
111 | |
| 99 | # transition to /usr/share/... will need new vdr-scripts version stable |
112 | # transition to /usr/share/... will need new vdr-scripts version stable |
| 100 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
113 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
| 101 | |
114 | |
| 102 | # Pathes to includes |
115 | # Pathes to includes |
| 103 | VDR_INCLUDE_DIR="/usr/include" |
116 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 104 | DVB_INCLUDE_DIR="/usr/include" |
117 | DVB_INCLUDE_DIR="/usr/include" |
| 105 | |
118 | |
| 106 | |
119 | |
| 107 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
120 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 108 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/vdr/config.h) |
121 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
| 109 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
122 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 110 | |
123 | |
| 111 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
124 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 112 | einfo "APIVERSION: ${APIVERSION}" |
125 | einfo "APIVERSION: ${APIVERSION}" |
| 113 | } |
126 | } |
| 114 | |
127 | |
| 115 | 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 |
| 116 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
136 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 117 | |
137 | |
| 118 | while [ "$1" ]; do |
138 | while [ "$1" ]; do |
| 119 | |
139 | |
| 120 | case "$1" in |
140 | case "$1" in |
| 121 | unpack) |
141 | unpack) |
| … | |
… | |
| 128 | cd "${WORKDIR}" |
148 | cd "${WORKDIR}" |
| 129 | einfo "$(/bin/ls -1 ${WORKDIR})" |
149 | einfo "$(/bin/ls -1 ${WORKDIR})" |
| 130 | die "Could not change to plugin-source-directory!" |
150 | die "Could not change to plugin-source-directory!" |
| 131 | fi |
151 | fi |
| 132 | |
152 | |
| 133 | ebegin "Patching Makefile" |
153 | einfo "Patching Makefile" |
| 134 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
154 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 135 | cp Makefile Makefile.orig |
155 | cp Makefile Makefile.orig |
|
|
156 | |
| 136 | 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 \ |
| 137 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
162 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 138 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
163 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 139 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
164 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 140 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
165 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 141 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
166 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 142 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
167 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 143 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
168 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 144 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
169 | eend $? |
| 145 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
170 | |
|
|
171 | ebegin " Converting to APIVERSION" |
|
|
172 | sed -i Makefile \ |
| 146 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
173 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 147 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
174 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 148 | -e '1i\APIVERSION = '"${APIVERSION}" |
175 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 149 | 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 | |
|
|
191 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
192 | # destroys environment. |
|
|
193 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
194 | ;; |
|
|
195 | add_local_patch) |
|
|
196 | cd ${S} |
|
|
197 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
198 | echo |
|
|
199 | einfo "Applying local patches" |
|
|
200 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
201 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
202 | done |
|
|
203 | fi |
| 150 | ;; |
204 | ;; |
| 151 | esac |
205 | esac |
| 152 | |
206 | |
| 153 | shift |
207 | shift |
| 154 | done |
208 | done |
| 155 | } |
209 | } |
| 156 | |
210 | |
| 157 | vdr-plugin_copy_source_tree() { |
211 | vdr-plugin_copy_source_tree() { |
|
|
212 | pushd . >/dev/null |
| 158 | cp -r ${S} ${T}/source-tree |
213 | cp -r ${S} ${T}/source-tree |
| 159 | cd ${T}/source-tree |
214 | cd ${T}/source-tree |
| 160 | mv Makefile.orig Makefile |
215 | mv Makefile.orig Makefile |
| 161 | sed -i Makefile \ |
216 | sed -i Makefile \ |
| 162 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
217 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 163 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
218 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 164 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
219 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 165 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
220 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
221 | popd >/dev/null |
| 166 | } |
222 | } |
| 167 | |
223 | |
| 168 | vdr-plugin_install_source_tree() { |
224 | vdr-plugin_install_source_tree() { |
| 169 | einfo "Installing sources" |
225 | einfo "Installing sources" |
| 170 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
226 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 182 | case "$1" in |
238 | case "$1" in |
| 183 | prepare) |
239 | prepare) |
| 184 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
240 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 185 | ;; |
241 | ;; |
| 186 | compile) |
242 | compile) |
|
|
243 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
244 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
245 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
246 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
247 | echo |
|
|
248 | eerror "Please report this at bugs.gentoo.org." |
|
|
249 | die "vdr-plugin_src_unpack not called!" |
|
|
250 | fi |
| 187 | cd ${S} |
251 | cd ${S} |
| 188 | |
252 | |
| 189 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
253 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 190 | ;; |
254 | ;; |
| 191 | esac |
255 | esac |
| 192 | |
256 | |
| 193 | shift |
257 | shift |
| 194 | done |
258 | done |
| … | |
… | |
| 216 | |
280 | |
| 217 | fi |
281 | fi |
| 218 | |
282 | |
| 219 | insinto "${VDR_PLUGIN_DIR}" |
283 | insinto "${VDR_PLUGIN_DIR}" |
| 220 | doins libvdr-*.so.* |
284 | doins libvdr-*.so.* |
|
|
285 | local docfile |
| 221 | dodoc README* HISTORY CHANGELOG |
286 | for docfile in README* HISTORY CHANGELOG; do |
| 222 | |
287 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
288 | done |
| 223 | |
289 | |
| 224 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
290 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 225 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
291 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 226 | |
292 | |
| 227 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
293 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| … | |
… | |
| 245 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
311 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 246 | else |
312 | else |
| 247 | if which md5sum >/dev/null 2>&1; then |
313 | if which md5sum >/dev/null 2>&1; then |
| 248 | cd ${S} |
314 | cd ${S} |
| 249 | ( |
315 | ( |
| 250 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
316 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 251 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
317 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 252 | ) > header-md5-${PN} |
318 | ) > header-md5-${PN} |
| 253 | doins header-md5-${PN} |
319 | doins header-md5-${PN} |
| 254 | fi |
320 | fi |
| 255 | fi |
321 | fi |