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