blob: dc9c85e376647e1f69d3ad4d35c624995e37fbe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 2004-2010 Sabayon Project
# Distributed under the terms of the GNU General Public License v2
# $
inherit base rpm multilib
MY_LANG=${PN/libreoffice-l10n-/}
MY_LANG=${MY_LANG/_/-}
PKG_PV="${PV}"
# export all the available functions here
EXPORT_FUNCTIONS src_unpack src_prepare src_install
# @ECLASS-VARIABLE: L10N_LANG
# @DESCRIPTION:
# Localization language name
L10N_LANG="${L10N_LANG:-${MY_LANG}}"
# @ECLASS-VARIABLE: HELPPACK_AVAIL
# @DESCRIPTION:
# Set this to "0" if help pack package is not available
HELPPACK_AVAIL="${HELPPACK_AVAIL:-1}"
# @ECLASS-VARIABLE: LANGPACK_AVAIL
# @DESCRIPTION:
# Set this to "0" if lang pack package is not available
LANGPACK_AVAIL="${LANGPACK_AVAIL:-1}"
DESCRIPTION="LibreOffice.org ${L10N_LANG} localisation"
HOMEPAGE="http://www.documentfoundation.org"
RESTRICT="nomirror"
OOVER="${PV}"
OODLVER="${PV}"
if [[ "${PV}" = "3.4.2.3" ]] || [[ "${PV}" = "3.4.3.2" ]]; then
SRC_URI="http://download.documentfoundation.org/libreoffice/stable/3.4.2/rpm/x86/LibO_3.4.2_Linux_x86_langpack-rpm_${MY_LANG}.tar.gz"
if [ "${HELPPACK_AVAIL}" = "1" ]; then
SRC_URI+=" http://download.documentfoundation.org/libreoffice/stable/3.4.2/rpm/x86/LibO_3.4.2_Linux_x86_helppack-rpm_${MY_LANG}.tar.gz"
fi
elif [[ "${PV}" = "3.4.4.2" ]] || [[ "${PV}" = "3.5.0.0" ]]; then
SRC_URI="http://download.documentfoundation.org/libreoffice/stable/3.4.4/rpm/x86/LibO_3.4.4_Linux_x86_langpack-rpm_${MY_LANG}.tar.gz"
if [ "${HELPPACK_AVAIL}" = "1" ]; then
SRC_URI+=" http://download.documentfoundation.org/libreoffice/stable/3.4.4/rpm/x86/LibO_3.4.4_Linux_x86_helppack-rpm_${MY_LANG}.tar.gz"
fi
if [[ "${PV}" = "3.5.0.0" ]]; then
PKG_PV="3.4"
fi
elif [[ "${PV}" = "3.4.5.2" ]]; then
SRC_URI="http://download.documentfoundation.org/libreoffice/stable/3.4.5/rpm/x86/LibO_3.4.5_Linux_x86_langpack-rpm_${MY_LANG}.tar.gz"
if [ "${HELPPACK_AVAIL}" = "1" ]; then
SRC_URI+=" http://download.documentfoundation.org/libreoffice/stable/3.4.5/rpm/x86/LibO_3.4.5_Linux_x86_helppack-rpm_${MY_LANG}.tar.gz"
fi
elif [[ "${PV}" = "3.5.1.2" ]]; then
if [ "${LANGPACK_AVAIL}" = "1" ]; then
SRC_URI="http://download.documentfoundation.org/libreoffice/stable/3.5.1/rpm/x86/LibO_3.5.1_Linux_x86_langpack-rpm_${MY_LANG}.tar.gz"
fi
if [ "${HELPPACK_AVAIL}" = "1" ]; then
SRC_URI+=" http://download.documentfoundation.org/libreoffice/stable/3.5.1/rpm/x86/LibO_3.5.1_Linux_x86_helppack-rpm_${MY_LANG}.tar.gz"
fi
else
die "unsupported libreoffice-l10n ${PV}"
fi
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="~app-office/libreoffice-${PV}"
DEPEND="dev-util/pkgconfig
dev-util/intltool"
S="${WORKDIR}/*/RPMS"
OOO_INSTDIR="/usr/$(get_libdir)/libreoffice"
libreoffice-l10n_src_unpack() {
cd "${WORKDIR}"
unpack ${A}
mkdir "${WORKDIR}/unpack"
cd "${WORKDIR}/unpack"
rpm_unpack ${S}/*.rpm
# fix crappy rpms containing
# duplicated dirs
if [ "${PKG_PV:0:3}" = "3.5" ]; then
dict_en_dir="${WORKDIR}/unpack"/opt/libreoffice${PKG_PV:0:3}/share/extensions/dict-en
rm -rf "${dict_en_dir}"
fi
}
libreoffice-l10n_src_prepare() {
einfo "nothing to prepare"
}
libreoffice-l10n_src_install() {
dodir "${OOO_INSTDIR}/basis-link"
if [[ "${PKG_PV:0:3}" = "3.3" ]]; then
cp -R "${WORKDIR}"/unpack/opt/libreoffice/basis${PKG_PV:0:3}/* \
"${ED}${OOO_INSTDIR}/basis-link/" || die "cannot copy"
cp -R "${WORKDIR}"/unpack/opt/libreoffice/{program,readmes} \
"${ED}${OOO_INSTDIR}/" || die "cannot copy"
elif [[ "${PKG_PV:0:3}" = "3.4" ]]; then
if [[ "${PV:0:3}" = "3.4" ]]; then
cp -R "${WORKDIR}"/unpack/opt/libreoffice${PKG_PV:0:3}/basis${PKG_PV:0:3} \
"${ED}${OOO_INSTDIR}"/basis${PV:0:3} || die "cannot copy"
else
# 3.5 with old l10ns
cp -R "${WORKDIR}"/unpack/opt/libreoffice${PKG_PV:0:3}/basis${PKG_PV:0:3}/* \
"${ED}${OOO_INSTDIR}"/ || die "cannot copy"
fi
for source_dir in "${WORKDIR}"/unpack/opt/libreoffice${PKG_PV:0:3}/{program,readmes}; do
if [ -d "${source_dir}" ]; then
cp -R "${source_dir}" "${ED}${OOO_INSTDIR}/" || die "cannot copy"
fi
done
else
for source_dir in "${WORKDIR}"/unpack/opt/libreoffice${PKG_PV:0:3}/{help,program,readmes,share}; do
if [ -d "${source_dir}" ]; then
cp -R "${source_dir}" "${ED}${OOO_INSTDIR}/" || die "cannot copy"
fi
done
fi
chown root:root "${ED}/${OOO_INSTDIR}" -R || die "cannot chown"
}
|