blob: d8da5e8340a1b0cab97efc93fce5067759c945f2 (
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
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
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
inherit java-pkg-2
MY_PN=${PN%%-bin}
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A project automation and build tool similar to Apache Ant and Apache Maven with a Groovy based DSL"
SRC_URI="http://services.gradle.org/distributions/${MY_P}-all.zip"
HOMEPAGE="http://www.gradle.org/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="app-arch/zip
app-admin/eselect-gradle"
RDEPEND=">=virtual/jdk-1.5"
IUSE="source doc examples"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
}
src_install() {
local gradle_dir="${EROOT}usr/share/${P}/"
dodoc changelog.txt getting-started.html
insinto "${gradle_dir}"
# source
if use source ; then
java-pkg_dosrc src/*
fi
# docs
if use doc ; then
java-pkg_dojavadoc docs
fi
# examples
if use examples ; then
java-pkg_doexamples samples
fi
# jars in lib/
cd lib || die "lib/ not found"
for jar in *.jar; do
java-pkg_newjar ${jar} ${jar}
done
# plugins in lib/plugins
cd plugins
java-pkg_jarinto ${JAVA_PKG_JARDEST}/plugins
for jar in *.jar; do
java-pkg_newjar ${jar} ${jar}
done
java-pkg_dolauncher "${P}" --main org.gradle.launcher.GradleMain --java_args "-Dgradle.home=${gradle_dir}/lib \${GRADLE_OPTS}"
}
pkg_postinst() {
eselect gradle update ifunset
}
pkg_postrm() {
eselect gradle update ifunset
}
|