28 lines
659 B
Bash
28 lines
659 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
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
|