| 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.29 2006/08/29 10:33:19 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() { |
| 113 | [ -z "$1" ] && vdr-plugin_src_unpack unpack patchmakefile |
129 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
| 114 | |
130 | |
| 115 | while [ "$1" ]; do |
131 | while [ "$1" ]; do |
| 116 | |
132 | |
| 117 | case "$1" in |
133 | case "$1" in |
| 118 | unpack) |
134 | unpack) |
| … | |
… | |
| 125 | cd "${WORKDIR}" |
141 | cd "${WORKDIR}" |
| 126 | einfo "$(/bin/ls -1 ${WORKDIR})" |
142 | einfo "$(/bin/ls -1 ${WORKDIR})" |
| 127 | die "Could not change to plugin-source-directory!" |
143 | die "Could not change to plugin-source-directory!" |
| 128 | fi |
144 | fi |
| 129 | |
145 | |
| 130 | ebegin "Patching Makefile" |
146 | einfo "Patching Makefile" |
| 131 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
147 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
|
|
148 | cp Makefile Makefile.orig |
|
|
149 | |
| 132 | sed -i.orig Makefile \ |
150 | sed -i Makefile \ |
|
|
151 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
|
|
152 | |
|
|
153 | ebegin " Setting Pathes" |
|
|
154 | sed -i Makefile \ |
| 133 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
155 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 134 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
156 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 135 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
157 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
| 136 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
158 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
| 137 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
159 | -e 's:-I$(VDRDIR)/include -I$(DVBDIR)/include:-I$(DVBDIR)/include -I$(VDRDIR)/include:' \ |
| 138 | -e 's:-I$(VDRDIR)/include:-I$(VDRDIR):' \ |
160 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
| 139 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
161 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 140 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' \ |
162 | eend $? |
| 141 | -e 's:$(VDRDIR)/\([a-z]*\.h\|Make.config\):$(VDRDIR)/vdr/\1:' \ |
163 | |
|
|
164 | ebegin " Converting to APIVERSION" |
|
|
165 | sed -i Makefile \ |
| 142 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
166 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 143 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
167 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 144 | -e '1i\APIVERSION = '"${APIVERSION}" |
168 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 145 | eend $? |
169 | eend $? |
|
|
170 | |
|
|
171 | ebegin " Correcting CXXFLAGS" |
|
|
172 | sed -i Makefile \ |
|
|
173 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
|
|
174 | eend $? |
|
|
175 | |
|
|
176 | ebegin " Disabling file stripping" |
|
|
177 | sed -i Makefile \ |
|
|
178 | -e '/@.*strip/d' \ |
|
|
179 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
|
|
180 | -e '/^STRIP =/d' \ |
|
|
181 | -e '/@.*\$(STRIP)/d' |
|
|
182 | eend $? |
|
|
183 | ;; |
|
|
184 | add_local_patch) |
|
|
185 | cd ${S} |
|
|
186 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
|
|
187 | echo |
|
|
188 | einfo "Applying local patches" |
|
|
189 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
|
|
190 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
|
|
191 | done |
|
|
192 | fi |
| 146 | ;; |
193 | ;; |
| 147 | esac |
194 | esac |
| 148 | |
195 | |
| 149 | shift |
196 | shift |
| 150 | done |
197 | done |
| … | |
… | |
| 192 | |
239 | |
| 193 | vdr-plugin_src_install() { |
240 | vdr-plugin_src_install() { |
| 194 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
241 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 195 | cd ${S} |
242 | cd ${S} |
| 196 | |
243 | |
|
|
244 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
|
|
245 | local mname=${P}-Makefile |
|
|
246 | cp Makefile ${mname}.patched |
|
|
247 | cp Makefile.orig ${mname}.before |
|
|
248 | |
|
|
249 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
|
|
250 | |
|
|
251 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
|
|
252 | doins ${mname}.diff |
|
|
253 | |
|
|
254 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
|
|
255 | doins ${mname}.before |
|
|
256 | |
|
|
257 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
|
|
258 | doins ${mname}.patched |
|
|
259 | |
|
|
260 | fi |
|
|
261 | |
| 197 | insinto "${VDR_PLUGIN_DIR}" |
262 | insinto "${VDR_PLUGIN_DIR}" |
| 198 | doins libvdr-*.so.* |
263 | doins libvdr-*.so.* |
|
|
264 | local docfile |
| 199 | dodoc README* HISTORY CHANGELOG |
265 | for docfile in README* HISTORY CHANGELOG; do |
| 200 | |
266 | [[ -f ${docfile} ]] && dodoc ${docfile} |
|
|
267 | done |
| 201 | |
268 | |
| 202 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
269 | # 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 |
270 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 204 | |
271 | |
| 205 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
272 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| … | |
… | |
| 216 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
283 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 217 | fi |
284 | fi |
| 218 | |
285 | |
| 219 | |
286 | |
| 220 | |
287 | |
| 221 | insinto /usr/lib/vdr/checksums |
288 | insinto ${VDR_CHECKSUM_DIR} |
| 222 | if [[ -f ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr ]]; then |
289 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
| 223 | newins ${ROOT}/usr/lib/vdr/checksums/header-md5-vdr header-md5-${PN} |
290 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
| 224 | else |
291 | else |
| 225 | if which md5sum >/dev/null 2>&1; then |
292 | if which md5sum >/dev/null 2>&1; then |
| 226 | cd ${S} |
293 | cd ${S} |
| 227 | ( |
294 | ( |
| 228 | cd ${ROOT}${VDR_INCLUDE_DIR}/vdr |
295 | cd ${ROOT}${VDR_INCLUDE_DIR} |
| 229 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
296 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
| 230 | ) > header-md5-${PN} |
297 | ) > header-md5-${PN} |
| 231 | doins header-md5-${PN} |
298 | doins header-md5-${PN} |
| 232 | fi |
299 | fi |
| 233 | fi |
300 | fi |