| 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.31 2006/09/07 18:49:44 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 |
| 121 | unpack) |
141 | unpack) |
| … | |
… | |
| 141 | sed -i Makefile \ |
161 | sed -i Makefile \ |
| 142 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
162 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 143 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
163 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 144 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
164 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 145 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
165 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
|
|
166 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 146 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
167 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 147 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
168 | -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 $? |
169 | eend $? |
| 151 | |
170 | |
| 152 | ebegin " Converting to APIVERSION" |
171 | ebegin " Converting to APIVERSION" |
| 153 | sed -i Makefile \ |
172 | sed -i Makefile \ |
| 154 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
173 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| … | |
… | |
| 158 | |
177 | |
| 159 | ebegin " Correcting CXXFLAGS" |
178 | ebegin " Correcting CXXFLAGS" |
| 160 | sed -i Makefile \ |
179 | sed -i Makefile \ |
| 161 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
180 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
| 162 | eend $? |
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 | add_local_patch) |
|
|
192 | cd ${S} |
|
|
193 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
194 | echo |
|
|
195 | einfo "Applying local patches" |
|
|
196 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
197 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
198 | done |
|
|
199 | fi |
| 163 | ;; |
200 | ;; |
| 164 | esac |
201 | esac |
| 165 | |
202 | |
| 166 | shift |
203 | shift |
| 167 | done |
204 | done |
| … | |
… | |
| 197 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
234 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 198 | ;; |
235 | ;; |
| 199 | compile) |
236 | compile) |
| 200 | cd ${S} |
237 | cd ${S} |
| 201 | |
238 | |
| 202 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
239 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 203 | ;; |
240 | ;; |
| 204 | esac |
241 | esac |
| 205 | |
242 | |
| 206 | shift |
243 | shift |
| 207 | done |
244 | done |
| … | |
… | |
| 260 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
297 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 261 | else |
298 | else |
| 262 | if which md5sum >/dev/null 2>&1; then |
299 | if which md5sum >/dev/null 2>&1; then |
| 263 | cd ${S} |
300 | cd ${S} |
| 264 | ( |
301 | ( |
| 265 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
302 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 266 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
303 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 267 | ) > header-md5-${PN} |
304 | ) > header-md5-${PN} |
| 268 | doins header-md5-${PN} |
305 | doins header-md5-${PN} |
| 269 | fi |
306 | fi |
| 270 | fi |
307 | fi |