packages feed

OpenVG-0.3.0: OpenVG.cabal

name:             OpenVG
version:          0.3.0
license:          BSD3
license-file:     LICENSE
copyright:        Stephen Tetley <stephen.tetley@gmail.com>
maintainer:       Stephen Tetley <stephen.tetley@gmail.com>
homepage:         http://code.google.com/p/copperbox/
category:         Graphics
synopsis:         OpenVG (shivag-0.2.1) binding
description:
  A Haskell binding for the OpenVG vector graphics API version 1.0.1
  specifically the ShivaVG-0.2.1 implementation.
  .
  This version (0.3.0) is NOT compatible with the Haskell Platform 
  - it uses the split OpenGL packages (RAW, Tensor, etc.).
  .
  ** NOT CURRENTLY WORKING ON WINDOWS **
  .
  Changelog
  0.2.1 to 0.3.0 Changes to use the split OpenGL packages, added type coercions 
  in the Size data type (these might not be ideal).
  . 
  0.2 to 0.2.1 .cabal file upper bounds for OpenGL and GLUT, and
  Windows installation instructions updated.
 
build-type:         Simple
stability:          experimental
cabal-version:      >= 1.2

extra-source-files:
  InstallWindows.txt,
  NEWS,
  README.txt,
  examples/TestUtils.hs,
  examples/TestVgu.hs

library
  hs-source-dirs:     src
  build-depends:      base < 5, OpenGL >= 2.4 && < 2.5, GLUT >= 2.2 && < 2.3,
                      OpenGLRaw >=1.1.0.1 && < 2, StateVar >= 1.0.0.0 && < 2

  
  exposed-modules:
    Graphics.Rendering.OpenVG,
    Graphics.Rendering.OpenVG.Util.Colors,
    Graphics.Rendering.OpenVG.Util.PathCommands,
    Graphics.Rendering.OpenVG.VG,
    Graphics.Rendering.OpenVG.VGU,
    Graphics.Rendering.OpenVG.VG.BasicTypes,
    Graphics.Rendering.OpenVG.VG.Blending,
    Graphics.Rendering.OpenVG.VG.DrawingContext,
    Graphics.Rendering.OpenVG.VG.Extending,
    Graphics.Rendering.OpenVG.VG.Images,
    Graphics.Rendering.OpenVG.VG.Paint,
    Graphics.Rendering.OpenVG.VG.Parameters,
    Graphics.Rendering.OpenVG.VG.Paths,
    Graphics.Rendering.OpenVG.VG.RenderingQuality,
    Graphics.Rendering.OpenVG.VG.Scissoring,
    Graphics.Rendering.OpenVG.VG.ShivaExtensions,
    Graphics.Rendering.OpenVG.VGU.VGU,
    Graphics.Rendering.OpenVG.VGU.Errors
  
  other-modules:
    Graphics.Rendering.OpenVG.VG.Constants,
    Graphics.Rendering.OpenVG.VG.Utils,
    Graphics.Rendering.OpenVG.VG.CFunDecls,
    Graphics.Rendering.OpenVG.VGU.CInternals,
    Graphics.Rendering.OpenVG.VGU.ErrorsInternal    
  
  extensions:
    ForeignFunctionInterface, TypeSynonymInstances, CPP

  ghc-options:  -Wall