--- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-doc.postinst +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-doc.postinst @@ -0,0 +1,39 @@ +#! /bin/sh +# Generic doc postinst script for Haskell cabal libraries v9 by Ian Lynagh. +# +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure|abort-upgrade|abort-remove|abort-deconfigure) + cd /usr/share/doc/ghc6-doc/libraries + /usr/lib/ghc6-doc/gen_contents_index + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- haskell-opengl-2.2.1.1.orig/debian/control +++ haskell-opengl-2.2.1.1/debian/control @@ -0,0 +1,61 @@ +Source: haskell-opengl +Section: libdevel +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Ian Lynagh (wibble) +Standards-Version: 3.7.3 +Build-Depends: debhelper (>= 5), haddock (>= 0.8-2), hscolour, haskell-utils (>= 1.10), ghc6 (>= 6.8.2), ghc6 (<< 6.8.2+), ghc6-prof (>= 6.8.2), ghc6-prof (<< 6.8.2+), ghc6-doc (>= 6.8.2), ghc6-doc (<< 6.8.2+), xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, libx11-dev + +Package: libghc6-opengl-dev +Section: libdevel +Architecture: any +Depends: ghc6 (>= 6.8.2), ghc6 (<< 6.8.2+), ${shlibs:Depends}, ${misc:Depends}, xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, libx11-dev +Suggests: libghc6-opengl-prof, libghc6-opengl-doc +Description: Haskell OpenGL binding for GHC + This package provides a library for the Haskell programming language. + See http://www.haskell.org/ for more information on Haskell. + . + This library provides a binding for the OpenGL graphics system (GL, + version 1.5) and its accompanying utility library (GLU, version 1.3). + OpenGL is the industry's most widely used and supported 2D and 3D + graphics application programming interface (API), incorporating + a broad set of rendering, texture mapping, special effects, and + other powerful visualization functions. For more information + about OpenGL, please see: . + +Package: libghc6-opengl-prof +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libghc6-opengl-dev, ghc6-prof (>= 6.8.2), ghc6-prof (<< 6.8.2+), xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, libx11-dev +Suggests: libghc6-opengl-doc +Description: Haskell OpenGL binding for GHC; profiling libraries + This package provides a library for the Haskell programming language, + compiled for profiling. + See http://www.haskell.org/ for more information on Haskell. + . + This library provides a binding for the OpenGL graphics system (GL, + version 1.5) and its accompanying utility library (GLU, version 1.3). + OpenGL is the industry's most widely used and supported 2D and 3D + graphics application programming interface (API), incorporating + a broad set of rendering, texture mapping, special effects, and + other powerful visualization functions. For more information + about OpenGL, please see: . + +Package: libghc6-opengl-doc +Section: doc +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ghc6-doc (>= 6.8.2), ghc6-doc (<< 6.8.2+) +Suggests: libghc6-opengl-dev, libghc6-opengl-prof +Description: Haskell OpenGL binding for GHC; documentation + This package provides the documentation for a library for the Haskell + programming language. + See http://www.haskell.org/ for more information on Haskell. + . + This library provides a binding for the OpenGL graphics system (GL, + version 1.5) and its accompanying utility library (GLU, version 1.3). + OpenGL is the industry's most widely used and supported 2D and 3D + graphics application programming interface (API), incorporating + a broad set of rendering, texture mapping, special effects, and + other powerful visualization functions. For more information + about OpenGL, please see: . + --- haskell-opengl-2.2.1.1.orig/debian/rules +++ haskell-opengl-2.2.1.1/debian/rules @@ -0,0 +1,134 @@ +#!/usr/bin/make -f +# Generic Haskell cabal library debian/rules v9 by Ian Lynagh, +# based on the example by Joey Hess. +# This file is public domain software. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Get the Cabal package name, lower-cased. +# Assumes that the Debian package name is standard. +CABAL_PACKAGE = $(shell dpkg-parsechangelog | sed "1s/source: haskell-//i; q") + +GHC6_PACKAGE = libghc6-$(CABAL_PACKAGE)-dev +GHC6_PROF_PACKAGE = libghc6-$(CABAL_PACKAGE)-prof +GHC6_DOC_PACKAGE = libghc6-$(CABAL_PACKAGE)-doc + +# Find ghc. The ghc in the path might point to some other version of +# GHC, so use ghc6 if it exists (which it ought to when building for +# Debian) +GHC := $(firstword $(shell bash -c "type -p ghc6 ghc")) + +CONFIGURE_OPTS = --enable-library-vanilla \ + --enable-library-profiling \ + --enable-library-for-ghci +ifneq '$(findstring $(shell dpkg-architecture -qDEB_HOST_ARCH), amd64)' '' +CONFIGURE_OPTS += --enable-split-objs +endif + +build: build-stamp +build-stamp: + dh_testdir + + update-haskell-control --check + $(GHC) --make Setup.*hs -o setup-ghc + ./setup-ghc configure --ghc --with-compiler=$(GHC) --prefix=/usr --docdir=/usr/share/doc/ghc6-doc/libraries/$(CABAL_PACKAGE) --htmldir=/usr/share/doc/ghc6-doc/libraries/$(CABAL_PACKAGE) $(CONFIGURE_OPTS) + ./setup-ghc build + ./setup-ghc haddock --hyperlink-source + + touch $@ + +FILES = -type f +PROF_FILE = \( -name "*.p_*" -o -name "lib*_p.a" \) + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + ./setup-ghc copy --destdir=debian/tmp/ + # XXX The file isn't necessarily called LICENSE, and may not even + # exist at all + rm debian/tmp/usr/share/doc/ghc6-doc/libraries/$(CABAL_PACKAGE)/LICENSE + find debian/tmp/usr/lib -type f ! $(PROF_FILE) \ + > debian/$(GHC6_PACKAGE).install + find debian/tmp -type d -empty >> debian/$(GHC6_PACKAGE).install + find debian/tmp/usr/lib -type f $(PROF_FILE) \ + > debian/$(GHC6_PROF_PACKAGE).install + echo "debian/tmp/usr/share/doc" > debian/$(GHC6_DOC_PACKAGE).install + + ./setup-ghc register --gen-script + ./setup-ghc unregister --gen-script + mkdir -p debian/$(GHC6_PACKAGE)/usr/lib/$(GHC6_PACKAGE) + mv register.sh debian/$(GHC6_PACKAGE)/usr/lib/$(GHC6_PACKAGE) + mv unregister.sh debian/$(GHC6_PACKAGE)/usr/lib/$(GHC6_PACKAGE) + + touch $@ + +update-generated-files: + update-debian-haskell-files + update-haskell-control + sed "s/@PACKAGE@/$(GHC6_PACKAGE)/g" debian/$(GHC6_PACKAGE).prerm.in \ + > debian/$(GHC6_PACKAGE).prerm + sed "s/@PACKAGE@/$(GHC6_PACKAGE)/g" debian/$(GHC6_PACKAGE).postinst.in \ + > debian/$(GHC6_PACKAGE).postinst + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp binary-common-stamp + + -./setup-ghc clean + rm -f Setup.o Setup.hi setup-ghc + rm -f debian/*.install + + dh_clean + +# Build architecture-dependent files here. +binary-common: binary-common-stamp +binary-common-stamp: install-stamp + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install --fail-missing +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installcatalogs +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_undocumented + dh_installman + dh_link + dh_strip + dh_compress -X.haddock + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# binary-indep and binary-arch both build everything, as otherwise +# # "dh_install --fail-missing" falls over + +# Build architecture-independent files here. +binary-indep: binary-common-stamp +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: binary-common-stamp + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary-common binary install --- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-dev.prerm +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-dev.prerm @@ -0,0 +1,34 @@ +#! /bin/sh +# Generic prerm.in script for Haskell cabal libraries v9 by Ian Lynagh. +# +# SOURCE: libghc6-opengl-dev.prerm.in + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ + +case "$1" in + remove|upgrade|deconfigure|failed-upgrade) + /usr/lib/libghc6-opengl-dev/unregister.sh + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- haskell-opengl-2.2.1.1.orig/debian/changelog +++ haskell-opengl-2.2.1.1/debian/changelog @@ -0,0 +1,96 @@ +haskell-opengl (2.2.1.1-2ubuntu1) hardy; urgency=low + + * Merge from Debian unstable. (LP: #199570) Remaining Ubuntu changes: + + debian/rules: + - Don't --enable-split-objs on i386 (fixes FTBFS). + + debian/control: + - Modify Maintainer value to match DebianMaintainerField spec. + + -- Stefan Ebner Wed, 5 Mar 2008 23:31:33 +0100 + +haskell-opengl (2.2.1.1-2) unstable; urgency=low + + * Upgrade to "Generic Haskell cabal library packaging files v10": + * Versioned dependencies are now generated for the Cabal packages we + depend on. + * Use the new ${impl:ghc6:*_deps} variables in debian/control.in. + * Call canonicalise-comma-list on the depends and suggests fields in + control.in. This works around bugs in lintian, where it gets + confused and starts giving spurious warnings. + + -- Ian Lynagh (wibble) Thu, 28 Feb 2008 01:01:43 +0000 + +haskell-opengl (2.2.1.1-1ubuntu1) hardy; urgency=low + + * debian/rules: + + Don't --enable-split-objs on i386 (fixes FTBFS). + * debian/control: + + Modify Maintainer value to match DebianMaintainerField spec. + + -- Michael Bienia Sat, 19 Jan 2008 14:04:49 +0100 + +haskell-opengl (2.2.1.1-1) unstable; urgency=low + + * New upstream version. + * Upgrade to "Generic Haskell cabal library packaging files v9": + * Allows Setup to be in Setup.lhs instead of Setup.hs. + * Bump the required haskell-utils from 1.8 to 1.10. + * The control.in gives a standards-version of 3.7.3 (was 3.7.2). + * Move everything from the devel section to the libdevel section. + * Delete the LICENSE file (currently we assume it has that name, and + that it exists) after "Setup copy"ing the Cabal package. + * Remove some hacks that worked around older Cabal not letting us + tell it exactly where to put the documentation. + * Use --hyperlink-source when telling Cabal to haddock the library. + * Add hscolour to the build-depends. + + -- Ian Lynagh (wibble) Tue, 20 Nov 2007 00:00:58 +0000 + +haskell-opengl (2.2.1-2) unstable; urgency=low + + * Upgrade to "Generic Haskell cabal library packaging files v8": + * update-generated-files rule in debian/rules runs + update-debian-haskell-files. + * Build-dep on haddock >= 0.8-2 in order to get portable .haddock files. + * We tell Cabal's configure where to put the docs so that it doesn't + break when we move them around behind its back. + * Use canonicalise-comma-list around the build-deps in debian/control.in + to fix problems where we get an unparsable ", , " when a variable is + empty. + + -- Ian Lynagh (wibble) Mon, 04 Jun 2007 21:53:03 +0000 + +haskell-opengl (2.2.1-1) unstable; urgency=low + + * New upstream version. + * Fix Setup.hs (type signatures don't match our version of Cabal). + * Split off profiling and documentation into separate packages. + * debian/control.in now makes much more use of variables, including + magic Cabal variables. + * Use debhelper level 5 (was 4). + * Bump haskell-utils build-dep requirement to 1.8. + * Upgrade to "Generic Haskell cabal library debian/rules v0.7": + * Generate haddock docs. + * -doc package calls gen_contents_index from postinst and postrm. + * Use destdir rather than deprecated copy-prefix flag to Setup copy. + * Add -X.haddock to dh_compress call. + + -- Ian Lynagh (wibble) Thu, 10 May 2007 13:40:23 +0100 + +haskell-opengl (2.1-2) unstable; urgency=low + + * Upgrade to "Generic Haskell cabal library debian/rules v0.6". + Tell setup to use ghc6 rather than ghc, so that the postinst/prerm + scripts work when the ghc-pkg symlink doesn't exist or doesn't + point to ghc6's ghc-pkg. + + -- Ian Lynagh (wibble) Mon, 20 Nov 2006 20:50:42 +0000 + +haskell-opengl (2.1-1) unstable; urgency=low + + * Initial release (was part of ghc6 until version 6.6-1). + * Remove the word "industry's" from the .cabal file as the ' was + not being handled correctly when generating the script. + + -- Ian Lynagh (wibble) Fri, 13 Oct 2006 16:43:11 +0000 + --- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-dev.postinst +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-dev.postinst @@ -0,0 +1,40 @@ +#! /bin/sh +# Generic postinst script for Haskell cabal libraries v9 by Ian Lynagh. +# +# SOURCE: libghc6-opengl-dev.postinst.in +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure|abort-upgrade|abort-remove|abort-deconfigure) + /usr/lib/libghc6-opengl-dev/register.sh + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- haskell-opengl-2.2.1.1.orig/debian/compat +++ haskell-opengl-2.2.1.1/debian/compat @@ -0,0 +1 @@ +5 --- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-doc.postrm +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-doc.postrm @@ -0,0 +1,21 @@ +#! /bin/sh +# Generic doc postrm script for Haskell cabal libraries v9 by Ian Lynagh. + +set -e + +DIR=/usr/share/doc/ghc6-doc/libraries +GEN=/usr/lib/ghc6-doc/gen_contents_index + +case "$1" in + *) + [ -d $DIR ] && [ -e $GEN ] && cd $DIR && $GEN + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- haskell-opengl-2.2.1.1.orig/debian/control.in +++ haskell-opengl-2.2.1.1/debian/control.in @@ -0,0 +1,38 @@ +Source: ${this:source} +Section: libdevel +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: ${maintainer} +Standards-Version: 3.7.3 +Build-Depends: &{canonicalise-comma-list:debhelper (>= 5), haddock (>= 0.8-2), hscolour, haskell-utils (>= 1.10), ${impl:ghc6:lib:build_deps}, ${cabal:deps:ghc6:dev}, ${cabal:deps:ghc6:prof}, ${cabal:deps:ghc6:doc}, ${c_dev_libs}, ${extra_build_deps}} + +Package: ${this:ghc6:dev} +Section: libdevel +Architecture: any +Depends: &{canonicalise-comma-list:${impl:ghc6:lib:dev_deps}, \${shlibs:Depends}, \${misc:Depends}, ${cabal:deps:ghc6:dev}, ${c_dev_libs}} +Suggests: &{canonicalise-comma-list:${this:ghc6:prof}, ${this:ghc6:doc}} +Description: ${short_description} +${dev_library_description_header} + . +${long_description} + +Package: ${this:ghc6:prof} +Section: libdevel +Architecture: any +Depends: &{canonicalise-comma-list:\${shlibs:Depends}, \${misc:Depends}, ${this:ghc6:dev}, ${impl:ghc6:lib:prof_deps}, ${cabal:deps:ghc6:prof}, ${c_dev_libs}} +Suggests: &{canonicalise-comma-list:${this:ghc6:doc}} +Description: ${short_description}; profiling libraries +${prof_library_description_header} + . +${long_description} + +Package: ${this:ghc6:doc} +Section: doc +Architecture: all +Depends: &{canonicalise-comma-list:\${shlibs:Depends}, \${misc:Depends}, ${impl:ghc6:lib:doc_deps}, ${cabal:deps:ghc6:doc}} +Suggests: &{canonicalise-comma-list:${this:ghc6:dev}, ${this:ghc6:prof}} +Description: ${short_description}; documentation +${doc_library_description_header} + . +${long_description} + --- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-dev.postinst.in +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-dev.postinst.in @@ -0,0 +1,40 @@ +#! /bin/sh +# Generic postinst script for Haskell cabal libraries v9 by Ian Lynagh. +# +# SOURCE: @PACKAGE@.postinst.in +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure|abort-upgrade|abort-remove|abort-deconfigure) + /usr/lib/@PACKAGE@/register.sh + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- haskell-opengl-2.2.1.1.orig/debian/libghc6-opengl-dev.prerm.in +++ haskell-opengl-2.2.1.1/debian/libghc6-opengl-dev.prerm.in @@ -0,0 +1,34 @@ +#! /bin/sh +# Generic prerm.in script for Haskell cabal libraries v9 by Ian Lynagh. +# +# SOURCE: @PACKAGE@.prerm.in + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/doc/packaging-manual/ + +case "$1" in + remove|upgrade|deconfigure|failed-upgrade) + /usr/lib/@PACKAGE@/unregister.sh + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- haskell-opengl-2.2.1.1.orig/debian/copyright +++ haskell-opengl-2.2.1.1/debian/copyright @@ -0,0 +1,83 @@ + +This package was debianised by Ian Lynagh on +Fri, 13 Oct 2006. All of the Debian packaging scripts are released +into the public domain. + +It was downloaded from +http://hackage.haskell.org/packages/archive/OpenGL/2.2.1.1/OpenGL-2.2.1.1.tar.gz + +----- + +Upstream Author: Sven Panne + +Copyright (c) 2005, 2006, Sven Panne +All rights reserved. + +BSD licenced. The complete text of the BSD license can be found in +/usr/share/common-licenses/BSD on Debian systems. + +----- + +configure is + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. + +----- + +config.guess and config.sub are + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + + This file is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + As a special exception to the GNU General Public License, if you + distribute this file as part of a program that contains a + configuration script generated by Autoconf, you may include it under + the same distribution terms that you use for the rest of that program. + +The complete text of the GNU General Public License, version 2, can be +found in /usr/share/common-licenses/GPL-2 on Debian systems. + +----- + +install-sh is + +Copyright (C) 1994 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from the X Consor- +tium. + +FSF changes to this file are in the public domain. + --- haskell-opengl-2.2.1.1.orig/debian/varfiles/varfile +++ haskell-opengl-2.2.1.1/debian/varfiles/varfile @@ -0,0 +1,6 @@ +maintainer="Ian Lynagh (wibble) " +short_description="Haskell OpenGL binding for GHC" +long_description=" This library provides a binding for the OpenGL graphics system (GL,\n version 1.5) and its accompanying utility library (GLU, version 1.3).\n OpenGL is the industry's most widely used and supported 2D and 3D\n graphics application programming interface (API), incorporating\n a broad set of rendering, texture mapping, special effects, and\n other powerful visualization functions. For more information\n about OpenGL, please see: ." +c_dev_libs="xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, libx11-dev" +extra_build_deps="" +