diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2023-02-20 17:29:28 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2023-02-25 07:47:41 +0100 |
commit | bf49b5a18b534fd9390580607ca59574f9e017ff (patch) | |
tree | 9c139c208e612a753091d18e25f0ffd9bba113e6 /dev-java/jcifs/jcifs-1.3.19-r2.ebuild | |
parent | distutils-r1.eclass: Strip pkg_resources namespaces automatically (diff) | |
download | gentoo-bf49b5a18b534fd9390580607ca59574f9e017ff.tar.gz gentoo-bf49b5a18b534fd9390580607ca59574f9e017ff.tar.bz2 gentoo-bf49b5a18b534fd9390580607ca59574f9e017ff.zip |
dev-java/jcifs: depend on jakarta-servlet-api:4 instead on java-virtuals
- uses CP_DEPEND instead of JAVA_GENTOO_CLASSPATH
- adds missing resource files
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jcifs/jcifs-1.3.19-r2.ebuild')
-rw-r--r-- | dev-java/jcifs/jcifs-1.3.19-r2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-java/jcifs/jcifs-1.3.19-r2.ebuild b/dev-java/jcifs/jcifs-1.3.19-r2.ebuild new file mode 100644 index 000000000000..5544a2eeba75 --- /dev/null +++ b/dev-java/jcifs/jcifs-1.3.19-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc examples source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Library that implements the CIFS/SMB networking protocol in Java" +SRC_URI="https://jcifs.samba.org/src/${P}.tgz" +HOMEPAGE="https://jcifs.samba.org/" +S="${WORKDIR}/${P/-/_}" + +LICENSE="LGPL-2.1" +SLOT="1.1" + +KEYWORDS="~amd64 ~ppc64 ~x86" + +CP_DEPEND="dev-java/jakarta-servlet-api:4" + +RDEPEND=" + ${CP_DEPEND} + >=virtual/jre-1.8:*" + +DEPEND=" + ${CP_DEPEND} + >=virtual/jdk-1.8:*" + +JAVA_RESOURCE_DIRS="res" +JAVA_SRC_DIR="src" + +src_prepare() { + java-pkg-2_src_prepare + java-pkg_clean + mkdir -p res || die + cd src || die + find . -type f -name '*.css' -o -name '*.map' \ + | xargs cp --parents -v -t ../res || die +} + +src_install() { + java-pkg-simple_src_install + use examples && java-pkg_doexamples examples +} |