mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
After a message to gentoo-dev ML, and no reply from any user on x86, we decided to dekeyword most Java packages from x86, and reverse dependencies of them. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
45 lines
1 KiB
Bash
45 lines
1 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Partial port of the C++ Standard Template Library"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz"
|
|
S="${WORKDIR}/${P}"
|
|
|
|
LICENSE="HPND"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
DEPEND="
|
|
dev-java/ant:0
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
JAVA_CLASSPATH_EXTRA="ant"
|
|
JAVA_SRC_DIR="src/jal"
|
|
|
|
src_prepare() {
|
|
java-pkg-2_src_prepare
|
|
|
|
# Generate sources.
|
|
./instantiate -n byte bytes || die
|
|
./instantiate -n short shorts || die
|
|
./instantiate -n char chars || die
|
|
./instantiate -n int ints || die
|
|
./instantiate -n long longs || die
|
|
./instantiate -n float floats || die
|
|
./instantiate -n double doubles || die
|
|
./instantiate Object objects || die
|
|
./instantiate String strings || die
|
|
|
|
mkdir -p src/jal || die
|
|
mv bytes shorts chars ints longs floats doubles objects strings src/jal || die
|
|
}
|