| 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.33 2006/09/19 19:31:33 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.51 2007/10/08 14:58:14 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 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
| 8 | |
8 | |
| … | |
… | |
| 38 | # |
38 | # |
| 39 | # If ${VDR_RCADDON_FILE} is set install this file |
39 | # If ${VDR_RCADDON_FILE} is set install this file |
| 40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
40 | # else install ${FILESDIR}/rc-addon.sh if it exists. |
| 41 | # |
41 | # |
| 42 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
42 | # Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 43 | # (in example vdr-femon this would be /usr/lib/vdr/rcscript/plugin-femon.sh) |
43 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
| 44 | # |
44 | # |
| 45 | # 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 |
| 46 | # 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 |
| 47 | # 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. |
| 48 | |
48 | |
| … | |
… | |
| 58 | # all patches which ending on diff or patch in this DIR will automatically applied |
58 | # all patches which ending on diff or patch in this DIR will automatically applied |
| 59 | # |
59 | # |
| 60 | |
60 | |
| 61 | inherit base multilib eutils flag-o-matic |
61 | inherit base multilib eutils flag-o-matic |
| 62 | |
62 | |
| 63 | IUSE="debug" |
63 | IUSE="" |
| 64 | |
64 | |
| 65 | # 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 |
| 66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| 67 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
67 | VDRPLUGIN="${VDRPLUGIN/#vdr-/}" |
| 68 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
68 | VDRPLUGIN="${VDRPLUGIN/%-cvs/}" |
| … | |
… | |
| 71 | |
71 | |
| 72 | # works in most cases |
72 | # works in most cases |
| 73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 74 | |
74 | |
| 75 | # depend on headers for DVB-driver |
75 | # depend on headers for DVB-driver |
| 76 | RDEPEND=">=media-tv/gentoo-vdr-scripts-0.3.4-r1" |
76 | DEPEND=">=media-tv/gentoo-vdr-scripts-0.3.8 |
|
|
77 | || ( >=media-tv/gentoo-vdr-scripts-0.4.2 >=media-tv/vdrplugin-rebuild-0.2 ) |
|
|
78 | >=app-admin/eselect-vdr-0.0.2 |
| 77 | DEPEND="media-tv/linuxtv-dvb-headers" |
79 | media-tv/linuxtv-dvb-headers" |
| 78 | |
80 | |
| 79 | |
81 | |
| 80 | # this code is from linux-mod.eclass |
82 | # New method of storing plugindb |
| 81 | update_vdrplugindb() { |
83 | # Called from src_install |
|
|
84 | # file maintained by normal portage-methods |
|
|
85 | create_plugindb_file() { |
| 82 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
86 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
87 | local DB_FILE="${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
88 | insinto "${NEW_VDRPLUGINDB_DIR}" |
|
|
89 | cat <<-EOT > "${D}/${DB_FILE}" |
|
|
90 | VDRPLUGIN_DB=1 |
|
|
91 | CREATOR=ECLASS |
|
|
92 | EBUILD=${CATEGORY}/${PN} |
|
|
93 | EBUILD_V=${PVR} |
|
|
94 | EOT |
|
|
95 | } |
| 83 | |
96 | |
| 84 | if [[ ! -f ${VDRPLUGINDB_DIR}/vdrplugindb ]]; then |
97 | # Delete files created outside of vdr-plugin.eclass |
| 85 | [[ ! -d ${VDRPLUGINDB_DIR} ]] && mkdir -p ${VDRPLUGINDB_DIR} |
98 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| 86 | touch ${VDRPLUGINDB_DIR}/vdrplugindb |
99 | # not deleted by portage itself - should only be needed as |
|
|
100 | # long as not every system has switched over to |
|
|
101 | # vdrplugin-rebuild-0.2 / gentoo-vdr-scripts-0.4.2 |
|
|
102 | delete_orphan_plugindb_file() { |
|
|
103 | #elog Testing for orphaned plugindb file |
|
|
104 | local NEW_VDRPLUGINDB_DIR=/usr/share/vdr/vdrplugin-rebuild/ |
|
|
105 | local DB_FILE="${ROOT}/${NEW_VDRPLUGINDB_DIR}/${CATEGORY}-${PF}" |
|
|
106 | |
|
|
107 | # file exists |
|
|
108 | [[ -f ${DB_FILE} ]] || return |
|
|
109 | |
|
|
110 | # will portage handle the file itself |
|
|
111 | if grep -q CREATOR=ECLASS "${DB_FILE}"; then |
|
|
112 | #elog file owned by eclass - don't touch it |
|
|
113 | return |
|
|
114 | fi |
|
|
115 | |
|
|
116 | elog "Removing orphaned plugindb-file." |
|
|
117 | elog "\t#rm ${DB_FILE}" |
|
|
118 | rm "${DB_FILE}" |
|
|
119 | } |
|
|
120 | |
|
|
121 | |
|
|
122 | create_header_checksum_file() |
|
|
123 | { |
|
|
124 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
|
|
125 | # If vdr in $ROOT and / differ, plugins will not run anyway |
|
|
126 | |
|
|
127 | insinto "${VDR_CHECKSUM_DIR}" |
|
|
128 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
129 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
|
|
130 | else |
|
|
131 | if type -p md5sum >/dev/null 2>&1; then |
|
|
132 | cd "${S}" |
|
|
133 | ( |
|
|
134 | cd "${VDR_INCLUDE_DIR}" |
|
|
135 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
136 | ) > header-md5-${PN} |
|
|
137 | doins header-md5-${PN} |
| 87 | fi |
138 | fi |
| 88 | if [[ -z $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 89 | einfo "Adding plugin to vdrplugindb." |
|
|
| 90 | echo "a:1:${CATEGORY}/${PN}-${PVR}" >> ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 91 | fi |
|
|
| 92 | } |
|
|
| 93 | |
|
|
| 94 | remove_vdrplugindb() { |
|
|
| 95 | local VDRPLUGINDB_DIR=${ROOT}/var/lib/vdrplugin-rebuild/ |
|
|
| 96 | |
|
|
| 97 | if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${VDRPLUGINDB_DIR}/vdrplugindb) ]]; then |
|
|
| 98 | einfo "Removing ${CATEGORY}/${PN}-${PVR} from vdrplugindb." |
|
|
| 99 | sed -ie "/.*${CATEGORY}\/${P}.*/d" ${VDRPLUGINDB_DIR}/vdrplugindb |
|
|
| 100 | fi |
139 | fi |
| 101 | } |
140 | } |
| 102 | |
141 | |
| 103 | vdr-plugin_pkg_setup() { |
142 | vdr-plugin_pkg_setup() { |
| 104 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
143 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 105 | append-flags -fPIC |
144 | append-flags -fPIC |
| 106 | use debug && append-flags -g |
|
|
| 107 | |
145 | |
| 108 | # Where should the plugins live in the filesystem |
146 | # Where should the plugins live in the filesystem |
| 109 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
147 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 110 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
148 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 111 | |
149 | |
| 112 | # transition to /usr/share/... will need new vdr-scripts version stable |
150 | # was /usr/lib/... some time ago |
|
|
151 | # since gentoo-vdr-scripts-0.3.6 it works with /usr/share/... |
| 113 | VDR_RC_DIR="/usr/lib/vdr/rcscript" |
152 | VDR_RC_DIR="/usr/share/vdr/rcscript" |
| 114 | |
153 | |
| 115 | # Pathes to includes |
154 | # Pathes to includes |
| 116 | VDR_INCLUDE_DIR="/usr/include/vdr" |
155 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 117 | DVB_INCLUDE_DIR="/usr/include" |
156 | DVB_INCLUDE_DIR="/usr/include" |
| 118 | |
157 | |
| 119 | |
158 | |
|
|
159 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
|
|
160 | LOCDIR="/usr/share/vdr/locale" |
|
|
161 | if has_version ">=media-video/vdr-1.5.7"; then |
|
|
162 | USE_GETTEXT=1 |
|
|
163 | else |
|
|
164 | USE_GETTEXT=0 |
|
|
165 | fi |
|
|
166 | |
| 120 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
167 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 121 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' ${VDR_INCLUDE_DIR}/config.h) |
168 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 122 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
169 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 123 | |
170 | |
| 124 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
171 | einfo "Building ${PF} against vdr-${VDRVERSION}" |
| 125 | einfo "APIVERSION: ${APIVERSION}" |
172 | einfo "APIVERSION: ${APIVERSION}" |
| 126 | } |
173 | } |
| … | |
… | |
| 131 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
178 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 132 | echo |
179 | echo |
| 133 | eerror "Please report this at bugs.gentoo.org." |
180 | eerror "Please report this at bugs.gentoo.org." |
| 134 | die "vdr-plugin_pkg_setup not called!" |
181 | die "vdr-plugin_pkg_setup not called!" |
| 135 | fi |
182 | fi |
| 136 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile |
183 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
| 137 | |
184 | |
| 138 | while [ "$1" ]; do |
185 | while [ "$1" ]; do |
| 139 | |
186 | |
| 140 | case "$1" in |
187 | case "$1" in |
|
|
188 | all_but_unpack) |
|
|
189 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
190 | ;; |
| 141 | unpack) |
191 | unpack) |
| 142 | base_src_unpack |
192 | base_src_unpack |
| 143 | ;; |
193 | ;; |
| 144 | patchmakefile) |
194 | patchmakefile) |
| 145 | if ! cd ${S}; then |
195 | if ! cd "${S}"; then |
| 146 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
196 | ewarn "There seems to be no plugin-directory with the name ${S##*/}" |
| 147 | ewarn "Perhaps you find one among these:" |
197 | ewarn "Perhaps you find one among these:" |
| 148 | cd "${WORKDIR}" |
198 | cd "${WORKDIR}" |
| 149 | einfo "$(/bin/ls -1 ${WORKDIR})" |
199 | ewarn "$(/bin/ls -1 "${WORKDIR}")" |
| 150 | die "Could not change to plugin-source-directory!" |
200 | die "Could not change to plugin-source-directory!" |
| 151 | fi |
201 | fi |
| 152 | |
202 | |
| 153 | einfo "Patching Makefile" |
203 | einfo "Patching Makefile" |
| 154 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
204 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 155 | cp Makefile Makefile.orig |
205 | cp Makefile "${WORKDIR}"/Makefile.before |
| 156 | |
206 | |
| 157 | sed -i Makefile \ |
207 | sed -i Makefile \ |
| 158 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
208 | -e '1i\#Makefile was patched by vdr-plugin.eclass' |
| 159 | |
209 | |
| 160 | ebegin " Setting Pathes" |
210 | ebegin " Setting Pathes" |
| … | |
… | |
| 173 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
223 | -e 's:^APIVERSION = :APIVERSION ?= :' \ |
| 174 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
224 | -e 's:$(LIBDIR)/$@.$(VDRVERSION):$(LIBDIR)/$@.$(APIVERSION):' \ |
| 175 | -e '2i\APIVERSION = '"${APIVERSION}" |
225 | -e '2i\APIVERSION = '"${APIVERSION}" |
| 176 | eend $? |
226 | eend $? |
| 177 | |
227 | |
| 178 | ebegin " Correcting CXXFLAGS" |
228 | ebegin " Correcting Compile-Flags" |
| 179 | sed -i Makefile \ |
229 | sed -i Makefile \ |
| 180 | -e 's:^CXXFLAGS:#CXXFLAGS:' |
230 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
|
|
231 | -e '/LDFLAGS/!s:-shared:$(LDFLAGS) -shared:' |
| 181 | eend $? |
232 | eend $? |
| 182 | |
233 | |
| 183 | ebegin " Disabling file stripping" |
234 | ebegin " Disabling file stripping" |
| 184 | sed -i Makefile \ |
235 | sed -i Makefile \ |
| 185 | -e '/@.*strip/d' \ |
236 | -e '/@.*strip/d' \ |
| … | |
… | |
| 191 | # Use a file instead of an variable as single-stepping via ebuild |
242 | # Use a file instead of an variable as single-stepping via ebuild |
| 192 | # destroys environment. |
243 | # destroys environment. |
| 193 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
244 | touch ${WORKDIR}/.vdr-plugin_makefile_patched |
| 194 | ;; |
245 | ;; |
| 195 | add_local_patch) |
246 | add_local_patch) |
| 196 | cd ${S} |
247 | cd "${S}" |
| 197 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
248 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
| 198 | echo |
249 | echo |
| 199 | einfo "Applying local patches" |
250 | einfo "Applying local patches" |
| 200 | for LOCALPATCH in ${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}/*.{diff,patch}; do |
251 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
| 201 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
252 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
| 202 | done |
253 | done |
| 203 | fi |
254 | fi |
| 204 | ;; |
255 | ;; |
|
|
256 | i18n) |
|
|
257 | cd "${S}" |
|
|
258 | if [[ ${USE_GETTEXT} = 0 ]]; then |
|
|
259 | # Remove i18n Target if using older vdr |
|
|
260 | sed -i Makefile \ |
|
|
261 | -e '/^all:/s/ i18n//' |
|
|
262 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
|
|
263 | einfo "Converting translations to gettext" |
|
|
264 | |
|
|
265 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
266 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
267 | eerror "Missing ${i18n_tool}" |
|
|
268 | eerror "Please re-emerge vdr" |
|
|
269 | die "Missing ${i18n_tool}" |
|
|
270 | fi |
|
|
271 | |
|
|
272 | # call i18n-to-gettext tool |
|
|
273 | # take all texts missing tr call into special file |
|
|
274 | "${i18n_tool}" 2>/dev/null \ |
|
|
275 | |sed -e '/^"/!d' \ |
|
|
276 | -e '/^""$/d' \ |
|
|
277 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
278 | > dummy-translations-trNOOP.c |
|
|
279 | |
|
|
280 | # if there were untranslated texts just run it again |
|
|
281 | # now the missing calls are listed in |
|
|
282 | # dummy-translations-trNOOP.c |
|
|
283 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
284 | "${i18n_tool}" &>/dev/null |
|
|
285 | fi |
|
|
286 | |
|
|
287 | # now use the modified Makefile |
|
|
288 | mv Makefile.new Makefile |
|
|
289 | fi |
| 205 | esac |
290 | esac |
| 206 | |
291 | |
| 207 | shift |
292 | shift |
| 208 | done |
293 | done |
| 209 | } |
294 | } |
| 210 | |
295 | |
| 211 | vdr-plugin_copy_source_tree() { |
296 | vdr-plugin_copy_source_tree() { |
| 212 | pushd . >/dev/null |
297 | pushd . >/dev/null |
| 213 | cp -r ${S} ${T}/source-tree |
298 | cp -r "${S}" "${T}"/source-tree |
| 214 | cd ${T}/source-tree |
299 | cd "${T}"/source-tree |
| 215 | mv Makefile.orig Makefile |
300 | cp "${WORKDIR}"/Makefile.before Makefile |
| 216 | sed -i Makefile \ |
301 | sed -i Makefile \ |
| 217 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
302 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 218 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
303 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 219 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
304 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 220 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
305 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| 221 | popd >/dev/null |
306 | popd >/dev/null |
| 222 | } |
307 | } |
| 223 | |
308 | |
| 224 | vdr-plugin_install_source_tree() { |
309 | vdr-plugin_install_source_tree() { |
| 225 | einfo "Installing sources" |
310 | einfo "Installing sources" |
| 226 | destdir=${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN} |
311 | destdir="${VDRSOURCE_DIR}/vdr-${VDRVERSION}/PLUGINS/src/${VDRPLUGIN}" |
| 227 | insinto ${destdir}-${PV} |
312 | insinto "${destdir}-${PV}" |
| 228 | doins -r ${T}/source-tree/* |
313 | doins -r "${T}"/source-tree/* |
| 229 | |
314 | |
| 230 | dosym ${VDRPLUGIN}-${PV} ${destdir} |
315 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 231 | } |
316 | } |
| 232 | |
317 | |
| 233 | vdr-plugin_src_compile() { |
318 | vdr-plugin_src_compile() { |
| 234 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
319 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
| 235 | |
320 | |
| … | |
… | |
| 246 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
331 | eerror "calling vdr-plugin_src_unpack to patch the Makefile." |
| 247 | echo |
332 | echo |
| 248 | eerror "Please report this at bugs.gentoo.org." |
333 | eerror "Please report this at bugs.gentoo.org." |
| 249 | die "vdr-plugin_src_unpack not called!" |
334 | die "vdr-plugin_src_unpack not called!" |
| 250 | fi |
335 | fi |
| 251 | cd ${S} |
336 | cd "${S}" |
| 252 | |
337 | |
| 253 | emake ${BUILD_PARAMS} ${VDRPLUGIN_MAKE_TARGET:-all} || die "emake failed" |
338 | emake ${BUILD_PARAMS} \ |
|
|
339 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
|
|
340 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
341 | || die "emake failed" |
| 254 | ;; |
342 | ;; |
| 255 | esac |
343 | esac |
| 256 | |
344 | |
| 257 | shift |
345 | shift |
| 258 | done |
346 | done |
| 259 | } |
347 | } |
| 260 | |
348 | |
| 261 | vdr-plugin_src_install() { |
349 | vdr-plugin_src_install() { |
| 262 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
350 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_install_source_tree |
| 263 | cd ${S} |
351 | cd "${WORKDIR}" |
| 264 | |
352 | |
| 265 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
353 | if [[ -n ${VDR_MAINTAINER_MODE} ]]; then |
| 266 | local mname=${P}-Makefile |
354 | local mname="${P}-Makefile" |
| 267 | cp Makefile ${mname}.patched |
355 | cp "${S}"/Makefile "${mname}.patched" |
| 268 | cp Makefile.orig ${mname}.before |
356 | cp Makefile.before "${mname}.before" |
| 269 | |
357 | |
| 270 | diff -u ${mname}.before ${mname}.patched > ${mname}.diff |
358 | diff -u "${mname}.before" "${mname}.patched" > "${mname}.diff" |
| 271 | |
359 | |
| 272 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
360 | insinto "/usr/share/vdr/maintainer-data/makefile-changes" |
| 273 | doins ${mname}.diff |
361 | doins "${mname}.diff" |
| 274 | |
362 | |
| 275 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
363 | insinto "/usr/share/vdr/maintainer-data/makefile-before" |
| 276 | doins ${mname}.before |
364 | doins "${mname}.before" |
| 277 | |
365 | |
| 278 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
366 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 279 | doins ${mname}.patched |
367 | doins "${mname}.patched" |
| 280 | |
368 | |
| 281 | fi |
369 | fi |
| 282 | |
370 | |
|
|
371 | cd "${S}" |
| 283 | insinto "${VDR_PLUGIN_DIR}" |
372 | insinto "${VDR_PLUGIN_DIR}" |
| 284 | doins libvdr-*.so.* |
373 | doins libvdr-*.so.* |
|
|
374 | |
|
|
375 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
|
|
376 | einfo "Installing locales" |
|
|
377 | cd "${TMP_LOCALE_DIR}" |
|
|
378 | insinto "${LOCDIR}" |
|
|
379 | doins -r * |
|
|
380 | fi |
|
|
381 | |
|
|
382 | cd "${S}" |
| 285 | local docfile |
383 | local docfile |
| 286 | for docfile in README* HISTORY CHANGELOG; do |
384 | for docfile in README* HISTORY CHANGELOG; do |
| 287 | [[ -f ${docfile} ]] && dodoc ${docfile} |
385 | [[ -f ${docfile} ]] && dodoc ${docfile} |
| 288 | done |
386 | done |
| 289 | |
387 | |
| 290 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
388 | # if VDR_CONFD_FILE is empty and ${FILESDIR}/confd exists take it |
| 291 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
389 | [[ -z ${VDR_CONFD_FILE} ]] && [[ -e ${FILESDIR}/confd ]] && VDR_CONFD_FILE=${FILESDIR}/confd |
| 292 | |
390 | |
| 293 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
391 | if [[ -n ${VDR_CONFD_FILE} ]]; then |
| 294 | insinto /etc/conf.d |
|
|
| 295 | newins "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
392 | newconfd "${VDR_CONFD_FILE}" vdr.${VDRPLUGIN} |
| 296 | fi |
393 | fi |
| 297 | |
394 | |
| 298 | |
395 | |
| 299 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
396 | # if VDR_RCADDON_FILE is empty and ${FILESDIR}/rc-addon.sh exists take it |
| 300 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
397 | [[ -z ${VDR_RCADDON_FILE} ]] && [[ -e ${FILESDIR}/rc-addon.sh ]] && VDR_RCADDON_FILE=${FILESDIR}/rc-addon.sh |
| … | |
… | |
| 302 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
399 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 303 | insinto "${VDR_RC_DIR}" |
400 | insinto "${VDR_RC_DIR}" |
| 304 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
401 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 305 | fi |
402 | fi |
| 306 | |
403 | |
|
|
404 | create_header_checksum_file |
|
|
405 | create_plugindb_file |
|
|
406 | } |
| 307 | |
407 | |
| 308 | |
408 | vdr-plugin_print_enable_command() { |
| 309 | insinto ${VDR_CHECKSUM_DIR} |
409 | ewarn "emerge --config ${PN} is deprecated" |
| 310 | if [[ -f ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
410 | elog |
| 311 | newins ${ROOT}${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN} |
411 | elog "To activate this vdr-plugin execute the following command:" |
| 312 | else |
412 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
| 313 | if which md5sum >/dev/null 2>&1; then |
413 | elog |
| 314 | cd ${S} |
|
|
| 315 | ( |
|
|
| 316 | cd ${ROOT}${VDR_INCLUDE_DIR} |
|
|
| 317 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
| 318 | ) > header-md5-${PN} |
|
|
| 319 | doins header-md5-${PN} |
|
|
| 320 | fi |
|
|
| 321 | fi |
|
|
| 322 | } |
414 | } |
| 323 | |
415 | |
| 324 | vdr-plugin_pkg_postinst() { |
416 | vdr-plugin_pkg_postinst() { |
| 325 | update_vdrplugindb |
417 | vdr-plugin_print_enable_command |
| 326 | einfo |
418 | |
| 327 | einfo "The vdr plugin ${VDRPLUGIN} has now been installed." |
|
|
| 328 | einfo "To activate execute the following command:" |
|
|
| 329 | einfo |
|
|
| 330 | einfo " emerge --config ${PN}" |
|
|
| 331 | einfo |
|
|
| 332 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
419 | if [[ -n "${VDR_CONFD_FILE}" ]]; then |
| 333 | einfo "And have a look at the config-file" |
420 | elog "Please have a look at the config-file" |
| 334 | einfo "/etc/conf.d/vdr.${VDRPLUGIN}" |
421 | elog "\t/etc/conf.d/vdr.${VDRPLUGIN}" |
| 335 | einfo |
422 | elog |
| 336 | fi |
423 | fi |
| 337 | } |
424 | } |
| 338 | |
425 | |
| 339 | vdr-plugin_pkg_postrm() { |
426 | vdr-plugin_pkg_postrm() { |
| 340 | remove_vdrplugindb |
427 | delete_orphan_plugindb_file |
| 341 | } |
428 | } |
| 342 | |
429 | |
| 343 | vdr-plugin_pkg_config_final() { |
|
|
| 344 | diff ${conf_orig} ${conf} |
|
|
| 345 | rm ${conf_orig} |
|
|
| 346 | } |
|
|
| 347 | |
|
|
| 348 | vdr-plugin_pkg_config() { |
430 | vdr-plugin_pkg_config_legacy() { |
|
|
431 | elog "Using old interface to gentoo-vdr-scripts-0.3.7" |
| 349 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
432 | if [[ -z "${INSTALLPLUGIN}" ]]; then |
| 350 | INSTALLPLUGIN="${VDRPLUGIN}" |
433 | INSTALLPLUGIN="${VDRPLUGIN}" |
| 351 | fi |
434 | fi |
|
|
435 | |
|
|
436 | active=0 |
| 352 | # First test if plugin is already inside PLUGINS |
437 | # First test if plugin is already inside PLUGINS |
| 353 | local conf=/etc/conf.d/vdr |
438 | local conf=/etc/conf.d/vdr.plugins |
| 354 | conf_orig=${conf}.before_emerge_config |
439 | exec 3<${conf} |
| 355 | cp ${conf} ${conf_orig} |
440 | while read -u 3 line; do |
| 356 | |
441 | [[ ${line} == "" ]] && continue |
| 357 | einfo "Reading ${conf}" |
442 | [[ ${line:0:1} == "#" ]] && continue |
| 358 | if ! grep -q "^PLUGINS=" ${conf}; then |
443 | set -- ${line} |
| 359 | local LINE=$(sed ${conf} -n -e '/^#.*PLUGINS=/=' | tail -n 1) |
444 | [[ ${1} == ${INSTALLPLUGIN} ]] && active=1 |
| 360 | if [[ -n "${LINE}" ]]; then |
|
|
| 361 | sed -e ${LINE}'a PLUGINS=""' -i ${conf} |
|
|
| 362 | else |
|
|
| 363 | echo 'PLUGINS=""' >> ${conf} |
|
|
| 364 | fi |
|
|
| 365 | unset LINE |
|
|
| 366 | fi |
|
|
| 367 | |
|
|
| 368 | unset PLUGINS |
|
|
| 369 | PLUGINS=$(source /etc/conf.d/vdr; echo ${PLUGINS}) |
|
|
| 370 | |
|
|
| 371 | active=0 |
|
|
| 372 | for p in ${PLUGINS}; do |
|
|
| 373 | if [[ "${p}" == "${INSTALLPLUGIN}" ]]; then |
|
|
| 374 | active=1 |
|
|
| 375 | break; |
|
|
| 376 | fi |
|
|
| 377 | done |
445 | done |
|
|
446 | exec 3<&- |
| 378 | |
447 | |
| 379 | if [[ "${active}" == "1" ]]; then |
448 | if [[ $active == 0 ]]; then |
|
|
449 | elog "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
450 | |
|
|
451 | # The pure edit process. |
|
|
452 | echo "${INSTALLPLUGIN}" >> "${conf}" |
|
|
453 | else |
| 380 | einfo "${INSTALLPLUGIN} already activated" |
454 | elog "${INSTALLPLUGIN} already activated" |
| 381 | echo |
455 | echo |
| 382 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
456 | read -p "Do you want to deactivate ${INSTALLPLUGIN} (yes/no) " answer |
| 383 | if [[ "${answer}" != "yes" ]]; then |
457 | if [[ "${answer}" != "yes" ]]; then |
| 384 | einfo "aborted" |
458 | elog "aborted" |
| 385 | return |
459 | return |
| 386 | fi |
460 | fi |
| 387 | einfo "Removing ${INSTALLPLUGIN} from active plugins." |
461 | elog "Removing ${INSTALLPLUGIN} from active plugins." |
| 388 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=.*\<'${INSTALLPLUGIN}'\>/=' | tail -n 1) |
|
|
| 389 | sed -i ${conf} -e ${LINE}'s/\<'${INSTALLPLUGIN}'\>//' \ |
|
|
| 390 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 391 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 392 | -e ${LINE}'s/" /"/g' |
|
|
| 393 | |
462 | |
| 394 | vdr-plugin_pkg_config_final |
463 | # The pure edit process |
| 395 | return |
464 | sed -i "${conf}" -e "/^[[:space:]]*${INSTALLPLUGIN}[[:space:]]*\$/d" |
| 396 | fi |
465 | fi |
|
|
466 | } |
| 397 | |
467 | |
| 398 | |
|
|
| 399 | einfo "Adding ${INSTALLPLUGIN} to active plugins." |
|
|
| 400 | local LINE=$(sed ${conf} -n -e '/^PLUGINS=/=' | tail -n 1) |
|
|
| 401 | sed -i ${conf} -e ${LINE}'s/^PLUGINS=" *\(.*\)"/PLUGINS="\1 '${INSTALLPLUGIN}'"/' \ |
|
|
| 402 | -e ${LINE}'s/ \( \)*/ /g' \ |
|
|
| 403 | -e ${LINE}'s/ "/"/g' \ |
|
|
| 404 | -e ${LINE}'s/" /"/g' |
|
|
| 405 | |
|
|
| 406 | vdr-plugin_pkg_config_final |
468 | vdr-plugin_pkg_config() { |
|
|
469 | vdr-plugin_print_enable_command |
|
|
470 | |
|
|
471 | einfo "Calling this now" |
|
|
472 | eselect vdr-plugin enable "${PN#vdr-}" |
| 407 | } |
473 | } |
| 408 | |
474 | |
| 409 | fix_vdr_libsi_include() |
475 | fix_vdr_libsi_include() |
| 410 | { |
476 | { |
| 411 | einfo "Fixing include of libsi-headers" |
477 | einfo "Fixing include of libsi-headers" |