blob: 1513d972b3f8b9a5ce2490b1259c17d5e3d8f6a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MYPN="mesp"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Parser for mathematical expressions written in Java"
HOMEPAGE="https://sourceforge.net/projects/expression-tree"
SRC_URI="mirror://sourceforge/${PN}/${MYPN}${PV}.zip"
S="${WORKDIR}/${MYPN}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="test"
DEPEND=">=virtual/jdk-1.8:*"
RDEPEND=">=virtual/jre-1.8:*"
BDEPEND="app-arch/unzip"
JAVA_JAR_FILENAME="Mesp.jar"
JAVA_SRC_DIR=(
"src/com/graphbuilder/struc"
"src/com/graphbuilder/math/func"
"src/com/graphbuilder/math"
)
src_prepare() {
java-pkg_clean
default
}
src_install() {
java-pkg_dojar Mesp.jar
dodoc {readme,release-notes}.txt
}
|