diff options
author | Alfred Wingate <parona@protonmail.com> | 2024-08-27 00:42:12 +0300 |
---|---|---|
committer | Arsen Arsenović <arsen@gentoo.org> | 2024-09-18 15:06:35 +0200 |
commit | a6568c9f6325040a6c22119024a3a318bb4a52b8 (patch) | |
tree | bc87db845d7f2528300a9f4fecfb81cefec20f6b /dev-scheme | |
parent | dev-scheme/guile-gnutls: switch to new guile mechanism (diff) | |
download | gentoo-a6568c9f6325040a6c22119024a3a318bb4a52b8.tar.gz gentoo-a6568c9f6325040a6c22119024a3a318bb4a52b8.tar.bz2 gentoo-a6568c9f6325040a6c22119024a3a318bb4a52b8.zip |
dev-scheme/guile-hall: switch to new guile mechanism
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/guile-hall/guile-hall-0.4.1-r100.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-scheme/guile-hall/guile-hall-0.4.1-r100.ebuild b/dev-scheme/guile-hall/guile-hall-0.4.1-r100.ebuild new file mode 100644 index 000000000000..eb5fc54a0b5a --- /dev/null +++ b/dev-scheme/guile-hall/guile-hall-0.4.1-r100.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GUILE_COMPAT=( 2-2 3-0 ) +inherit autotools guile + +DESCRIPTION="Guile tooling to create and publish projects" +HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-hall/" +SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +REQUIRED_USE="${GUILE_REQUIRED_USE}" + +RDEPEND=" + ${GUILE_DEPS} + >=dev-scheme/guile-config-0.5.1-r100[${GUILE_USEDEP}] +" +DEPEND="${RDEPEND}" + +src_prepare() { + guile_src_prepare + + sed -i -e "s|@verbatiminclude |@verbatiminclude ${S}/|" doc/hall.texi || die + + eautoreconf +} |