Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 170562 Details for
Bug 245242
app-dict/myspell-ru update
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
eclass/openoffice-ext.eclass
openoffice-ext.eclass (text/plain), 1.51 KB, created by
Dmitry S. Kulyabov
on 2008-11-02 16:48:38 UTC
(
hide
)
Description:
eclass/openoffice-ext.eclass
Filename:
MIME Type:
Creator:
Dmitry S. Kulyabov
Created:
2008-11-02 16:48:38 UTC
Size:
1.51 KB
patch
obsolete
># Copyright 1999-2008 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >ECLASS="openoffice-ext" >INHERITED="$INHERITED $ECLASS" > >inherit eutils multilib > ># list of extentions ># OOO_EXTENSIONS="" > >OOO_ROOT_DIR="/usr/$(get_libdir)/openoffice" >OOO_PROGRAM_DIR="${OOO_ROOT_DIR}/program" >UNOPKG="${OOO_PROGRAM_DIR}/unopkg" >OOO_EXT_DIR="${OOO_ROOT_DIR}/share/extension/install" > >add_extension() { > ebegin "Adding extension $1" > INSTDIR=$(mktemp -d --tmpdir=${T}) > ${UNOPKG} add --shared $1 \ > "-env:UserInstallation=file:///${INSTDIR}" \ > "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" > if [ -n ${INSTDIR} ]; then rm -rf ${INSTDIR}; fi > eend >} > >flush_unopkg_cache() { > ${UNOPKG} list --shared > /dev/null 2>&1 >} > >remove_extension() { > if ${UNOPKG} list --shared $1 >/dev/null; then > ebegin "Removing extension $1" > INSTDIR=$(mktemp -d --tmpdir=${T}) > ${UNOPKG} remove --shared $1 \ > "-env:UserInstallation=file://${INSTDIR}" \ > "-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1" > if [ -n ${INSTDIR} ]; then rm -rf ${INSTDIR}; fi > eend > flush_unopkg_cache > fi >} > >openoffice-ext_src_install() { > cd "${S}" || die > insinto ${OOO_EXT_DIR} > for i in ${OOO_EXTENSIONS} > do > doins ${i} || die "doins failed." > done >} > >openoffice-ext_pkg_postinst() { > for i in ${OOO_EXTENSIONS} > do > add_extension ${OOO_EXT_DIR}/${i} > done > >} > >openoffice-ext_pkg_prerm() { > for i in ${OOO_EXTENSIONS} > do > remove_extension ${i} > done >} > >EXPORT_FUNCTIONS src_install pkg_postinst pkg_prerm
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 245242
:
170515
|
170517
|
170518
|
170542
|
170562
|
172011
|
178768
|
178770
|
178771
|
249942
|
281257