mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 23:48:20 +00:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
61 lines
1.1 KiB
Bash
61 lines
1.1 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit autotools
|
|
|
|
MY_P="${P^g}"
|
|
|
|
DESCRIPTION="OpenGL binding for Gauche"
|
|
HOMEPAGE="https://practical-scheme.net/gauche/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN%-*}/${MY_P}.tgz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE="cg examples"
|
|
|
|
RDEPEND="dev-scheme/gauche:=
|
|
media-libs/freeglut
|
|
virtual/opengl
|
|
x11-libs/libXmu
|
|
cg? ( media-gfx/nvidia-cg-toolkit )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-simple.viewer.patch
|
|
"${FILESDIR}"/${P}-cflags.patch
|
|
"${FILESDIR}"/${P}-cg.patch
|
|
"${FILESDIR}"/${P}-info.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(usex cg --enable-cg "")
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
if use examples; then
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
docinto examples
|
|
dodoc examples/*.scm
|
|
# install simple
|
|
dodoc -r examples/simple
|
|
# install glbook
|
|
dodoc -r examples/glbook
|
|
dodoc -r examples/images
|
|
# install slbook
|
|
dodoc -r examples/slbook
|
|
# install cg examples
|
|
use cg && dodoc -r examples/cg
|
|
fi
|
|
}
|