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
Reported-by: Sergey S. Starikoff <[email protected]> Closes: https://bugs.gentoo.org/648268 Package-Manager: Portage-2.3.19, Repoman-2.3.6
- Loading branch information
Showing
2 changed files
with
42 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 +1,2 @@ | ||
DIST OOoFBTools-2.52.zip 5650498 BLAKE2B 57a068f1098278bc65d056a98c9047d3391cd732180fb02279d854d10215fec8ef60aa5024e837646738c5ca4f6c60f2205d2311da68eb755ef3427b79c697de SHA512 3da09160422f81be2871e294ddc9397267bf158a6304d23cfa125756c75266d21bb6a6dc5b5ef5feb7afde2979484fd092c555bf14460b43ce215b6c91007e61 | ||
DIST OOoFBTools-2.53.zip 5634554 BLAKE2B 38f3b263ca0429611d8ebd6176c75ef74715dd0830482f8f179f8cc8aba0b01f6e0ece75115d7c35eef9be19b5a247f105d49ba511904df763121caeb964b09e SHA512 7b20ae427c1accff68dda335efde5d76d65f254a30b94d7490913949223501ee5e7099ec672a9e82ac1f5a793fa570bc12103fade24eb4ce86cc3f9f16597379 |
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,41 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
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" &>/dev/null || die | ||
rm -r win32 || die | ||
popd &>/dev/null || die | ||
|
||
eapply_user | ||
} | ||
|
||
src_install() { | ||
office-ext-r1_src_install | ||
dodoc ChangeLog* | ||
} |