app-office/jameica-bin: drop 2.10.4

Signed-off-by: Adrian Schollmeyer <nex+b-g-o@nexadn.de>
This commit is contained in:
Adrian Schollmeyer
2025-11-13 08:50:07 +01:00
parent 036a8cfab0
commit 5c4240fdde
2 changed files with 0 additions and 62 deletions

View File

@@ -1,2 +1 @@
DIST jameica-linux64-2.10.4.zip 38951918 BLAKE2B 039e973df99c61cec7df23f0d97c71225642872d45b7d413df7cd458f0faa9bc8f1394e107e16c3e4c9555995da7e5363381e25481766f4832ad834157b2716e SHA512 1cfa5601e69138941727719c5910fb452cc2ab06bef0e196773e3c079a1f49f1e4dbe7e51f11e9b30f14157bd41be8200ad6ff14f57efd31048ae07d8f307cad
DIST jameica-linux64-2.12.0.zip 47274820 BLAKE2B 52a622a378abfa1247ae2a44029024fe4a4dca8bb0cb6de86e95d93febcdc2248bc2dae0e871b3a652a22c81fa31237ec4db0df2d8671ed0c78bbba2f9a63d3e SHA512 5b0b129f6949fecd5d1b0467a3ac300b308dcaebdc6ca080f8c6d3738582931bf5451407d9c999c5e0b295658baab90def4bdda4673c7b5c2baeb5afc6bef130

View File

@@ -1,61 +0,0 @@
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="${PN%-bin}"
inherit desktop systemd
DESCRIPTION="Local platform for home banking"
HOMEPAGE="https://willuhn.de/"
SRC_URI="https://willuhn.de/products/jameica/releases/current/jameica/jameica-linux64-${PV}.zip"
S="${WORKDIR}/jameica"
# Jameica: GPL-2
# lib/apache_xmlrpc, lib/jakarta_commons, lib/velocity: Apache-2.0
# lib/swt: CPL-1.0 LGPL-2 MPL-1.1
# lib/h2: EPL-1.0 MPL-2.0
# lib/paperclips: EPL-1.0
# lib/mckoi, lib/mysql: GPL-2
# lib/de_willuhn_ds, lib/de_willuhn_util, lib/swtcalendar: LGPL-2
# lib/bouncycastle: MIT
# lib/nanoxml: ZLIB
LICENSE="Apache-2.0 CPL-1.0 EPL-1.0 GPL-2 LGPL-2 MIT MPL-1.1 MPL-2.0 ZLIB"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
virtual/jre
"
BDEPEND="
app-arch/unzip
"
JAMEICA_INSFILES=( jameica-icon.png jameica{,-linux64}.jar lib plugin.xml )
JAMEICA_EXEFILES=( jameicaserver.sh jameica.sh rcjameica-systemd )
src_install() {
dodoc README
insinto /opt/${MY_PN}
doins -r "${JAMEICA_INSFILES[@]}"
exeinto /opt/${MY_PN}
doexe "${JAMEICA_EXEFILES[@]}"
systemd_dounit "${MY_PN}.service"
# There is plenty of dirt, mainly in the bundled libs
find "${ED}/opt/${MY_PN}" -type f \( \
-name "LICENSE" \
-o -name "license.txt" \
-o -name "license.html" \
-o -name "lgpl*.txt" \
-o -name "mpl*.txt" \
-o -name "webkit-bsd.txt" \
-o -name "*README*" \
\) -delete || die
make_desktop_entry "/bin/sh /opt/${MY_PN}/jameica.sh" ${MY_PN}
}