| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2012 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.58 2008/04/22 11:04:05 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.88 2012/04/23 23:13:52 hd_brummy Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: vdr-plugin.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # vdr@gentoo.org |
|
|
8 | # @BLURB: common vdr plugin ebuild functions |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # Eclass for easing maitenance of vdr plugin ebuilds |
|
|
11 | |
|
|
12 | # Authors: |
|
|
13 | # Matthias Schwarzott <zzam@gentoo.org> |
|
|
14 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
|
|
15 | # Christian Ruppert <idl0r@gentoo.org> |
|
|
16 | |
|
|
17 | # Plugin config file installation: |
| 4 | # |
18 | # |
| 5 | # Author: |
19 | # A plugin config file can be specified through the $VDR_CONFD_FILE variable, it |
| 6 | # Matthias Schwarzott <zzam@gentoo.org> |
20 | # defaults to ${FILESDIR}/confd. Each config file will be installed as e.g. |
| 7 | # Joerg Bornkessel <hd_brummy@gentoo.org> |
21 | # ${D}/etc/conf.d/vdr.${VDRPLUGIN} |
| 8 | |
22 | |
| 9 | # vdr-plugin.eclass |
23 | # Installation of rc-addon files: |
|
|
24 | # NOTE: rc-addon files must be valid shell scripts! |
| 10 | # |
25 | # |
| 11 | # eclass to create ebuilds for vdr plugins |
26 | # Installing rc-addon files is basically the same as for plugin config files |
|
|
27 | # (see above), it's just using the $VDR_RCADDON_FILE variable instead. |
|
|
28 | # The default value when $VDR_RCADDON_FILE is undefined is: |
|
|
29 | # ${FILESDIR}/rc-addon.sh and will be installed as |
|
|
30 | # ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh |
| 12 | # |
31 | # |
|
|
32 | # The rc-addon files will be sourced by the startscript when the specific plugin |
|
|
33 | # has been enabled. |
|
|
34 | # rc-addon files may be used to prepare everything that is necessary for the |
|
|
35 | # plugin start/stop, like passing extra command line options and so on. |
| 13 | |
36 | |
| 14 | # Example ebuild (vdr-femon): |
37 | # Applying your own local/user patches: |
|
|
38 | # This is done by using the epatch_user() function of the eutils.eclass. |
|
|
39 | # Simply put your patches into one of these directories: |
|
|
40 | # /etc/portage/patches/<CATEGORY>/<PF|P|PN>/ |
|
|
41 | # Quote: where the first of these three directories to exist will be the one to |
|
|
42 | # use, ignoring any more general directories which might exist as well. |
| 15 | # |
43 | # |
| 16 | # inherit vdr-plugin |
44 | # For more details about it please take a look at the eutils.class. |
| 17 | # IUSE="" |
|
|
| 18 | # SLOT="0" |
|
|
| 19 | # DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)" |
|
|
| 20 | # HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/" |
|
|
| 21 | # SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz" |
|
|
| 22 | # LICENSE="GPL-2" |
|
|
| 23 | # KEYWORDS="~x86" |
|
|
| 24 | # DEPEND=">=media-video/vdr-1.3.27" |
|
|
| 25 | # |
|
|
| 26 | # |
|
|
| 27 | |
|
|
| 28 | # Installation of a config file for the plugin |
|
|
| 29 | # |
|
|
| 30 | # If ${VDR_CONFD_FILE} is set install this file |
|
|
| 31 | # else install ${FILESDIR}/confd if it exists. |
|
|
| 32 | |
|
|
| 33 | # Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}. |
|
|
| 34 | # For the plugin vdr-femon this would be /etc/conf.d/vdr.femon |
|
|
| 35 | |
|
|
| 36 | |
|
|
| 37 | # Installation of an rc-addon file for the plugin |
|
|
| 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 |
|
|
| 43 | # (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh) |
|
|
| 44 | # |
|
|
| 45 | # This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr |
|
|
| 46 | # It could be used for special startup actions for this plugins, or to create the |
|
|
| 47 | # plugin command line options from a nicer version of a conf.d file. |
|
|
| 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 | |
45 | |
| 61 | inherit base multilib eutils flag-o-matic |
46 | inherit base multilib eutils flag-o-matic |
|
|
47 | |
|
|
48 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
49 | die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established" |
|
|
50 | fi |
| 62 | |
51 | |
| 63 | IUSE="" |
52 | IUSE="" |
| 64 | |
53 | |
| 65 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
54 | # Name of the plugin stripped from all vdrplugin-, vdr- and -cvs pre- and postfixes |
| 66 | VDRPLUGIN="${PN/#vdrplugin-/}" |
55 | VDRPLUGIN="${PN/#vdrplugin-/}" |
| … | |
… | |
| 71 | |
60 | |
| 72 | # works in most cases |
61 | # works in most cases |
| 73 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
62 | S="${WORKDIR}/${VDRPLUGIN}-${PV}" |
| 74 | |
63 | |
| 75 | # depend on headers for DVB-driver |
64 | # depend on headers for DVB-driver |
| 76 | DEPEND=">=media-tv/gentoo-vdr-scripts-0.3.8 |
65 | COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2" |
| 77 | || ( >=media-tv/gentoo-vdr-scripts-0.4.2 >=media-tv/vdrplugin-rebuild-0.2 ) |
66 | |
|
|
67 | DEPEND="${COMMON_DEPEND} |
|
|
68 | virtual/linuxtv-dvb-headers" |
|
|
69 | RDEPEND="${COMMON_DEPEND} |
| 78 | >=app-admin/eselect-vdr-0.0.2 |
70 | >=app-admin/eselect-vdr-0.0.2" |
| 79 | media-tv/linuxtv-dvb-headers" |
|
|
| 80 | |
71 | |
|
|
72 | # this is a hack for ebuilds like vdr-xineliboutput that want to |
|
|
73 | # conditionally install a vdr-plugin |
|
|
74 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]]; then |
|
|
75 | # make DEPEND conditional |
|
|
76 | IUSE="${IUSE} vdr" |
|
|
77 | DEPEND="vdr? ( ${DEPEND} )" |
|
|
78 | RDEPEND="vdr? ( ${RDEPEND} )" |
|
|
79 | fi |
| 81 | |
80 | |
| 82 | # New method of storing plugindb |
81 | # New method of storing plugindb |
| 83 | # Called from src_install |
82 | # Called from src_install |
| 84 | # file maintained by normal portage-methods |
83 | # file maintained by normal portage-methods |
| 85 | create_plugindb_file() { |
84 | create_plugindb_file() { |
| … | |
… | |
| 97 | { |
96 | { |
| 98 | echo "VDRPLUGIN_DB=1" |
97 | echo "VDRPLUGIN_DB=1" |
| 99 | echo "CREATOR=ECLASS" |
98 | echo "CREATOR=ECLASS" |
| 100 | echo "EBUILD=${CATEGORY}/${PN}" |
99 | echo "EBUILD=${CATEGORY}/${PN}" |
| 101 | echo "EBUILD_V=${PVR}" |
100 | echo "EBUILD_V=${PVR}" |
|
|
101 | echo "PLUGINS=\"$@\"" |
| 102 | } > "${D}/${DB_FILE}" |
102 | } > "${D}/${DB_FILE}" |
| 103 | } |
103 | } |
| 104 | |
104 | |
| 105 | # Delete files created outside of vdr-plugin.eclass |
105 | # Delete files created outside of vdr-plugin.eclass |
| 106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
106 | # vdrplugin-rebuild.ebuild converted plugindb and files are |
| … | |
… | |
| 130 | create_header_checksum_file() |
130 | create_header_checksum_file() |
| 131 | { |
131 | { |
| 132 | # Danger: Not using $ROOT here, as compile will also not use it !!! |
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 |
133 | # If vdr in $ROOT and / differ, plugins will not run anyway |
| 134 | |
134 | |
|
|
135 | local CHKSUM="header-md5-vdr" |
|
|
136 | |
|
|
137 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
|
|
138 | cp "${VDR_CHECKSUM_DIR}/header-md5-vdr" "${CHKSUM}" |
|
|
139 | elif type -p md5sum >/dev/null 2>&1; then |
|
|
140 | ( |
|
|
141 | cd "${VDR_INCLUDE_DIR}" |
|
|
142 | md5sum *.h libsi/*.h|LC_ALL=C sort --key=2 |
|
|
143 | ) > "${CHKSUM}" |
|
|
144 | else |
|
|
145 | die "Could not create md5 checksum of headers" |
|
|
146 | fi |
|
|
147 | |
| 135 | insinto "${VDR_CHECKSUM_DIR}" |
148 | insinto "${VDR_CHECKSUM_DIR}" |
| 136 | if [[ -f ${VDR_CHECKSUM_DIR}/header-md5-vdr ]]; then |
149 | local p_name |
| 137 | newins "${VDR_CHECKSUM_DIR}/header-md5-vdr header-md5-${PN}" |
150 | for p_name; do |
| 138 | else |
151 | newins "${CHKSUM}" "header-md5-${p_name}" |
| 139 | if type -p md5sum >/dev/null 2>&1; then |
152 | done |
| 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} |
|
|
| 146 | fi |
|
|
| 147 | fi |
|
|
| 148 | } |
153 | } |
| 149 | |
154 | |
| 150 | fix_vdr_libsi_include() |
155 | fix_vdr_libsi_include() |
| 151 | { |
156 | { |
| 152 | einfo "Fixing include of libsi-headers" |
157 | #einfo "Fixing include of libsi-headers" |
| 153 | local f |
158 | local f |
| 154 | for f; do |
159 | for f; do |
| 155 | sed -i "${f}" \ |
160 | sed -i "${f}" \ |
| 156 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
161 | -e '/#include/s:"\(.*libsi.*\)":<\1>:' \ |
| 157 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
162 | -e '/#include/s:<.*\(libsi/.*\)>:<vdr/\1>:' |
| … | |
… | |
| 161 | vdr_patchmakefile() { |
166 | vdr_patchmakefile() { |
| 162 | einfo "Patching Makefile" |
167 | einfo "Patching Makefile" |
| 163 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
168 | [[ -e Makefile ]] || die "Makefile of plugin can not be found!" |
| 164 | cp Makefile "${WORKDIR}"/Makefile.before |
169 | cp Makefile "${WORKDIR}"/Makefile.before |
| 165 | |
170 | |
| 166 | ebegin " Setting Pathes" |
171 | # plugin makefiles use VDRDIR in strange ways |
|
|
172 | # assumptions: |
|
|
173 | # 1. $(VDRDIR) contains Make.config |
|
|
174 | # 2. $(VDRDIR) contains config.h |
|
|
175 | # 3. $(VDRDIR)/include/vdr contains the headers |
|
|
176 | # 4. $(VDRDIR) contains main vdr Makefile |
|
|
177 | # 5. $(VDRDIR)/locale exists |
|
|
178 | # 6. $(VDRDIR) allows to access vdr source files |
|
|
179 | # |
|
|
180 | # We only have one directory (for now /usr/include/vdr), |
|
|
181 | # that contains vdr-headers and Make.config. |
|
|
182 | # To satisfy 1-3 we do this: |
|
|
183 | # Set VDRDIR=/usr/include/vdr |
|
|
184 | # Set VDRINCDIR=/usr/include |
|
|
185 | # Change $(VDRDIR)/include to $(VDRINCDIR) |
|
|
186 | |
| 167 | sed -i Makefile \ |
187 | sed -i Makefile \ |
| 168 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
188 | -e "s:^VDRDIR.*$:VDRDIR = ${VDR_INCLUDE_DIR}:" \ |
| 169 | -e "s:^LIBDIR.*$:LIBDIR = ${S}:" \ |
189 | -e "/^VDRDIR/a VDRINCDIR = ${VDR_INCLUDE_DIR%/vdr}" \ |
| 170 | -e "s:^TMPDIR.*$:TMPDIR = ${T}:" \ |
190 | -e '/VDRINCDIR.*=/!s:$(VDRDIR)/include:$(VDRINCDIR):' \ |
| 171 | -e 's:-I$(VDRDIR)/include:-I'"${VDR_INCLUDE_DIR%vdr}"':' \ |
191 | \ |
| 172 | -e "/^DVBDIR/d" \ |
|
|
| 173 | -e 's:-I$(DVBDIR)/include::' |
192 | -e 's:-I$(DVBDIR)/include::' \ |
| 174 | eend $? |
193 | -e 's:-I$(DVBDIR)::' |
| 175 | |
194 | |
| 176 | # maybe needed for multiproto: |
195 | # maybe needed for multiproto: |
| 177 | #sed -i Makefile \ |
196 | #sed -i Makefile \ |
| 178 | # -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
197 | # -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):' |
198 | # -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' |
| 181 | |
199 | |
| 182 | if ! grep -q APIVERSION Makefile; then |
200 | if ! grep -q APIVERSION Makefile; then |
| 183 | ebegin " Converting to APIVERSION" |
201 | ebegin " Converting to APIVERSION" |
| 184 | sed -i Makefile \ |
202 | sed -i Makefile \ |
| … | |
… | |
| 196 | |
214 | |
| 197 | # Disabling file stripping, useful for debugging |
215 | # Disabling file stripping, useful for debugging |
| 198 | sed -i Makefile \ |
216 | sed -i Makefile \ |
| 199 | -e '/@.*strip/d' \ |
217 | -e '/@.*strip/d' \ |
| 200 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
218 | -e '/strip \$(LIBDIR)\/\$@/d' \ |
| 201 | -e '/@.*\$(STRIP)/d' |
219 | -e 's/STRIP.*=.*$/STRIP = true/' |
| 202 | |
220 | |
| 203 | # Use a file instead of a variable as single-stepping via ebuild |
221 | # Use a file instead of a variable as single-stepping via ebuild |
| 204 | # destroys environment. |
222 | # destroys environment. |
| 205 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
223 | touch "${WORKDIR}"/.vdr-plugin_makefile_patched |
| 206 | } |
224 | } |
| 207 | |
225 | |
| 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_has_gettext() { |
226 | vdr_has_gettext() { |
| 219 | has_version ">=media-video/vdr-1.5.7" |
227 | has_version ">=media-video/vdr-1.5.7" |
| 220 | } |
228 | } |
| 221 | |
229 | |
| 222 | plugin_has_gettext() { |
230 | plugin_has_gettext() { |
| 223 | [[ -d po ]] |
231 | [[ -d po ]] |
| 224 | } |
232 | } |
| 225 | |
233 | |
| 226 | vdr_i18n_convert_to_gettext() { |
234 | vdr_i18n_convert_to_gettext() { |
|
|
235 | if has_version ">=media-video/vdr-1.7.22"; then |
|
|
236 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext" |
|
|
237 | else |
| 227 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
238 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
|
|
239 | fi |
| 228 | |
240 | |
| 229 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
241 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
| 230 | ewarn "Conversion to gettext disabled in ebuild" |
242 | ewarn "Conversion to gettext disabled in ebuild" |
| 231 | return 1 |
243 | return 1 |
| 232 | fi |
244 | fi |
| … | |
… | |
| 262 | return 1 |
274 | return 1 |
| 263 | fi |
275 | fi |
| 264 | } |
276 | } |
| 265 | |
277 | |
| 266 | vdr_i18n_disable_gettext() { |
278 | vdr_i18n_disable_gettext() { |
| 267 | ebegin "Disabling gettext support in plugin" |
279 | #einfo "Disabling gettext support in plugin" |
|
|
280 | |
| 268 | # Remove i18n Target if using older vdr |
281 | # Remove i18n Target if using older vdr |
| 269 | sed -i Makefile \ |
282 | sed -i Makefile \ |
| 270 | -e '/^all:/s/ i18n//' |
283 | -e '/^all:/s/ i18n//' |
| 271 | eend 0 |
|
|
| 272 | } |
284 | } |
| 273 | |
285 | |
| 274 | vdr_i18n() { |
286 | vdr_i18n() { |
| 275 | if vdr_has_gettext; then |
287 | if vdr_has_gettext; then |
| 276 | einfo "VDR has gettext support" |
288 | #einfo "VDR has gettext support" |
| 277 | if plugin_has_gettext; then |
289 | if plugin_has_gettext; then |
| 278 | einfo "Plugin has gettext support, fine" |
290 | #einfo "Plugin has gettext support, fine" |
|
|
291 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
292 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
|
|
293 | fi |
| 279 | else |
294 | else |
| 280 | vdr_i18n_convert_to_gettext |
295 | vdr_i18n_convert_to_gettext |
| 281 | if [[ $? != 0 ]]; then |
296 | if [[ $? != 0 ]]; then |
| 282 | eerror "" |
|
|
| 283 | eerror "Plugin will have only english OSD texts" |
297 | einfo "Plugin has no OSD texts or will have only english OSD texts" |
| 284 | eerror "it needs manual fixing." |
|
|
| 285 | fi |
298 | fi |
| 286 | fi |
299 | fi |
| 287 | else |
300 | else |
| 288 | einfo "VDR has no gettext support" |
301 | #einfo "VDR has no gettext support" |
| 289 | if plugin_has_gettext; then |
302 | if plugin_has_gettext; then |
| 290 | vdr_i18n_disable_gettext |
303 | vdr_i18n_disable_gettext |
| 291 | fi |
304 | fi |
| 292 | fi |
305 | fi |
| 293 | } |
306 | } |
| … | |
… | |
| 295 | vdr-plugin_copy_source_tree() { |
308 | vdr-plugin_copy_source_tree() { |
| 296 | pushd . >/dev/null |
309 | pushd . >/dev/null |
| 297 | cp -r "${S}" "${T}"/source-tree |
310 | cp -r "${S}" "${T}"/source-tree |
| 298 | cd "${T}"/source-tree |
311 | cd "${T}"/source-tree |
| 299 | cp "${WORKDIR}"/Makefile.before Makefile |
312 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
313 | # TODO: Fix this, maybe no longer needed |
| 300 | sed -i Makefile \ |
314 | sed -i Makefile \ |
| 301 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
315 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 302 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
316 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 303 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
317 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 304 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
318 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| … | |
… | |
| 313 | |
327 | |
| 314 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
328 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 315 | } |
329 | } |
| 316 | |
330 | |
| 317 | vdr-plugin_print_enable_command() { |
331 | vdr-plugin_print_enable_command() { |
|
|
332 | local p_name c=0 l="" |
|
|
333 | for p_name in ${vdr_plugin_list}; do |
|
|
334 | c=$(( c+1 )) |
|
|
335 | l="$l ${p_name#vdr-}" |
|
|
336 | done |
|
|
337 | |
| 318 | elog |
338 | elog |
|
|
339 | case $c in |
|
|
340 | 1) elog "Installed plugin${l}" ;; |
|
|
341 | *) elog "Installed $c plugins:${l}" ;; |
|
|
342 | esac |
| 319 | elog "To activate this vdr-plugin execute the following command:" |
343 | elog "To activate a plugin execute this command:" |
| 320 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
344 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
| 321 | elog |
345 | elog |
| 322 | } |
346 | } |
| 323 | |
347 | |
|
|
348 | has_vdr() { |
|
|
349 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
350 | } |
| 324 | |
351 | |
| 325 | ## exported functions |
352 | ## exported functions |
| 326 | |
353 | |
| 327 | vdr-plugin_pkg_setup() { |
354 | vdr-plugin_pkg_setup() { |
| 328 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
355 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 329 | append-flags -fPIC |
356 | append-flags -fPIC |
| 330 | |
357 | |
|
|
358 | # Plugins need to be compiled with position independent code, otherwise linking |
|
|
359 | # VDR against it will fail |
|
|
360 | if has_version ">=media-video/vdr-1.7.13"; then |
|
|
361 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
362 | fi |
|
|
363 | |
| 331 | # Where should the plugins live in the filesystem |
364 | # Where should the plugins live in the filesystem |
| 332 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
365 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 333 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
366 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 334 | |
367 | |
| 335 | # was /usr/lib/... some time ago |
368 | # was /usr/lib/... some time ago |
| … | |
… | |
| 338 | |
371 | |
| 339 | # Pathes to includes |
372 | # Pathes to includes |
| 340 | VDR_INCLUDE_DIR="/usr/include/vdr" |
373 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 341 | DVB_INCLUDE_DIR="/usr/include" |
374 | DVB_INCLUDE_DIR="/usr/include" |
| 342 | |
375 | |
| 343 | |
|
|
| 344 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
376 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 345 | LOCDIR="/usr/share/vdr/locale" |
377 | LOCDIR="/usr/share/locale" |
|
|
378 | |
|
|
379 | if ! has_vdr; then |
|
|
380 | # set to invalid values to detect abuses |
|
|
381 | VDRVERSION="eclass_no_vdr_installed" |
|
|
382 | APIVERSION="eclass_no_vdr_installed" |
|
|
383 | |
|
|
384 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
385 | einfo "VDR not found!" |
|
|
386 | else |
|
|
387 | # if vdr is required |
|
|
388 | die "VDR not found!" |
|
|
389 | fi |
|
|
390 | return |
|
|
391 | fi |
| 346 | |
392 | |
| 347 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
393 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 348 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
394 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 349 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
395 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 350 | |
396 | |
| 351 | einfo "Compiling against" |
397 | einfo "Compiling against" |
| 352 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
398 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
399 | |
|
|
400 | |
|
|
401 | if [ -n "${VDR_LOCAL_PATCHES_DIR}" ]; then |
|
|
402 | eerror "Using VDR_LOCAL_PATCHES_DIR is deprecated!" |
|
|
403 | eerror "Please move all your patches into" |
|
|
404 | eerror "${EROOT}/etc/portage/patches/${CATEGORY}/${P}" |
|
|
405 | eerror "and remove or unset the VDR_LOCAL_PATCHES_DIR variable." |
|
|
406 | die |
|
|
407 | fi |
|
|
408 | } |
|
|
409 | |
|
|
410 | vdr-plugin_src_util() { |
|
|
411 | while [ "$1" ]; do |
|
|
412 | case "$1" in |
|
|
413 | all) |
|
|
414 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
415 | ;; |
|
|
416 | prepare|all_but_unpack) |
|
|
417 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
418 | ;; |
|
|
419 | unpack) |
|
|
420 | base_src_unpack |
|
|
421 | ;; |
|
|
422 | add_local_patch) |
|
|
423 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
424 | epatch_user |
|
|
425 | ;; |
|
|
426 | patchmakefile) |
|
|
427 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
428 | vdr_patchmakefile |
|
|
429 | ;; |
|
|
430 | i18n) |
|
|
431 | # i18n-to-gettext tool removed starting with version 1.7.27 |
|
|
432 | if has_version "<media-video/vdr-1.7.27"; then |
|
|
433 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
434 | vdr_i18n |
|
|
435 | fi |
|
|
436 | ;; |
|
|
437 | esac |
|
|
438 | |
|
|
439 | shift |
|
|
440 | done |
| 353 | } |
441 | } |
| 354 | |
442 | |
| 355 | vdr-plugin_src_unpack() { |
443 | vdr-plugin_src_unpack() { |
| 356 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
444 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 357 | eerror "Wrong use of vdr-plugin.eclass." |
445 | eerror "Wrong use of vdr-plugin.eclass." |
| 358 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
446 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 359 | echo |
447 | echo |
| 360 | eerror "Please report this at bugs.gentoo.org." |
448 | eerror "Please report this at bugs.gentoo.org." |
| 361 | die "vdr-plugin_pkg_setup not called!" |
449 | die "vdr-plugin_pkg_setup not called!" |
| 362 | fi |
450 | fi |
| 363 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
451 | if [ -z "$1" ]; then |
|
|
452 | case "${EAPI:-0}" in |
|
|
453 | 2|3|4) |
|
|
454 | vdr-plugin_src_util unpack |
|
|
455 | ;; |
|
|
456 | *) |
|
|
457 | vdr-plugin_src_util all |
|
|
458 | ;; |
|
|
459 | esac |
|
|
460 | |
|
|
461 | else |
|
|
462 | vdr-plugin_src_util $@ |
|
|
463 | fi |
|
|
464 | } |
|
|
465 | |
|
|
466 | vdr-plugin_src_prepare() { |
|
|
467 | base_src_prepare |
|
|
468 | vdr-plugin_src_util prepare |
|
|
469 | } |
|
|
470 | |
|
|
471 | vdr-plugin_src_compile() { |
|
|
472 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
| 364 | |
473 | |
| 365 | while [ "$1" ]; do |
474 | while [ "$1" ]; do |
| 366 | |
475 | |
| 367 | case "$1" in |
476 | case "$1" in |
| 368 | all_but_unpack) |
477 | copy_source) |
| 369 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
| 370 | ;; |
|
|
| 371 | unpack) |
|
|
| 372 | base_src_unpack |
|
|
| 373 | ;; |
|
|
| 374 | add_local_patch) |
|
|
| 375 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 376 | vdr_add_local_patch |
|
|
| 377 | ;; |
|
|
| 378 | patchmakefile) |
|
|
| 379 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 380 | vdr_patchmakefile |
|
|
| 381 | ;; |
|
|
| 382 | i18n) |
|
|
| 383 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 384 | vdr_i18n |
|
|
| 385 | ;; |
|
|
| 386 | esac |
|
|
| 387 | |
|
|
| 388 | shift |
|
|
| 389 | done |
|
|
| 390 | } |
|
|
| 391 | |
|
|
| 392 | vdr-plugin_src_compile() { |
|
|
| 393 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
| 394 | |
|
|
| 395 | while [ "$1" ]; do |
|
|
| 396 | |
|
|
| 397 | case "$1" in |
|
|
| 398 | prepare) |
|
|
| 399 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
478 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 400 | ;; |
479 | ;; |
| 401 | compile) |
480 | compile) |
| 402 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
481 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
| 403 | eerror "Wrong use of vdr-plugin.eclass." |
482 | eerror "Wrong use of vdr-plugin.eclass." |
| … | |
… | |
| 407 | eerror "Please report this at bugs.gentoo.org." |
486 | eerror "Please report this at bugs.gentoo.org." |
| 408 | die "vdr-plugin_src_unpack not called!" |
487 | die "vdr-plugin_src_unpack not called!" |
| 409 | fi |
488 | fi |
| 410 | cd "${S}" |
489 | cd "${S}" |
| 411 | |
490 | |
|
|
491 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
492 | |
| 412 | emake ${BUILD_PARAMS} \ |
493 | emake ${BUILD_PARAMS} \ |
| 413 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
494 | ${BUILD_TARGETS} \ |
| 414 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
495 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
496 | LIBDIR="${S}" \ |
|
|
497 | TMPDIR="${T}" \ |
| 415 | || die "emake failed" |
498 | || die "emake failed" |
| 416 | ;; |
499 | ;; |
| 417 | esac |
500 | esac |
| 418 | |
501 | |
| 419 | shift |
502 | shift |
| … | |
… | |
| 440 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
523 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 441 | doins "${mname}.patched" |
524 | doins "${mname}.patched" |
| 442 | |
525 | |
| 443 | fi |
526 | fi |
| 444 | |
527 | |
|
|
528 | |
|
|
529 | |
| 445 | cd "${S}" |
530 | cd "${S}" |
| 446 | insinto "${VDR_PLUGIN_DIR}" |
531 | insinto "${VDR_PLUGIN_DIR}" |
| 447 | doins libvdr-*.so.* |
532 | doins libvdr-*.so.* |
|
|
533 | |
|
|
534 | # create list of all created plugin libs |
|
|
535 | vdr_plugin_list="" |
|
|
536 | local p_name |
|
|
537 | for p in libvdr-*.so.*; do |
|
|
538 | p_name="${p%.so*}" |
|
|
539 | p_name="${p_name#lib}" |
|
|
540 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
541 | done |
|
|
542 | |
|
|
543 | create_header_checksum_file ${vdr_plugin_list} |
|
|
544 | create_plugindb_file ${vdr_plugin_list} |
| 448 | |
545 | |
| 449 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
546 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 450 | einfo "Installing locales" |
547 | einfo "Installing locales" |
| 451 | cd "${TMP_LOCALE_DIR}" |
548 | cd "${TMP_LOCALE_DIR}" |
| 452 | insinto "${LOCDIR}" |
549 | insinto "${LOCDIR}" |
| … | |
… | |
| 472 | |
569 | |
| 473 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
570 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 474 | insinto "${VDR_RC_DIR}" |
571 | insinto "${VDR_RC_DIR}" |
| 475 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
572 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 476 | fi |
573 | fi |
| 477 | |
|
|
| 478 | create_header_checksum_file |
|
|
| 479 | create_plugindb_file |
|
|
| 480 | } |
574 | } |
| 481 | |
575 | |
| 482 | vdr-plugin_pkg_postinst() { |
576 | vdr-plugin_pkg_postinst() { |
| 483 | vdr-plugin_print_enable_command |
577 | vdr-plugin_print_enable_command |
| 484 | |
578 | |
| … | |
… | |
| 492 | vdr-plugin_pkg_postrm() { |
586 | vdr-plugin_pkg_postrm() { |
| 493 | delete_orphan_plugindb_file |
587 | delete_orphan_plugindb_file |
| 494 | } |
588 | } |
| 495 | |
589 | |
| 496 | vdr-plugin_pkg_config() { |
590 | vdr-plugin_pkg_config() { |
| 497 | ewarn "emerge --config ${PN} is no longer supported" |
591 | : |
| 498 | vdr-plugin_print_enable_command |
|
|
| 499 | } |
592 | } |
| 500 | |
593 | |
|
|
594 | case "${EAPI:-0}" in |
|
|
595 | 2|3|4) |
|
|
596 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
597 | ;; |
|
|
598 | *) |
| 501 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
599 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
600 | ;; |
|
|
601 | esac |