mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
56 lines
1 KiB
Bash
56 lines
1 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit java-pkg-2
|
|
|
|
IUSE="source doc examples"
|
|
|
|
MY_PN=${PN%%-bin}
|
|
MY_P="${MY_PN}-${PV/_rc/-rc-}"
|
|
|
|
DESCRIPTION="A project automation and build tool with a Groovy based DSL"
|
|
SRC_URI="https://services.gradle.org/distributions/${MY_P}-all.zip -> ${P}.zip"
|
|
HOMEPAGE="http://www.gradle.org/"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="${PV}"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
RDEPEND="
|
|
>=virtual/jdk-1.6"
|
|
|
|
DEPEND="
|
|
app-arch/zip
|
|
>=virtual/jre-1.6"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
local gradle_dir="${EPREFIX}/usr/share/${PN}-${SLOT}"
|
|
|
|
dodoc docs/release-notes.html 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/javadoc
|
|
fi
|
|
|
|
# examples
|
|
if use examples ; then
|
|
java-pkg_doexamples samples
|
|
fi
|
|
|
|
insinto "${gradle_dir}"
|
|
doins -r bin/ lib/
|
|
fperms 755 "${gradle_dir}/bin/gradle"
|
|
dosym "${gradle_dir}/bin/gradle" "/usr/bin/${MY_PN}-${SLOT}"
|
|
}
|