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