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
995 B
41 lines
995 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
JAVA_PKG_IUSE="doc source examples"
|
|
MAVEN_ID="javassist:javassist:3.18.2"
|
|
|
|
inherit java-pkg-2 java-ant-2
|
|
|
|
DESCRIPTION="Javassist makes Java bytecode manipulation simple"
|
|
HOMEPAGE="http://www.csg.is.titech.ac.jp/~chiba/javassist/"
|
|
SRC_URI="https://github.com/jboss-javassist/javassist/archive/rel_${PV//./_}_ga_build.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MPL-1.1"
|
|
SLOT="3"
|
|
KEYWORDS="amd64 ~arm64 ppc64 x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=virtual/jre-1.6"
|
|
DEPEND=">=virtual/jdk-1.6
|
|
app-arch/unzip"
|
|
|
|
S="${WORKDIR}/${PN}-rel_${PV//./_}_ga_build"
|
|
|
|
EANT_DOC_TARGET="javadocs"
|
|
JAVA_ANT_REWRITE_CLASSPATH=y
|
|
EANT_NEEDS_TOOLS="yes"
|
|
|
|
java_prepare() {
|
|
find -name "*.jar" -delete || die
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_dojar ${PN}.jar
|
|
dohtml Readme.html
|
|
use doc && java-pkg_dojavadoc html
|
|
use source && java-pkg_dosrc src/main/javassist
|
|
use examples && java-pkg_doexamples sample/*
|
|
}
|