| 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.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 | # |
| … | |
… | |
| 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 | ;; |
|
|
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 |
| 146 | ;; |
200 | ;; |
| 147 | esac |
201 | esac |
| 148 | |
202 | |
| 149 | shift |
203 | shift |
| 150 | done |
204 | done |
| … | |
… | |
| 180 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
234 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 181 | ;; |
235 | ;; |
| 182 | compile) |
236 | compile) |
| 183 | cd ${S} |
237 | cd ${S} |
| 184 | |
238 | |
| 185 | emake ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
239 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
| 186 | ;; |
240 | ;; |
| 187 | esac |
241 | esac |
| 188 | |
242 | |
| 189 | shift |
243 | shift |
| 190 | done |
244 | done |
| … | |
… | |
| 192 | |
246 | |
| 193 | vdr-plugin_src_install() { |
247 | vdr-plugin_src_install() { |
| 194 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
248 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 195 | cd ${S} |
249 | cd ${S} |
| 196 | |
250 | |
|
|
251 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
252 | local mname=${P}-Makefile |
|
|
253 | cp Makefile ${mname}.patched |
|
|
254 | cp Makefile.orig ${mname}.before |
|
|
255 | |
|
|
256 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
257 | |
|
|
258 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
259 | doins ${mname}.diff |
|
|
260 | |
|
|
261 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
262 | doins ${mname}.before |
|
|
263 | |
|
|
264 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
265 | doins ${mname}.patched |
|
|
266 | |
|
|
267 | fi |
|
|
268 | |
| 197 | insinto "${VDR_PLUGIN_DIR}" |
269 | insinto "${VDR_PLUGIN_DIR}" |
| 198 | doins libvdr-*.so.* |
270 | doins libvdr-*.so.* |
|
|
271 | local docfile |
| 199 | dodoc README* HISTORY CHANGELOG |
272 | for docfile in README* HISTORY CHANGELOG; do |
| 200 | |
273 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
274 | done |
| 201 | |
275 | |
| 202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
276 | # 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 |
277 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 204 | |
278 | |
| 205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
279 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| … | |
… | |
| 216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
290 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 217 | fi |
291 | fi |
| 218 | |
292 | |
| 219 | |
293 | |
| 220 | |
294 | |
| 221 | insinto /usr/lib/vdr/checksums |
295 | insinto ${VDR_CHECKSUM_DIR} |
| 222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
296 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
297 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 224 | else |
298 | else |
| 225 | if which md5sum >/dev/null 2>&1; then |
299 | if which md5sum >/dev/null 2>&1; then |
| 226 | cd ${S} |
300 | cd ${S} |
| 227 | ( |
301 | ( |
| 228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
302 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 229 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
303 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 230 | ) > header-md5-${PN} |
304 | ) > header-md5-${PN} |
| 231 | doins header-md5-${PN} |
305 | doins header-md5-${PN} |
| 232 | fi |
306 | fi |
| 233 | fi |
307 | fi |