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