You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
968 B
41 lines
968 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="2"
|
|
JAVA_PKG_IUSE="doc examples source"
|
|
|
|
inherit eutils java-pkg-2 java-ant-2
|
|
|
|
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/"
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="1.1"
|
|
KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
|
|
RDEPEND=">=virtual/jre-1.4
|
|
java-virtuals/servlet-api:2.4"
|
|
DEPEND=">=virtual/jdk-1.4
|
|
${RDEPEND}"
|
|
IUSE=""
|
|
|
|
S=${WORKDIR}/${P/-/_}
|
|
|
|
java_prepare() {
|
|
rm -v *.jar || die
|
|
epatch "${FILESDIR}/${PV}-build.xml.patch"
|
|
}
|
|
|
|
JAVA_ANT_REWRITE_CLASSPATH="true"
|
|
EANT_EXTRA_ARGS="-DhasServlet=true"
|
|
EANT_GENTOO_CLASSPATH="servlet-api-2.4"
|
|
|
|
src_install() {
|
|
java-pkg_newjar ${P}.jar
|
|
|
|
dodoc README.txt || die
|
|
# other stuff besides javadocs
|
|
use doc && java-pkg_dohtml -r docs/*
|
|
use source && java-pkg_dosrc src/*
|
|
use examples && java-pkg_doexamples examples
|
|
}
|