| 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.25 2006/07/08 14:31:35 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.34 2006/09/20 08:23:41 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 |
| … | |
… | |
| 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 |
|
|
141 | all_but_unpack) |
|
|
142 | vdr-plugin_src_unpack add_local_patch patchmakefile |
|
|
143 | ;; |
| 121 | unpack) |
144 | unpack) |
| 122 | base_src_unpack |
145 | base_src_unpack |
| 123 | ;; |
146 | ;; |
| 124 | patchmakefile) |
147 | patchmakefile) |
| 125 | if ! cd ${S}; then |
148 | if ! cd ${S}; then |
| … | |
… | |
| 141 | sed -i Makefile \ |
164 | sed -i Makefile \ |
| 142 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
165 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 143 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
166 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 144 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
167 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 145 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
168 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
169 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 146 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
170 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 147 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
171 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 148 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
|
|
| 149 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' |
|
|
| 150 | eend $? |
172 | eend $? |
| 151 | |
173 | |
| 152 | ebegin " Converting to APIVERSION" |
174 | ebegin " Converting to APIVERSION" |
| 153 | sed -i Makefile \ |
175 | sed -i Makefile \ |
| 154 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
176 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| … | |
… | |
| 158 | |
180 | |
| 159 | ebegin " Correcting CXXFLAGS" |
181 | ebegin " Correcting CXXFLAGS" |
| 160 | sed -i Makefile \ |
182 | sed -i Makefile \ |
| 161 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
183 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
| 162 | eend $? |
184 | eend $? |
|
|
185 | |
|
|
186 | ebegin " Disabling file stripping" |
|
|
187 | sed -i Makefile \ |
|
|
188 | -e '/@.*strip/d' \ |
|
|
189 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
190 | -e '/^STRIP =/d' \ |
|
|
191 | -e '/@.*\$(STRIP)/d' |
|
|
192 | eend $? |
|
|
193 | |
|
|
194 | # Use a file instead of an variable as single-stepping via ebuild |
|
|
195 | # destroys environment. |
|
|
196 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
|
|
197 | ;; |
|
|
198 | add_local_patch) |
|
|
199 | cd ${S} |
|
|
200 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
201 | echo |
|
|
202 | einfo "Applying local patches" |
|
|
203 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
204 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
205 | done |
|
|
206 | fi |
| 163 | ;; |
207 | ;; |
| 164 | esac |
208 | esac |
| 165 | |
209 | |
| 166 | shift |
210 | shift |
| 167 | done |
211 | done |
| 168 | } |
212 | } |
| 169 | |
213 | |
| 170 | vdr-plugin_copy_source_tree() { |
214 | vdr-plugin_copy_source_tree() { |
|
|
215 | pushd . >/dev/null |
| 171 | cp -r ${S} ${T}/source-tree |
216 | cp -r ${S} ${T}/source-tree |
| 172 | cd ${T}/source-tree |
217 | cd ${T}/source-tree |
| 173 | mv Makefile.orig Makefile |
218 | mv Makefile.orig Makefile |
| 174 | sed -i Makefile \ |
219 | sed -i Makefile \ |
| 175 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
220 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 176 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
221 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 177 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
222 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 178 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
223 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
|
|
224 | popd >/dev/null |
| 179 | } |
225 | } |
| 180 | |
226 | |
| 181 | vdr-plugin_install_source_tree() { |
227 | vdr-plugin_install_source_tree() { |
| 182 | einfo "Installing sources" |
228 | einfo "Installing sources" |
| 183 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
229 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
| … | |
… | |
| 195 | case "$1" in |
241 | case "$1" in |
| 196 | prepare) |
242 | prepare) |
| 197 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
243 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 198 | ;; |
244 | ;; |
| 199 | compile) |
245 | compile) |
|
|
246 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
|
|
247 | eerror "Wrong use of vdr-plugin.eclass." |
|
|
248 | eerror "An ebuild for a vdr-plugin will not work without" |
|
|
249 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
|
|
250 | echo |
|
|
251 | eerror "Please report this at bugs.gentoo.org." |
|
|
252 | die "vdr-plugin_src_unpack not called!" |
|
|
253 | fi |
| 200 | cd ${S} |
254 | cd ${S} |
| 201 | |
255 | |
| 202 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
256 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 203 | ;; |
257 | ;; |
| 204 | esac |
258 | esac |
| 205 | |
259 | |
| 206 | shift |
260 | shift |
| 207 | done |
261 | done |
| … | |
… | |
| 260 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
314 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 261 | else |
315 | else |
| 262 | if which md5sum >/dev/null 2>&1; then |
316 | if which md5sum >/dev/null 2>&1; then |
| 263 | cd ${S} |
317 | cd ${S} |
| 264 | ( |
318 | ( |
| 265 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
319 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 266 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
320 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 267 | ) > header-md5-${PN} |
321 | ) > header-md5-${PN} |
| 268 | doins header-md5-${PN} |
322 | doins header-md5-${PN} |
| 269 | fi |
323 | fi |
| 270 | fi |
324 | fi |