blob: df2278427c9c216b255da1bc9139c136fb578cd5 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
CABAL_FEATURES="lib profile haddock"
inherit haskell-cabal
MY_PN="GLUT"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A binding for the OpenGL Utility Toolkit"
HOMEPAGE="http://www.haskell.org/HOpenGL/"
SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.6.1
>=dev-haskell/opengl-2.2
virtual/opengl
media-libs/freeglut"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.2"
S="${WORKDIR}/${MY_P}"
# TODO: Install examples when the "examples" USE flag is set
|