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