Magellan Linux

Annotation of /trunk/include/mozilla_i18n.sminc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11031 - (hide annotations) (download)
Sat Feb 11 19:35:45 2012 UTC (12 years, 3 months ago) by niro
File size: 1232 byte(s)
-fix language installation for newer firefox versions
1 niro 9863 # $Id$
2 niro 2 # functions for mozilla i18n
3     #
4     # MOZ_SUITE, MOZ_LANG, STATE, PVER and PBUILD must be given
5     #
6    
7     MOZ_HOME="/usr/$(mlibdir)/mozilla-firefox"
8     PNAME="mozilla-${MOZ_SUITE}-i18n-${MOZ_LANG}"
9    
10     case ${MOZ_SUITE} in
11 niro 9863 firefox) PCAT="net-www" ;;
12     thunderbird) PCAT="net-mail" ;;
13 niro 2 esac
14    
15     DESCRIPTION="Mozilla ${MOZ_SUITE} ${PVER} - ${MOZ_LANG} language files."
16     HOMEPAGE="http://www.mozilla.org/products/${MOZ_SUITE}/"
17    
18 niro 9863 DEPEND="== ${PCAT}/mozilla-${MOZ_SUITE}-${PVER}"
19 niro 2
20     SDEPEND=">= app-arch/unzip-5
21     >= sys-apps/sed-4"
22    
23     SRCFILE="${MOZ_LANG}.xpi"
24     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
25    
26     sminclude mtools
27    
28     SRC_URI=(
29     ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_SUITE}/releases/${PVER}/linux-i686/xpi/${SRCFILE}
30     mirror://${PNAME/-${MOZ_LANG}/}/${PVER}/${SRCFILE}
31     )
32    
33     mozilla_i18n_src_prepare()
34     {
35     install -d ${SRCDIR}
36     munpack ${SRCFILE} ${SRCDIR} || die
37     }
38    
39     mozilla_i18n_src_install()
40     {
41     cd ${SRCDIR}
42    
43 niro 11031 # get install id for the extension
44     local id="$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' install.rdf)"
45    
46 niro 2 # needed directories
47 niro 11031 minstalldir ${MOZ_HOME}/extensions/${id} || die
48     cp -Rv ${SRCDIR}/* ${BINDIR}/${MOZ_HOME}/extensions/${id} || die
49 niro 2 }
50    
51     export_inherits mozilla_i18n src_prepare src_install