mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-05 12:17:28 -08:00
Convert all URLs for sites supporting encrypted connections from http to https Signed-off-by: Justin Lecher <jlec@gentoo.org>
36 lines
814 B
Bash
36 lines
814 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=2
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit eutils java-pkg-2 java-ant-2
|
|
|
|
DESCRIPTION="Biojava bytecode manipulation library"
|
|
HOMEPAGE="http://biojava.org"
|
|
SRC_URI="https://dev.gentoo.org/~serkan/distfiles/${P}.tar.bz2"
|
|
# svn export svn://code.open-bio.org/biojava/bytecode/trunk -r {20081007}
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=virtual/jre-1.4"
|
|
DEPEND=">=virtual/jdk-1.4"
|
|
|
|
JAVA_ANT_IGNORE_SYSTEM_CLASSES="true"
|
|
EANT_BUILD_TARGET="package"
|
|
EANT_DOC_TARGET="javadocs"
|
|
|
|
src_prepare() {
|
|
mkdir {tests,demos,resources} || die
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_dojar ant-build/${PN}.jar
|
|
use doc && java-pkg_dojavadoc ant-build/docs
|
|
use source && java-pkg_dosrc src/org
|
|
}
|