diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-03-11 19:22:26 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-03-11 19:22:26 +0000 |
commit | 011dfdc160c2f1c19d90746032e269dfb98f5831 (patch) | |
tree | 4dea55923e31b4c39307effca770c367ba1d04b7 /eclass/openoffice-l10n.eclass | |
parent | 3ee945ceadf128884ff340e4088879c756136ebd (diff) |
cleanup unused eclasses
Diffstat (limited to 'eclass/openoffice-l10n.eclass')
-rw-r--r-- | eclass/openoffice-l10n.eclass | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/eclass/openoffice-l10n.eclass b/eclass/openoffice-l10n.eclass deleted file mode 100644 index 46d15d76..00000000 --- a/eclass/openoffice-l10n.eclass +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2004-2010 Sabayon Project -# Distributed under the terms of the GNU General Public License v2 -# $ - -EAPI="2" - -inherit base rpm multilib - -MY_LANG=${PN/openoffice-l10n-/} -MY_LANG=${MY_LANG/_/-} -MY_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}}" - -DESCRIPTION="OpenOffice.org ${L10N_LANG} localisation" -HOMEPAGE="http://projects.openoffice.org/native-lang.html" -if [[ "${PV}" = "3.2.0" ]]; then - SRC_URI="mirror://openoffice-extended/${PV}rc5/OOo_${PV}rc5_20100203_LinuxIntel_langpack_${MY_LANG}.tar.gz" -elif [[ "${PV}" = "3.2.1" ]]; then - SRC_URI="mirror://openoffice-extended/${PV}rc2/OOo_${PV}rc2_20100521_Linux_x86_langpack-rpm_${MY_LANG}.tar.gz" -else - SRC_URI="--NOT_SET_SEE_openoffice-l10n.eclass--" -fi - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="~app-office/openoffice-${PV}" -DEPEND="dev-util/pkgconfig - dev-util/intltool" - -S="${WORKDIR}/*/RPMS" - -OOO_INSTDIR="/usr/$(get_libdir)/openoffice" - -openoffice-l10n_src_unpack() { - cd "${WORKDIR}" - unpack "${A}" - mkdir "${WORKDIR}/unpack" - cd "${WORKDIR}/unpack" - rpm_unpack ${S}/*.rpm -} - -openoffice-l10n_src_prepare() { - einfo "nothing to prepare" -} - -openoffice-l10n_src_install() { - dodir "${OOO_INSTDIR}" - local MY_SRC="${WORKDIR}/unpack/opt/openoffice.org/*" - local MY_SRC2="${WORKDIR}/unpack/opt/openoffice.org3/*" - cp -R ${MY_SRC} "${D}${OOO_INSTDIR}/" || die "cannot copy" - cp -R ${MY_SRC2} "${D}${OOO_INSTDIR}/basis${PV:0:3}/" || die "cannot copy" - # FIXME: upstream bug, localisations listed below try to install the same file - # as ast bg bn dz el eo fi ga gu hi_IN km ku lv mk ml mr my oc om or pa_IN si ta te tr ug uk uz - local dict_file="${D}${OOO_INSTDIR}/basis${PV:0:3}/share/extension/install/dict-en.oxt" - [[ -f "${dict_file}" ]] && ewarn "Removing ${dict_file} due to collisions..." \ - && rm -f "${dict_file}" - chown root:root ${D}/${OOO_INSTDIR} -R -} |