forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-officeext/ooofbtools: Version bump
Package-Manager: portage-2.3.2
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST OOoFBTools-2.38.zip 4833754 SHA256 ee039cf7ae2767916cc79b25d5b852a54089773db458aa695b064e3d803da757 SHA512 2ff6bb251b5913cb7ceb430aba6ee47a5b2e2c7b78be8b291d67410903d3679ef8e01554f504cd86993fb717173d2a9c4080b5059f3e1064be075e67766c07d5 WHIRLPOOL 52fcd3bc82eab952080c6e1b18ed12b1568e4dd7299b55b2433efc8f5420f304ae32bbc3a9fe191c9a614f42aa5e04da976758cf9262e94adc238b887d6ecb9e | ||
DIST OOoFBTools-2.47.zip 5628919 SHA256 9efbae75b415a349a59d69fe4e734a5ba3aaf8ecd31dc8f5a2a17ff5ca26b5ca SHA512 3274ec127b3425553181da3eef314c060fa407e85e287963493ce78714439e0cf85ea57a2c1b4d56ce01e1b05d6a7ff01a09341e94dde794c36cb3d43249453a WHIRLPOOL 51131cd8e50b6d8ab653f381844655f64bc2550ad05686f858870d99d5d608d25219f389bbd0a4ebe0bf219e05c7393e10ead98abbb871f1f6dd289c86c71468 | ||
DIST OOoFBTools-2.48.zip 5631726 SHA256 752e5d3dc404ee2199cee3b347699133054ab10b8b1e7ec3bd659055733f501a SHA512 31d6571e4050975bdec92f85578235dea4784cd0e45dc4d1e612e0999744f1700a8bf22983378333aecdb146ffd151b6e7cbe071b90e9816443e939b27d117f8 WHIRLPOOL bc5effbb7f171168feb16e983d8d32d3bbf5885e49b5c8dcf7db733c865a36d5bd229b7caa6c3756fff7aa315bd0c9a4567717eaa311b21539f5ef3c75bb1cfa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
MY_PN="OOoFBTools" | ||
|
||
OFFICE_EXTENSIONS=( | ||
"${MY_PN}.oxt" | ||
) | ||
|
||
inherit office-ext-r1 | ||
|
||
DESCRIPTION="OpenOffice extension for the FictionBook2 format with validation" | ||
HOMEPAGE="https://sourceforge.net/projects/fbtools/" | ||
SRC_URI="mirror://sourceforge/fbtools/files/release/${MY_PN}-${PV}.zip" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND="dev-libs/libxml2 | ||
app-arch/zip" | ||
|
||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
|
||
OFFICE_EXTENSIONS_LOCATION="${S}" | ||
|
||
src_prepare() { | ||
# Remove Windows cruft | ||
pushd "${WORKDIR}/${MY_PN}.oxt" 2>/dev/null || die | ||
rm -r win32 || die | ||
popd 2>/dev/null || die | ||
} | ||
|
||
src_install() { | ||
office-ext-r1_src_install | ||
dodoc ChangeLog* | ||
} |