forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
java-ebuilder-0.1.ebuild
65 lines (48 loc) · 1.36 KB
/
java-ebuilder-0.1.ebuild
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
if [[ ${PV} == 9999 ]]; then
ECLASS="git-r3"
EGIT_REPO_URI="https://github.com/heroxbd/${PN}.git"
else
SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
inherit java-pkg-2 java-pkg-simple prefix ${ECLASS}
DESCRIPTION="Java team tool for semi-automatic creation of ebuilds from pom.xml"
HOMEPAGE="https://github.com/gentoo/java-ebuilder"
LICENSE="GPL-2"
SLOT="0"
DEPEND=">=virtual/jdk-1.8"
RDEPEND=">=virtual/jre-1.8
sys-process/parallel
>=dev-java/maven-bin-3"
S="${WORKDIR}/${P}"
JAVA_SRC_DIR="src/main/java"
JAVA_ADDRES_DIRS="src/main/resources"
MAIN_CLASS="org.gentoo.java.ebuilder.Main"
java_prepare() {
eapply_user
local base_dir="target/classes/"
[[ ! -d "${base_dir}" ]] &&mkdir -p "${base_dir}META-INF"
echo "Manifest-Version: 1.0
Main-Class: ${MAIN_CLASS}" \
>> "${base_dir}META-INF/MANIFEST.MF"
}
src_prepare() {
hprefixify scripts/{{tree,meta}.sh,movl} java-ebuilder.conf
eapply_user
}
src_install() {
java-pkg-simple_src_install
java-pkg_dolauncher ${PN} --main ${MAIN_CLASS}
insinto /var/lib/${PN}
doins -r maven
dodir /var/lib/${PN}/{poms,cache}
dodoc README maven.conf
exeinto /usr/lib/${PN}
doexe scripts/{tree,meta}.sh
dobin scripts/movl
insinto /etc
doins java-ebuilder.conf
}