summaryrefslogtreecommitdiff
path: root/dev-scheme/guile-gi/guile-gi-9999.ebuild
blob: 1d232ddf9d51f36d971122aae729a40b2e779d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 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 virtualx autotools guile

DESCRIPTION="Bindings for GObject Introspection and libgirepository for Guile"
HOMEPAGE="https://spk121.github.io/guile-gi/"

if [[ "${PV}" == *9999* ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/spk121/${PN}.git"
else
	SRC_URI="https://github.com/spk121/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="GPL-3"
SLOT="0"

REQUIRED_USED="${GUILE_REQUIRED_USE}"

DEPEND="
	${GUILE_DEPS}
	dev-libs/gobject-introspection
	x11-libs/gtk+:3[introspection]
"
RDEPEND="${DEPEND}"
BDEPEND="sys-apps/texinfo"

PATCHES=(
	"${FILESDIR}"/guile-gi-0.3.2-function-cast.patch
)

src_prepare() {
	guile_src_prepare

	eautoreconf
}

src_configure() {
	guile_foreach_impl econf --enable-introspection=yes
}

src_compile() {
	my_compile() {
		mkdir test || die
		default
	}
	guile_foreach_impl my_compile
}

src_test() {
	guile_foreach_impl virtx default
}

src_install() {
	guile_src_install

	mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${PF} || die
	find "${ED}" -type f -name '*.la' -delete || die
}