diff options
author | William Thomson <wltjr@gentoo.org> | 2008-03-25 20:03:52 +0000 |
---|---|---|
committer | William Thomson <wltjr@gentoo.org> | 2008-03-25 20:03:52 +0000 |
commit | 1e71ed3c48cb854848a0ea1ae5d18022883ad814 (patch) | |
tree | d86be5ebeda3b27e329ec37b95573a5373cb7469 /dev-java/edtftpj/edtftpj-2.0.1.ebuild | |
parent | switch trunk builds to qt4 (diff) | |
download | gentoo-2-1e71ed3c48cb854848a0ea1ae5d18022883ad814.tar.gz gentoo-2-1e71ed3c48cb854848a0ea1ae5d18022883ad814.tar.bz2 gentoo-2-1e71ed3c48cb854848a0ea1ae5d18022883ad814.zip |
Bumped to latest release. Seems to be some API changes, but no deps no slot. Till there is a need/reason to slot.
(Portage version: 2.1.4.1)
Diffstat (limited to 'dev-java/edtftpj/edtftpj-2.0.1.ebuild')
-rw-r--r-- | dev-java/edtftpj/edtftpj-2.0.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-java/edtftpj/edtftpj-2.0.1.ebuild b/dev-java/edtftpj/edtftpj-2.0.1.ebuild new file mode 100644 index 000000000000..9381c28b7573 --- /dev/null +++ b/dev-java/edtftpj/edtftpj-2.0.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/edtftpj/edtftpj-2.0.1.ebuild,v 1.1 2008/03/25 20:03:52 wltjr Exp $ + +JAVA_PKG_IUSE="doc examples source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="FTP client library written in Java" +SRC_URI="http://www.enterprisedt.com/products/edtftpj/download/${P}.zip" +HOMEPAGE="http://www.enterprisedt.com" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=virtual/jre-1.4 + =dev-java/junit-3.8*" + +DEPEND=">=virtual/jdk-1.4 + app-arch/unzip + ${RDEPEND}" + +src_unpack() { + unpack ${A} + find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -print -delete + rm "${S}/doc/LICENSE.TXT" || die "Failed to remove LICENSE.TXT" +} + +src_compile() { + cd "${S}"/src + eant jar -Dftp.classpath=$(java-pkg_getjars junit) $(use_doc javadocs) +} + +src_install() { + java-pkg_dojar lib/*.jar + + use doc && java-pkg_dojavadoc build/doc/api + use source && java-pkg_dosrc src/com + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins demo/*.{java,txt} || die "Failed to install examples." + fi +} |