summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2024-05-24 07:16:23 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2024-05-24 15:40:17 +0200
commit07118ece04a9cd65ea5b9f385f9b719e9f89f793 (patch)
treea0201540b576d44a59f5c63736f0cc26e48d8a37 /net-nds
parentdev-python/pypugjs: Remove old (diff)
downloadgentoo-07118ece04a9cd65ea5b9f385f9b719e9f89f793.tar.gz
gentoo-07118ece04a9cd65ea5b9f385f9b719e9f89f793.tar.bz2
gentoo-07118ece04a9cd65ea5b9f385f9b719e9f89f793.zip
net-nds/jxplorer: drop 3.3.1.2-r1
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/36802 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'net-nds')
-rw-r--r--net-nds/jxplorer/Manifest1
-rw-r--r--net-nds/jxplorer/jxplorer-3.3.1.2-r1.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/net-nds/jxplorer/Manifest b/net-nds/jxplorer/Manifest
index e51031b263ce..3af08d584fc1 100644
--- a/net-nds/jxplorer/Manifest
+++ b/net-nds/jxplorer/Manifest
@@ -1,2 +1 @@
DIST jxplorer-3.3.1.2-project%20.tar.bz2 4086314 BLAKE2B 1232277a71eab218df3aec6a0bde54cb00f02fe31e7ef98d7f791df886f9b8522e5ca95705647f3dcfb16621de68a8e43605a2a6453cc3fff7bd5efcbaf07793 SHA512 56c1043ab9ec4905878c94ad255d8391879db8007a96ad26329eec803a513ab6672fc696b893b7468a5384de8a9182db4bf824d572fbc0c0caf62b22f21269ba
-DIST jxplorer-3.3.1.2-project.zip 4625538 BLAKE2B b1bfb552dd4524f4d0fde4ff15617bf3e50629c0f879f05ee87c9f301afa9a5a4c544c8bb85d5b9639fe809f030752f9e96c321a4e6d20fda7aa55097363bdeb SHA512 6c95de48b2abd41a4926de3bd9bd203e266676028e12d1f1c93d8ef6f10b233eefcb122c8c075d6758b43c85e30fdc4b01d55811e5fcbdcd64d353c6f0fef94a
diff --git a/net-nds/jxplorer/jxplorer-3.3.1.2-r1.ebuild b/net-nds/jxplorer/jxplorer-3.3.1.2-r1.ebuild
deleted file mode 100644
index f0d7eb53b88d..000000000000
--- a/net-nds/jxplorer/jxplorer-3.3.1.2-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-inherit desktop java-pkg-2 java-ant-2 prefix virtualx
-
-DESCRIPTION="Fully functional LDAP browser written in Java"
-HOMEPAGE="https://jxplorer.org/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-project.zip"
-S="${WORKDIR}/${PN}"
-
-LICENSE="CAOSL"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-RESTRICT="test"
-
-# needs java stuff that is missing in java > 1.8 os has to be restricted
-COMMON_DEPEND="
- >=dev-java/javahelp-2.0.02_p46:0
-"
-RDEPEND="${COMMON_DEPEND}
- virtual/jre:1.8
-"
-DEPEND="${COMMON_DEPEND}
- virtual/jdk:1.8
- test? ( dev-java/junit:0 )
-"
-BDEPEND="app-arch/unzip"
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-EANT_GENTOO_CLASSPATH="javahelp"
-EANT_TEST_ANT_TASKS="ant-junit"
-
-PATCHES=( "${FILESDIR}"/3.3-disable-jxworkbench.patch )
-
-src_prepare() {
- default
-
- rm -v jars/*.jar || die
- sed -i -e 's/<fileset dir="${jasper}.*//g' build.xml || die
-
- if use test; then
- EANT_GENTOO_CLASSPATH_EXTRA=$(java-pkg_getjars --build-only junit)
- else
- find . -iname '*Test*.java' -delete || die
- fi
-}
-
-src_test() {
- VIRTUALX_COMMAND="java-pkg-2_src_test" virtx emake -j1
-}
-
-src_install() {
- java-pkg_dojar jars/${PN}.jar
-
- insinto /usr/share/${PN}
- doins -r icons images htmldocs language templates plugins security.default csvconfig.txt.default
-
- dodoc README*.TXT
-
- # By default the config dir is ${HOME}/jxplorer
- java-pkg_dolauncher ${PN} \
- --main com.ca.directory.jxplorer.JXplorer \
- --pwd '"${HOME}/.jxplorer"' \
- -pre "${FILESDIR}/${PN}-3-pre"
-
- eprefixify "${ED}/usr/bin/${PN}"
-
- use source && java-pkg_dosrc src/com
- use doc && java-pkg_dojavadoc docs/api
-
- make_desktop_entry ${PN} JXplorer /usr/share/jxplorer/images/logo_32_trans.gif System
-}