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