summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2022-02-08 09:09:07 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2022-02-08 09:09:12 +0100
commit0a7b4677abe11a52968119d6575c163450f03c06 (patch)
tree2fbe54ba996955e86bc40189e2df0606f7231e41 /dev-java/jsch
parentdev-java/jcommander: removed obsolete 1.48 (diff)
downloadgentoo-0a7b4677abe11a52968119d6575c163450f03c06.tar.gz
gentoo-0a7b4677abe11a52968119d6575c163450f03c06.tar.bz2
gentoo-0a7b4677abe11a52968119d6575c163450f03c06.zip
dev-java/jsch: removed obsolete 0.1.54
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jsch')
-rw-r--r--dev-java/jsch/jsch-0.1.54.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-java/jsch/jsch-0.1.54.ebuild b/dev-java/jsch/jsch-0.1.54.ebuild
deleted file mode 100644
index 42b5f979f56f..000000000000
--- a/dev-java/jsch/jsch-0.1.54.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-JAVA_PKG_IUSE="doc source examples"
-MAVEN_ID="com.jcraft:jsch:0.1.55"
-
-inherit java-pkg-2 java-ant-2 java-osgi
-
-DESCRIPTION="JSch is a pure Java implementation of SSH2"
-HOMEPAGE="http://www.jcraft.com/jsch/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="zlib"
-
-CDEPEND="
- zlib? ( dev-java/jzlib:0 )"
-
-RDEPEND="
- ${CDEPEND}
- >=virtual/jre-1.6"
-
-DEPEND="
- ${CDEPEND}
- app-arch/unzip
- >=virtual/jdk-1.6"
-
-EANT_BUILD_TARGET="dist"
-JAVA_ANT_REWRITE_CLASSPATH="true"
-
-src_compile() {
- if use zlib; then
- EANT_EXTRA_ARGS="-Djzlib.available=true"
- EANT_GENTOO_CLASSPATH="jzlib"
- fi
-
- java-pkg-2_src_compile
-}
-
-src_install() {
- java-osgi_newjar dist/lib/jsch*.jar \
- "com.jcraft.jsch" "JSch" \
- "com.jcraft.jsch, com.jcraft.jsch.jce;x-internal:=true, \
- com.jcraft.jsch.jcraft;x-internal:=true"
-
- einstalldocs
- use doc && java-pkg_dojavadoc javadoc
- use source && java-pkg_dosrc src/*
- use examples && java-pkg_doexamples examples
-}