diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2019-03-08 21:58:37 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-03-10 23:35:22 +0100 |
commit | d48726c9bfc54ec57115503c65aa4670c9676519 (patch) | |
tree | 3e2f8cef2822d403c0b274dcb2611be069d2a6d4 /app-office/moneydance | |
parent | net-misc/ipmiview: drop old version. (diff) | |
download | gentoo-d48726c9bfc54ec57115503c65aa4670c9676519.tar.gz gentoo-d48726c9bfc54ec57115503c65aa4670c9676519.tar.bz2 gentoo-d48726c9bfc54ec57115503c65aa4670c9676519.zip |
app-office/moneydance: bump to version 2019.1.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11309
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-office/moneydance')
-rw-r--r-- | app-office/moneydance/Manifest | 1 | ||||
-rw-r--r-- | app-office/moneydance/moneydance-2019.1.ebuild | 56 |
2 files changed, 57 insertions, 0 deletions
diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest index 89a5e0da89f3..5f2581b71d3f 100644 --- a/app-office/moneydance/Manifest +++ b/app-office/moneydance/Manifest @@ -1,3 +1,4 @@ DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B f5ba44a89944657c6c1380226dc512729825b084783e6d70dd7b2b731411294c7333bae858b2be3d5321e5145230257b325dc2b72a22744a877673c1c934d854 SHA512 175ff470b5fb5c3851eae708cc641777d7bdf1ede40366ccf5a135d6c813c08d9ce32665a2307c3aefa63eeb2206ad0874cb989aa998415abb86184a2b114ce8 DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112 SHA512 18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22 DIST moneydance-2019.0-amd64.tar.gz 132467602 BLAKE2B d58df88166f73c80b755863bd9ea18fdadf192ac9f0016313ab59c209c895ef8c1203d0b7627004521a9569343c3269bc1854e4e7925ec6e438148059d8adaf3 SHA512 2ee22626b0b3918c3ebd80f7ca4ce9c1ad39716fb837887ca84a970f2f3d64d7daff36eff31eaa22753e55e0dcfc49ccb2f10e5c8dfbf21e67e8627b17d9de59 +DIST moneydance-2019.1-amd64.tar.gz 132469388 BLAKE2B 516ff3af46e23370cf97b7a41e9802f14f5272c36b01080d69f339bdb9ca7de045de35baead8d97a8febece062dcd8b2befecad2744773e9a1c79b9a16b9639a SHA512 a28787dcc10173f4d492ec1bd5a8f17b6592f86c324e57a7e2951a0265825e4f78b620a4aabb4cde94c97860d3aaac8066572882c772d5abfa79c90cd33770ee diff --git a/app-office/moneydance/moneydance-2019.1.ebuild b/app-office/moneydance/moneydance-2019.1.ebuild new file mode 100644 index 000000000000..e6885dce27bd --- /dev/null +++ b/app-office/moneydance/moneydance-2019.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 2018-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit desktop eapi7-ver java-pkg-2 xdg-utils + +MY_PN="Moneydance" +MY_PV="$(ver_cut 1)" + +DESCRIPTION="A cross-platform personal finance application" +HOMEPAGE="https://moneydance.com/" +SRC_URI="https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz -> ${P}-amd64.tar.gz" + +LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="|| ( + >=dev-java/openjdk-bin-11.0 + >=dev-java/openjdk-11.0 + >=dev-java/oracle-jdk-bin-11.0 + ) +" + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MY_PN}" + +RESTRICT="bindist fetch mirror" + +pkg_nofetch() { + elog "Please download ${A} from" + elog "https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz" + elog "and place it in your DISTDIR directory." +} + +src_compile() { + :; +} + +src_install() { + java-pkg_dojar lib/*.jar + java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client -Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m" + + doicon resources/*.png + make_desktop_entry "moneydance" "Moneydance" moneydance Office +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |