This commit is contained in:
Mario Fetka
2024-12-28 18:22:25 +01:00
parent e119aa44fa
commit 6eb3029362
15 changed files with 270 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
DIST freeroute-1.4.6-jar-with-dependencies-linux.jar 13871977 BLAKE2B 2b9327b1fbf585960c223906e59d5b1829ce55cc2d18ee8cea5e7c4b0a727acc224c61633e391ffc262dbb6efac0e8d20daf69007c504587f73e4208324859a5 SHA512 94714b17142c075e8c5cd11d79581c4233894d7a4eb426450e674cecc5ff1957557839525662f9efb5a2f48d77e3d9cc15437fe602b7ebd326b68912c01bedf4
DIST freerouting-2.0.1.jar 66402315 BLAKE2B e7a172e09873e8c2d40754e93341804df7342d018b8ccef24c71d01ccbb88e4d4b42ca4112f106b72bf4251ad4c416206eac816ae2532f3fedcfdd384471ca57 SHA512 6b6ce1db5e9019644a3380c369ab02754ffdae822f16185b4f810e80c0ce5b1b84a0245c398a60ccd18d39879d5ed856cd8e3c7a0d0504b82f36c6563516b0d6
DIST system-run.png 1211 BLAKE2B 472fb70aaff7a01aef3d5997c7eafea3666034fddef184da26aa2242ee1d9a8e2fe37376d34f7a53d8520d3cf1c7be27ba71cb42e3f40a18fb882565839897be SHA512 e1cf3e25d0f9d0c9553d95cdbe2c8468a99488f0d3f15f734c74ef7c449b84a35cf5b1b0a62639eb0d9e89390ed0bf81040b6c94b8c0af03afc6539cb6ed2bae
EBUILD freerouting-1.4.6.ebuild 988 BLAKE2B 3bd65ba48b6e3586d1824a0125151c4427a37d529f7b6a4747e719cf9689e9c63f0ef706d3115e528ff7d46b82c27b7efa38d0a0bf044b33438965c01e99b628 SHA512 cc02bfe67e6147a67ca5b38155fae619e1ad2876958467944a1ee4a942cc297c65fef2ed40356e110d4e71adc40dc62c204d7aba9ff40db8df6995698f78fad3
EBUILD freerouting-2.0.1.ebuild 953 BLAKE2B 453e31469f19ce6c72d22c77bb58868bb245b60f5ed5cf37711f58340acb6c06d9abb1940c2a174b25f9dfa750fafd4e48223eade4477979bdfc0c2ed6694731 SHA512 405f5aefda4f2fcc2b635e546b795e18a70a210fb02274dca6f176b93f64ecbc230b313c0e8049bf3cea92a540ddad342d13481f6f4a633620a3e4be82c64b2c

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit java-pkg-2 desktop
DESCRIPTION="popular PCB routing and autorouting program"
HOMEPAGE="http://freerouting.net/"
SRC_URI="https://github.com/rbuj/FreeRouting/releases/download/v${PV}/freeroute-${PV}-jar-with-dependencies-linux.jar
https://raw.githubusercontent.com/rbuj/FreeRouting/master/src/main/resources/icons/32/actions/system-run.png"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="java nls"
DEPEND=">=virtual/jre-11:*"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}"
src_unpack() {
mkdir -p "${S}"
cp "${DISTDIR}"/freeroute-${PV}-jar-with-dependencies-linux.jar "${S}"/freeroute.jar
}
src_install() {
java-pkg_newjar freeroute.jar ${PN}.jar
java-pkg_dojar freeroute.jar
java-pkg_dolauncher freeroute -jar freeroute.jar
newicon "${DISTDIR}"/system-run.png ${PN}.png
make_desktop_entry ${PN} "FreeRouting" ${PN} "Science;Electricity;ComputerScience"
}

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit java-pkg-2 desktop
DESCRIPTION="popular PCB routing and autorouting program"
HOMEPAGE="http://freerouting.net/"
SRC_URI="https://github.com/freerouting/freerouting/releases/download/v${PV}/freerouting-${PV}.jar
https://raw.githubusercontent.com/rbuj/FreeRouting/master/src/main/resources/icons/32/actions/system-run.png"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="java nls"
DEPEND=">=virtual/jre-17:*"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}"
src_unpack() {
mkdir -p "${S}"
cp "${DISTDIR}"/freerouting-${PV}.jar "${S}"/freerouting.jar
}
src_install() {
java-pkg_newjar freerouting.jar ${PN}.jar
java-pkg_dojar freerouting.jar
java-pkg_dolauncher freerouting -jar freerouting.jar
newicon "${DISTDIR}"/system-run.png ${PN}.png
make_desktop_entry ${PN} "FreeRouting" ${PN} "Science;Electricity;ComputerScience"
}