mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 00:18:26 +00:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
29 lines
641 B
Bash
29 lines
641 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit java-pkg-2
|
|
|
|
DESCRIPTION="A Scheme dialect with a simple Java interface called Javadot notation"
|
|
HOMEPAGE="https://jscheme.sourceforge.net/jscheme/main.html"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tgz"
|
|
|
|
LICENSE="Apache-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc"
|
|
|
|
DEPEND=">=virtual/jdk-1.6:*"
|
|
RDEPEND=">=virtual/jre-1.6
|
|
${DEPEND}"
|
|
|
|
src_compile() {
|
|
sh bin/make || die "make failed"
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_dojar lib/*.jar
|
|
java-pkg_dolauncher ${PN} --main jscheme.REPL
|
|
use doc && dodoc -r doc
|
|
}
|