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