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.
This ebuild now uses the java-pkg-simple eclass to compile a simple Java file. Gentoo-Bug: https://bugs.gentoo.org/612808 Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST xjavac-2.4.0.tar.gz 2472 SHA256 82b0c4f59ab32d342c0011f443019dcc2a90797d2217e424a4eb5b5b264d0463 SHA512 6a12c605f6f455f20981214d1ce8ed752070ae2b268e9279692a3b05921c84857636055d9c4d7b1de92bafbaa4b528f36983dc2eca0ca883a7fa340320e503a0 WHIRLPOOL ef99442cb1687685260e4e0be68e849442ea55065a8ee8f9a342b46a81a6001eb4210454772df14fb9909f2b35b8c489bf50f8ac1a7cebc6facb5f4c88aed0fe | ||
DIST xjavac-20110814.tar.gz 2217 SHA256 b26f1bacb391cc5f38d6ec99113fba86eeda1c50d2e86bef165d979869af2275 SHA512 f4c5aa437d135a8495c926387df68df8f47878e206ea8f279a7c3e8e32561dbac5a8c8002f77a2bf03863f42475cad5068e3c1031121b64b32fb4d15242c3b3e WHIRLPOOL f75fbf242c629f3e1833ebbd41b073d5d93dc064ba3aba020cc8ac30fcdc015a4959fe46db94da896025f8b39cef6548a040f48f2421df15f18f72d9b7a356d6 |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
JAVA_PKG_IUSE="doc source" | ||
|
||
inherit java-pkg-2 java-pkg-simple | ||
|
||
DESCRIPTION="Xerses Java Parser" | ||
HOMEPAGE="https://xerces.apache.org/xerces-j" | ||
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="1" | ||
|
||
KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" | ||
|
||
CDEPEND="dev-java/ant-core:0" | ||
|
||
DEPEND=" | ||
${CDEPEND} | ||
>=virtual/jdk-1.7" | ||
|
||
RDEPEND=" | ||
${CDEPEND} | ||
>=virtual/jre-1.7" | ||
|
||
JAVA_GENTOO_CLASSPATH="ant-core" |