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