Magellan Linux

Annotation of /smage/trunk/include/mozilla_i18n.sminc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2690 - (hide annotations) (download)
Tue Jul 12 07:09:29 2011 UTC (12 years, 10 months ago) by niro
Original Path: smage/branches/alx-0_6_0/include/mozilla_i18n.sminc
File size: 1256 byte(s)
-fixed install functions to work with firefox-5.x
1 niro 2690 # $Id$
2 niro 2671 # 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     firefox) PCATEGORIE="net-www" ;;
12     thunderbird) PCATEGORIE="net-mail" ;;
13     esac
14    
15     DESCRIPTION="Mozilla ${MOZ_SUITE} ${PVER} - ${MOZ_LANG} language files."
16     HOMEPAGE="http://www.mozilla.org/products/${MOZ_SUITE}/"
17    
18     DEPEND="== ${PCATEGORIE}/mozilla-${MOZ_SUITE}-${PVER}"
19    
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 2690 # get install id for the extension
44     local id="$(sed -n -e '/install-manifest/,$ { /em:id/!d; s/.*[\">]\([^\"<>]*\)[\"<].*/\1/; p; q }' "${x}"/install.rdf)"
45    
46 niro 2671 # needed directories
47 niro 2690 minstalldir ${MOZ_HOME}/extensions/${id} || die
48     cp -R ${SRCDIR}/* ${BINDIR}/${MOZ_HOME}/extensions/${id} || die
49 niro 2671 }
50    
51     export_inherits mozilla_i18n src_prepare src_install