You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-portage/java-ebuilder/java-ebuilder-0.5.1.ebuild

59 lines
1.2 KiB

# Copyright 2016-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} == 9999 ]]; then
ECLASS="git-r3"
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/${PN}.git"
else
SRC_URI="https://gitweb.gentoo.org/proj/java-ebuilder.git/snapshot/${P}.tar.gz"
KEYWORDS="~amd64"
fi
inherit java-pkg-2 java-pkg-simple prefix ${ECLASS}
DESCRIPTION="Java team tool for semi-automatic creation of ebuilds from pom.xml"
HOMEPAGE="https://github.com/gentoo/java-ebuilder"
LICENSE="GPL-2"
SLOT="0"
DEPEND=">=virtual/jdk-1.8"
RDEPEND=">=virtual/jre-1.8
sys-process/parallel
>=dev-java/maven-bin-3"
S="${WORKDIR}/${P}"
JAVA_SRC_DIR="src/main/java"
JAVA_RESOURCE_DIRS="src/main/resources"
JAVA_LAUNCHER_FILENAME=${PN}
JAVA_MAIN_CLASS="org.gentoo.java.ebuilder.Main"
src_prepare() {
default
hprefixify scripts/{bin/*,resources/Makefiles/*,movl} java-ebuilder.conf
}
src_install() {
java-pkg-simple_src_install
insinto /var/lib/${PN}
doins -r maven
dodir /var/lib/${PN}/{poms,cache}
keepdir /var/lib/${PN}/{poms,cache}
dodoc README maven.conf
exeinto /usr/lib/${PN}/bin
doexe scripts/bin/*
insinto /usr/lib/${PN}
doins -r scripts/resources/*
dobin scripts/movl
insinto /etc
doins java-ebuilder.conf
}