| 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.55 2008/04/13 16:26:05 zzam Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.82 2012/03/09 22:44:58 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() { |
226 | vdr_has_gettext() { |
| 209 | if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then |
227 | has_version ">=media-video/vdr-1.5.7" |
| 210 | echo |
228 | } |
| 211 | einfo "Applying local patches" |
229 | |
| 212 | for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do |
230 | plugin_has_gettext() { |
| 213 | test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}" |
231 | [[ -d po ]] |
| 214 | done |
232 | } |
|
|
233 | |
|
|
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 |
|
|
238 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
| 215 | fi |
239 | fi |
|
|
240 | |
|
|
241 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
|
|
242 | ewarn "Conversion to gettext disabled in ebuild" |
|
|
243 | return 1 |
|
|
244 | fi |
|
|
245 | |
|
|
246 | if [[ ! -x ${i18n_tool} ]]; then |
|
|
247 | eerror "Missing ${i18n_tool}" |
|
|
248 | eerror "Please re-emerge vdr" |
|
|
249 | die "Missing ${i18n_tool}" |
|
|
250 | fi |
|
|
251 | |
|
|
252 | ebegin "Auto converting translations to gettext" |
|
|
253 | # call i18n-to-gettext tool |
|
|
254 | # take all texts missing tr call into special file |
|
|
255 | "${i18n_tool}" 2>/dev/null \ |
|
|
256 | |sed -e '/^"/!d' \ |
|
|
257 | -e '/^""$/d' \ |
|
|
258 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
259 | > dummy-translations-trNOOP.c |
|
|
260 | |
|
|
261 | # if there were untranslated texts just run it again |
|
|
262 | # now the missing calls are listed in |
|
|
263 | # dummy-translations-trNOOP.c |
|
|
264 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
265 | "${i18n_tool}" &>/dev/null |
|
|
266 | fi |
|
|
267 | |
|
|
268 | # now use the modified Makefile |
|
|
269 | if [[ -f Makefile.new ]]; then |
|
|
270 | mv Makefile.new Makefile |
|
|
271 | eend 0 "" |
|
|
272 | else |
|
|
273 | eend 1 "Conversion to gettext failed. Plugin needs fixing." |
|
|
274 | return 1 |
|
|
275 | fi |
|
|
276 | } |
|
|
277 | |
|
|
278 | vdr_i18n_disable_gettext() { |
|
|
279 | #einfo "Disabling gettext support in plugin" |
|
|
280 | |
|
|
281 | # Remove i18n Target if using older vdr |
|
|
282 | sed -i Makefile \ |
|
|
283 | -e '/^all:/s/ i18n//' |
| 216 | } |
284 | } |
| 217 | |
285 | |
| 218 | vdr_i18n() { |
286 | vdr_i18n() { |
|
|
287 | if vdr_has_gettext; then |
|
|
288 | #einfo "VDR has gettext support" |
|
|
289 | if plugin_has_gettext; then |
|
|
290 | #einfo "Plugin has gettext support, fine" |
| 219 | if [[ ${USE_GETTEXT} = 0 ]]; then |
291 | if [[ ${NO_GETTEXT_HACK} == "1" ]]; then |
| 220 | # Remove i18n Target if using older vdr |
292 | ewarn "Please remove unneeded NO_GETTEXT_HACK from ebuild." |
| 221 | sed -i Makefile \ |
293 | fi |
| 222 | -e '/^all:/s/ i18n//' |
294 | else |
| 223 | elif [[ ${USE_GETTEXT} = 1 && ! -d po && ${NO_GETTEXT_HACK} != 1 ]]; then |
295 | vdr_i18n_convert_to_gettext |
| 224 | einfo "Plugin is not yet changed for new translation system." |
296 | if [[ $? != 0 ]]; then |
| 225 | einfo "Auto converting translations to gettext" |
297 | eerror "" |
| 226 | |
298 | eerror "Plugin will have only english OSD texts" |
| 227 | local i18n_tool="${ROOT}/usr/share/vdr/bin/i18n-to-gettext.pl" |
299 | eerror "it needs manual fixing." |
| 228 | if [[ ! -x ${i18n_tool} ]]; then |
300 | fi |
| 229 | eerror "Missing ${i18n_tool}" |
|
|
| 230 | eerror "Please re-emerge vdr" |
|
|
| 231 | die "Missing ${i18n_tool}" |
|
|
| 232 | fi |
301 | fi |
| 233 | |
|
|
| 234 | # call i18n-to-gettext tool |
|
|
| 235 | # take all texts missing tr call into special file |
|
|
| 236 | "${i18n_tool}" 2>/dev/null \ |
|
|
| 237 | |sed -e '/^"/!d' \ |
|
|
| 238 | -e '/^""$/d' \ |
|
|
| 239 | -e 's/\(.*\)/trNOOP(\1)/' \ |
|
|
| 240 | > dummy-translations-trNOOP.c |
|
|
| 241 | |
|
|
| 242 | # if there were untranslated texts just run it again |
|
|
| 243 | # now the missing calls are listed in |
|
|
| 244 | # dummy-translations-trNOOP.c |
|
|
| 245 | if [[ -s dummy-translations-trNOOP.c ]]; then |
|
|
| 246 | "${i18n_tool}" &>/dev/null |
|
|
| 247 | fi |
|
|
| 248 | |
|
|
| 249 | # now use the modified Makefile |
|
|
| 250 | if [[ -f Makefile.new ]]; then |
|
|
| 251 | mv Makefile.new Makefile |
|
|
| 252 | else |
302 | else |
| 253 | ewarn "Conversion to gettext failed. Plugin needs fixing." |
303 | #einfo "VDR has no gettext support" |
|
|
304 | if plugin_has_gettext; then |
|
|
305 | vdr_i18n_disable_gettext |
| 254 | fi |
306 | fi |
| 255 | fi |
307 | fi |
| 256 | } |
308 | } |
| 257 | |
309 | |
| 258 | vdr-plugin_copy_source_tree() { |
310 | vdr-plugin_copy_source_tree() { |
| 259 | pushd . >/dev/null |
311 | pushd . >/dev/null |
| 260 | cp -r "${S}" "${T}"/source-tree |
312 | cp -r "${S}" "${T}"/source-tree |
| 261 | cd "${T}"/source-tree |
313 | cd "${T}"/source-tree |
| 262 | cp "${WORKDIR}"/Makefile.before Makefile |
314 | cp "${WORKDIR}"/Makefile.before Makefile |
|
|
315 | # TODO: Fix this, maybe no longer needed |
| 263 | sed -i Makefile \ |
316 | sed -i Makefile \ |
| 264 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
317 | -e "s:^DVBDIR.*$:DVBDIR = ${DVB_INCLUDE_DIR}:" \ |
| 265 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
318 | -e 's:^CXXFLAGS:#CXXFLAGS:' \ |
| 266 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
319 | -e 's:-I$(DVBDIR)/include:-I$(DVBDIR):' \ |
| 267 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
320 | -e 's:-I$(VDRDIR) -I$(DVBDIR):-I$(DVBDIR) -I$(VDRDIR):' |
| … | |
… | |
| 276 | |
329 | |
| 277 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
330 | dosym "${VDRPLUGIN}-${PV}" "${destdir}" |
| 278 | } |
331 | } |
| 279 | |
332 | |
| 280 | vdr-plugin_print_enable_command() { |
333 | vdr-plugin_print_enable_command() { |
|
|
334 | local p_name c=0 l="" |
|
|
335 | for p_name in ${vdr_plugin_list}; do |
|
|
336 | c=$(( c+1 )) |
|
|
337 | l="$l ${p_name#vdr-}" |
|
|
338 | done |
|
|
339 | |
| 281 | elog |
340 | elog |
|
|
341 | case $c in |
|
|
342 | 1) elog "Installed plugin${l}" ;; |
|
|
343 | *) elog "Installed $c plugins:${l}" ;; |
|
|
344 | esac |
| 282 | elog "To activate this vdr-plugin execute the following command:" |
345 | elog "To activate a plugin execute this command:" |
| 283 | elog "\teselect vdr-plugin enable ${PN#vdr-}" |
346 | elog "\teselect vdr-plugin enable <plugin_name> ..." |
| 284 | elog |
347 | elog |
| 285 | } |
348 | } |
| 286 | |
349 | |
|
|
350 | has_vdr() { |
|
|
351 | [[ -f "${VDR_INCLUDE_DIR}"/config.h ]] |
|
|
352 | } |
| 287 | |
353 | |
| 288 | ## exported functions |
354 | ## exported functions |
| 289 | |
355 | |
| 290 | vdr-plugin_pkg_setup() { |
356 | vdr-plugin_pkg_setup() { |
| 291 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
357 | # -fPIC is needed for shared objects on some platforms (amd64 and others) |
| 292 | append-flags -fPIC |
358 | append-flags -fPIC |
| 293 | |
359 | |
|
|
360 | # Plugins need to be compiled with position independent code, otherwise linking |
|
|
361 | # VDR against it will fail |
|
|
362 | if has_version ">=media-video/vdr-1.7.13"; then |
|
|
363 | append-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE |
|
|
364 | fi |
|
|
365 | |
| 294 | # Where should the plugins live in the filesystem |
366 | # Where should the plugins live in the filesystem |
| 295 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
367 | VDR_PLUGIN_DIR="/usr/$(get_libdir)/vdr/plugins" |
| 296 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
368 | VDR_CHECKSUM_DIR="${VDR_PLUGIN_DIR%/plugins}/checksums" |
| 297 | |
369 | |
| 298 | # was /usr/lib/... some time ago |
370 | # was /usr/lib/... some time ago |
| … | |
… | |
| 301 | |
373 | |
| 302 | # Pathes to includes |
374 | # Pathes to includes |
| 303 | VDR_INCLUDE_DIR="/usr/include/vdr" |
375 | VDR_INCLUDE_DIR="/usr/include/vdr" |
| 304 | DVB_INCLUDE_DIR="/usr/include" |
376 | DVB_INCLUDE_DIR="/usr/include" |
| 305 | |
377 | |
| 306 | |
|
|
| 307 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
378 | TMP_LOCALE_DIR="${WORKDIR}/tmp-locale" |
| 308 | LOCDIR="/usr/share/vdr/locale" |
|
|
| 309 | if has_version ">=media-video/vdr-1.5.7"; then |
379 | if has_version ">=media-video/vdr-1.6.0_p2-r7"; then |
| 310 | USE_GETTEXT=1 |
380 | LOCDIR="/usr/share/locale" |
| 311 | else |
381 | else |
| 312 | USE_GETTEXT=0 |
382 | LOCDIR="/usr/share/vdr/locale" |
|
|
383 | fi |
|
|
384 | |
|
|
385 | if ! has_vdr; then |
|
|
386 | # set to invalid values to detect abuses |
|
|
387 | VDRVERSION="eclass_no_vdr_installed" |
|
|
388 | APIVERSION="eclass_no_vdr_installed" |
|
|
389 | |
|
|
390 | if [[ "${GENTOO_VDR_CONDITIONAL:-no}" = "yes" ]] && ! use vdr; then |
|
|
391 | einfo "VDR not found!" |
|
|
392 | else |
|
|
393 | # if vdr is required |
|
|
394 | die "VDR not found!" |
|
|
395 | fi |
|
|
396 | return |
| 313 | fi |
397 | fi |
| 314 | |
398 | |
| 315 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
399 | VDRVERSION=$(awk -F'"' '/define VDRVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 316 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
400 | APIVERSION=$(awk -F'"' '/define APIVERSION/ {print $2}' "${VDR_INCLUDE_DIR}"/config.h) |
| 317 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
401 | [[ -z ${APIVERSION} ]] && APIVERSION="${VDRVERSION}" |
| 318 | |
402 | |
| 319 | einfo "Compiling against" |
403 | einfo "Compiling against" |
| 320 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
404 | einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]" |
|
|
405 | |
|
|
406 | |
|
|
407 | if [ -n "${VDR_LOCAL_PATCHES_DIR}" ]; then |
|
|
408 | eerror "Using VDR_LOCAL_PATCHES_DIR is deprecated!" |
|
|
409 | eerror "Please move all your patches into" |
|
|
410 | eerror "${EROOT}/etc/portage/patches/${CATEGORY}/${P}" |
|
|
411 | eerror "and remove or unset the VDR_LOCAL_PATCHES_DIR variable." |
|
|
412 | die |
|
|
413 | fi |
|
|
414 | } |
|
|
415 | |
|
|
416 | vdr-plugin_src_util() { |
|
|
417 | while [ "$1" ]; do |
|
|
418 | case "$1" in |
|
|
419 | all) |
|
|
420 | vdr-plugin_src_util unpack add_local_patch patchmakefile i18n |
|
|
421 | ;; |
|
|
422 | prepare|all_but_unpack) |
|
|
423 | vdr-plugin_src_util add_local_patch patchmakefile i18n |
|
|
424 | ;; |
|
|
425 | unpack) |
|
|
426 | base_src_unpack |
|
|
427 | ;; |
|
|
428 | add_local_patch) |
|
|
429 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
430 | epatch_user |
|
|
431 | ;; |
|
|
432 | patchmakefile) |
|
|
433 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
434 | vdr_patchmakefile |
|
|
435 | ;; |
|
|
436 | i18n) |
|
|
437 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
438 | vdr_i18n |
|
|
439 | ;; |
|
|
440 | esac |
|
|
441 | |
|
|
442 | shift |
|
|
443 | done |
| 321 | } |
444 | } |
| 322 | |
445 | |
| 323 | vdr-plugin_src_unpack() { |
446 | vdr-plugin_src_unpack() { |
| 324 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
447 | if [[ -z ${VDR_INCLUDE_DIR} ]]; then |
| 325 | eerror "Wrong use of vdr-plugin.eclass." |
448 | eerror "Wrong use of vdr-plugin.eclass." |
| 326 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
449 | eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup." |
| 327 | echo |
450 | echo |
| 328 | eerror "Please report this at bugs.gentoo.org." |
451 | eerror "Please report this at bugs.gentoo.org." |
| 329 | die "vdr-plugin_pkg_setup not called!" |
452 | die "vdr-plugin_pkg_setup not called!" |
| 330 | fi |
453 | fi |
| 331 | [ -z "$1" ] && vdr-plugin_src_unpack unpack add_local_patch patchmakefile i18n |
454 | if [ -z "$1" ]; then |
|
|
455 | case "${EAPI:-0}" in |
|
|
456 | 2|3|4) |
|
|
457 | vdr-plugin_src_util unpack |
|
|
458 | ;; |
|
|
459 | *) |
|
|
460 | vdr-plugin_src_util all |
|
|
461 | ;; |
|
|
462 | esac |
|
|
463 | |
|
|
464 | else |
|
|
465 | vdr-plugin_src_util $@ |
|
|
466 | fi |
|
|
467 | } |
|
|
468 | |
|
|
469 | vdr-plugin_src_prepare() { |
|
|
470 | base_src_prepare |
|
|
471 | vdr-plugin_src_util prepare |
|
|
472 | } |
|
|
473 | |
|
|
474 | vdr-plugin_src_compile() { |
|
|
475 | [ -z "$1" ] && vdr-plugin_src_compile copy_source compile |
| 332 | |
476 | |
| 333 | while [ "$1" ]; do |
477 | while [ "$1" ]; do |
| 334 | |
478 | |
| 335 | case "$1" in |
479 | case "$1" in |
| 336 | all_but_unpack) |
480 | copy_source) |
| 337 | vdr-plugin_src_unpack add_local_patch patchmakefile i18n |
|
|
| 338 | ;; |
|
|
| 339 | unpack) |
|
|
| 340 | base_src_unpack |
|
|
| 341 | ;; |
|
|
| 342 | add_local_patch) |
|
|
| 343 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 344 | vdr_add_local_patch |
|
|
| 345 | ;; |
|
|
| 346 | patchmakefile) |
|
|
| 347 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 348 | vdr_patchmakefile |
|
|
| 349 | ;; |
|
|
| 350 | i18n) |
|
|
| 351 | cd "${S}" || die "Could not change to plugin-source-directory!" |
|
|
| 352 | vdr_i18n |
|
|
| 353 | ;; |
|
|
| 354 | esac |
|
|
| 355 | |
|
|
| 356 | shift |
|
|
| 357 | done |
|
|
| 358 | } |
|
|
| 359 | |
|
|
| 360 | vdr-plugin_src_compile() { |
|
|
| 361 | [ -z "$1" ] && vdr-plugin_src_compile prepare compile |
|
|
| 362 | |
|
|
| 363 | while [ "$1" ]; do |
|
|
| 364 | |
|
|
| 365 | case "$1" in |
|
|
| 366 | prepare) |
|
|
| 367 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
481 | [[ -n "${VDRSOURCE_DIR}" ]] && vdr-plugin_copy_source_tree |
| 368 | ;; |
482 | ;; |
| 369 | compile) |
483 | compile) |
| 370 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
484 | if [[ ! -f ${WORKDIR}/.vdr-plugin_makefile_patched ]]; then |
| 371 | eerror "Wrong use of vdr-plugin.eclass." |
485 | eerror "Wrong use of vdr-plugin.eclass." |
| … | |
… | |
| 375 | eerror "Please report this at bugs.gentoo.org." |
489 | eerror "Please report this at bugs.gentoo.org." |
| 376 | die "vdr-plugin_src_unpack not called!" |
490 | die "vdr-plugin_src_unpack not called!" |
| 377 | fi |
491 | fi |
| 378 | cd "${S}" |
492 | cd "${S}" |
| 379 | |
493 | |
|
|
494 | BUILD_TARGETS=${BUILD_TARGETS:-${VDRPLUGIN_MAKE_TARGET:-all}} |
|
|
495 | |
| 380 | emake ${BUILD_PARAMS} \ |
496 | emake ${BUILD_PARAMS} \ |
| 381 | ${VDRPLUGIN_MAKE_TARGET:-all} \ |
497 | ${BUILD_TARGETS} \ |
| 382 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
498 | LOCALEDIR="${TMP_LOCALE_DIR}" \ |
|
|
499 | LIBDIR="${S}" \ |
|
|
500 | TMPDIR="${T}" \ |
| 383 | || die "emake failed" |
501 | || die "emake failed" |
| 384 | ;; |
502 | ;; |
| 385 | esac |
503 | esac |
| 386 | |
504 | |
| 387 | shift |
505 | shift |
| … | |
… | |
| 408 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
526 | insinto "/usr/share/vdr/maintainer-data/makefile-patched" |
| 409 | doins "${mname}.patched" |
527 | doins "${mname}.patched" |
| 410 | |
528 | |
| 411 | fi |
529 | fi |
| 412 | |
530 | |
|
|
531 | |
|
|
532 | |
| 413 | cd "${S}" |
533 | cd "${S}" |
| 414 | insinto "${VDR_PLUGIN_DIR}" |
534 | insinto "${VDR_PLUGIN_DIR}" |
| 415 | doins libvdr-*.so.* |
535 | doins libvdr-*.so.* |
| 416 | |
536 | |
| 417 | if [[ ${USE_GETTEXT} = 1 && -d ${TMP_LOCALE_DIR} ]]; then |
537 | # create list of all created plugin libs |
|
|
538 | vdr_plugin_list="" |
|
|
539 | local p_name |
|
|
540 | for p in libvdr-*.so.*; do |
|
|
541 | p_name="${p%.so*}" |
|
|
542 | p_name="${p_name#lib}" |
|
|
543 | vdr_plugin_list="${vdr_plugin_list} ${p_name}" |
|
|
544 | done |
|
|
545 | |
|
|
546 | create_header_checksum_file ${vdr_plugin_list} |
|
|
547 | create_plugindb_file ${vdr_plugin_list} |
|
|
548 | |
|
|
549 | if vdr_has_gettext && [[ -d ${TMP_LOCALE_DIR} ]]; then |
| 418 | einfo "Installing locales" |
550 | einfo "Installing locales" |
| 419 | cd "${TMP_LOCALE_DIR}" |
551 | cd "${TMP_LOCALE_DIR}" |
| 420 | insinto "${LOCDIR}" |
552 | insinto "${LOCDIR}" |
| 421 | doins -r * |
553 | doins -r * |
| 422 | fi |
554 | fi |
| … | |
… | |
| 440 | |
572 | |
| 441 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
573 | if [[ -n ${VDR_RCADDON_FILE} ]]; then |
| 442 | insinto "${VDR_RC_DIR}" |
574 | insinto "${VDR_RC_DIR}" |
| 443 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
575 | newins "${VDR_RCADDON_FILE}" plugin-${VDRPLUGIN}.sh |
| 444 | fi |
576 | fi |
| 445 | |
|
|
| 446 | create_header_checksum_file |
|
|
| 447 | create_plugindb_file |
|
|
| 448 | } |
577 | } |
| 449 | |
578 | |
| 450 | vdr-plugin_pkg_postinst() { |
579 | vdr-plugin_pkg_postinst() { |
| 451 | vdr-plugin_print_enable_command |
580 | vdr-plugin_print_enable_command |
| 452 | |
581 | |
| … | |
… | |
| 459 | |
588 | |
| 460 | vdr-plugin_pkg_postrm() { |
589 | vdr-plugin_pkg_postrm() { |
| 461 | delete_orphan_plugindb_file |
590 | delete_orphan_plugindb_file |
| 462 | } |
591 | } |
| 463 | |
592 | |
| 464 | vdr-plugin_pkg_config() { |
593 | case "${EAPI:-0}" in |
| 465 | ewarn "emerge --config ${PN} is no longer supported" |
594 | 2|3|4) |
| 466 | vdr-plugin_print_enable_command |
595 | EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config |
| 467 | } |
596 | ;; |
| 468 | |
597 | *) |
| 469 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
598 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_config |
|
|
599 | ;; |
|
|
600 | esac |