48 lines
918 B
Bash
48 lines
918 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit autotools vcs-snapshot
|
|
|
|
MY_P="${PN^g}2-${PV}"
|
|
EGIT_COMMIT="4a468e48a5d8c2289c53b5d416f632f62ca7f887"
|
|
|
|
DESCRIPTION="GTK2 binding for Gauche"
|
|
HOMEPAGE="https://practical-scheme.net/gauche/"
|
|
SRC_URI="https://github.com/shirok/${PN^g}2/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="examples"
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="dev-scheme/gauche:=
|
|
x11-libs/gtk+:2"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoconf
|
|
}
|
|
|
|
src_compile() {
|
|
emake stubs
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
if use examples; then
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
docinto examples
|
|
dodoc examples/*.scm
|
|
# install gtk-tutorial
|
|
docinto examples/gtk-tutorial
|
|
dodoc examples/gtk-tutorial/*
|
|
fi
|
|
}
|