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