forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eclass/java-vm-2.eclass: bump to eapi8
Signed-off-by: Miroslav Šulc <[email protected]>
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,14 @@ | |
# @ECLASS: java-vm-2.eclass | ||
# @MAINTAINER: | ||
# [email protected] | ||
# @SUPPORTED_EAPIS: 5 6 | ||
# @SUPPORTED_EAPIS: 6 8 | ||
# @BLURB: Java Virtual Machine eclass | ||
# @DESCRIPTION: | ||
# This eclass provides functionality which assists with installing | ||
# virtual machines, and ensures that they are recognized by java-config. | ||
|
||
case ${EAPI:-0} in | ||
5|6) ;; | ||
[68]) ;; | ||
*) die "EAPI=${EAPI} is not supported" ;; | ||
esac | ||
|
||
|
@@ -20,8 +20,9 @@ inherit multilib pax-utils prefix xdg-utils | |
EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm pkg_postrm | ||
|
||
RDEPEND=" | ||
>=dev-java/java-config-2.2.0-r3 | ||
>=app-eselect/eselect-java-0.4.0" | ||
dev-java/java-config | ||
app-eselect/eselect-java | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
export WANT_JAVA_CONFIG=2 | ||
|