commit: 5a9fdb3e3a20a85a31acda50dd9e79c5ec2bf745 Author: Ben Buhse <me <AT> benbuhse <DOT> com> AuthorDate: Sun Mar 24 03:59:06 2024 +0000 Commit: Ben Buhse <gentoo <AT> benbuhse <DOT> com> CommitDate: Sun Mar 24 04:00:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5a9fdb3e
gui-apps/riverguile: new package, add 0.1.0, 9999 Signed-off-by: Ben Buhse <me <AT> benbuhse.com> gui-apps/riverguile/Manifest | 1 + gui-apps/riverguile/riverguile-0.1.0.ebuild | 32 +++++++++++++++++++++++++++++ gui-apps/riverguile/riverguile-9999.ebuild | 32 +++++++++++++++++++++++++++++ 3 files changed, 65 insertions(+) diff --git a/gui-apps/riverguile/Manifest b/gui-apps/riverguile/Manifest new file mode 100644 index 0000000000..82978e55bc --- /dev/null +++ b/gui-apps/riverguile/Manifest @@ -0,0 +1 @@ +DIST riverguile-0.1.0.tar.gz 22766 BLAKE2B daccacc918108c27a41386b9180f855545502635d2a2da26b53a9ed8f90e7bad3b14d86e0d850af942e7e43c1612172b7e8fb569f5cefcad60bb7df988a45aaf SHA512 b93d99799e33bb4368112ebb4be0372a2eb4d74f47a3a314994af8150ca2791dcdfc385bd088a0938579bdf1609eb340f01781b212b8b72f2c67e49a7094b55b diff --git a/gui-apps/riverguile/riverguile-0.1.0.ebuild b/gui-apps/riverguile/riverguile-0.1.0.ebuild new file mode 100644 index 0000000000..7258f94219 --- /dev/null +++ b/gui-apps/riverguile/riverguile-0.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="River layout generator powered by guile scheme " +HOMEPAGE="https://git.sr.ht/~leon_plickat/riverguile/" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.sr.ht/~leon_plickat/riverguile" +else + SRC_URI="https://git.sr.ht/~leon_plickat/riverguile/archive/v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-v${PV}" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3" +SLOT="0" + +DEPEND="dev-libs/wayland" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-libs/wayland-protocols + >=dev-scheme/guile-2.2.7-r1 +" + +src_install() { + # Need to install to /usr instead of /usr/local + # and the Makefile doens't handle DESTDIR properly + emake PREFIX="${D}"/usr install +} diff --git a/gui-apps/riverguile/riverguile-9999.ebuild b/gui-apps/riverguile/riverguile-9999.ebuild new file mode 100644 index 0000000000..7258f94219 --- /dev/null +++ b/gui-apps/riverguile/riverguile-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="River layout generator powered by guile scheme " +HOMEPAGE="https://git.sr.ht/~leon_plickat/riverguile/" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.sr.ht/~leon_plickat/riverguile" +else + SRC_URI="https://git.sr.ht/~leon_plickat/riverguile/archive/v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-v${PV}" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3" +SLOT="0" + +DEPEND="dev-libs/wayland" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-libs/wayland-protocols + >=dev-scheme/guile-2.2.7-r1 +" + +src_install() { + # Need to install to /usr instead of /usr/local + # and the Makefile doens't handle DESTDIR properly + emake PREFIX="${D}"/usr install +}
