summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorobache <obache>2013-12-12 12:47:17 +0000
committerobache <obache>2013-12-12 12:47:17 +0000
commit10997b8f41d7b29d029928badaad2f800eb4abf3 (patch)
treeacd4abf28a94b5916290723a8baed12fedf5b303 /lang
parentc37778e1ad37c4710fceb38db9fcf8e2368e62b7 (diff)
downloadpkgsrc-10997b8f41d7b29d029928badaad2f800eb4abf3.tar.gz
Import ghc-7.6.3 as lang/ghc7.
Based on wip/ghc, mostly worked by phonohawk, with patches from jperkin@. And some modifications and buit of Bootstrap binaries for 7.6.3 by me. GHC: The Glasgow Haskell Compiler. The Glasgow Haskell Compiler is a robust, fully-featured, optimising compiler for the functional programming language Haskell 98 (http://www.haskell.org). GHC compiles Haskell to either native code or C. It implements numerous experimental language extensions to Haskell, including concurrency, a foreign language interface, several type-system extensions, exceptions, and so on. GHC comes with a generational garbage collector, a space and time profiler, and a comprehensive set of libraries.
Diffstat (limited to 'lang')
-rw-r--r--lang/ghc7/DEINSTALL9
-rw-r--r--lang/ghc7/DESCR10
-rw-r--r--lang/ghc7/INSTALL8
-rw-r--r--lang/ghc7/Makefile187
-rw-r--r--lang/ghc7/PLIST5386
-rw-r--r--lang/ghc7/TODO30
-rw-r--r--lang/ghc7/bootstrap.mk138
-rw-r--r--lang/ghc7/buildlink3.mk16
-rw-r--r--lang/ghc7/distinfo19
-rw-r--r--lang/ghc7/files/bootstrap.build.mk35
-rw-r--r--lang/ghc7/patches/patch-Makefile16
-rw-r--r--lang/ghc7/patches/patch-ghc.mk23
-rw-r--r--lang/ghc7/patches/patch-libraries_integer-gmp_configure.ac42
-rw-r--r--lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer.hs15
-rw-r--r--lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer_Type.hs24
-rw-r--r--lang/ghc7/patches/patch-rts_Linker.c26
-rw-r--r--lang/ghc7/patches/patch-rts_StgCRun.c31
-rw-r--r--lang/ghc7/patches/patch-rts_ghc.mk22
18 files changed, 6037 insertions, 0 deletions
diff --git a/lang/ghc7/DEINSTALL b/lang/ghc7/DEINSTALL
new file mode 100644
index 00000000000..14c866d2006
--- /dev/null
+++ b/lang/ghc7/DEINSTALL
@@ -0,0 +1,9 @@
+#!/bin/sh
+#
+DISTNAME="@DISTNAME@"
+
+case ${STAGE} in
+ DEINSTALL)
+ ${RM} -f ${PKG_PREFIX}/lib/${DISTNAME}/package.conf.d/package.cache
+ ;;
+esac
diff --git a/lang/ghc7/DESCR b/lang/ghc7/DESCR
new file mode 100644
index 00000000000..2f6a0852458
--- /dev/null
+++ b/lang/ghc7/DESCR
@@ -0,0 +1,10 @@
+GHC: The Glasgow Haskell Compiler.
+
+The Glasgow Haskell Compiler is a robust, fully-featured, optimising
+compiler for the functional programming language Haskell 98
+(http://www.haskell.org). GHC compiles Haskell to either native code
+or C. It implements numerous experimental language extensions to
+Haskell, including concurrency, a foreign language interface, several
+type-system extensions, exceptions, and so on. GHC comes with a
+generational garbage collector, a space and time profiler, and a
+comprehensive set of libraries.
diff --git a/lang/ghc7/INSTALL b/lang/ghc7/INSTALL
new file mode 100644
index 00000000000..a1c8ec4669b
--- /dev/null
+++ b/lang/ghc7/INSTALL
@@ -0,0 +1,8 @@
+#!/bin/sh
+#
+
+case ${STAGE} in
+ POST-INSTALL)
+ ${PKG_PREFIX}/bin/ghc-pkg recache
+ ;;
+esac
diff --git a/lang/ghc7/Makefile b/lang/ghc7/Makefile
new file mode 100644
index 00000000000..feaed631dcf
--- /dev/null
+++ b/lang/ghc7/Makefile
@@ -0,0 +1,187 @@
+# $NetBSD: Makefile,v 1.1 2013/12/12 12:47:17 obache Exp $
+# -----------------------------------------------------------------------------
+# Package metadata
+#
+DISTNAME= ghc-${VERSION}
+VERSION= 7.6.3
+CATEGORIES= lang
+MASTER_SITES= http://www.haskell.org/ghc/dist/${VERSION}/
+MAINTAINER= pho@cielonegro.org
+HOMEPAGE= http://www.haskell.org/ghc/
+COMMENT= Compiler for the functional language Haskell
+LICENSE= modified-bsd
+
+# GHC requires GHC to build itself. Formerly we could work around this
+# bootstrapping problem by creating a special archive containing C
+# sources compiled from Haskell sources, but that's no longer
+# possible. So we have to prepare stripped-down binaries sufficient to
+# bootstrap compilers for each platforms. If you want to build them
+# yourself, follow an instruction in the ./TODO file.
+ONLY_FOR_PLATFORM= \
+ NetBSD-*-i386 \
+ NetBSD-*-x86_64 \
+
+
+# -----------------------------------------------------------------------------
+# Distfiles
+#
+DISTFILES= ${DISTNAME}-src.tar.bz2
+.if make(distinfo)
+#DISTFILES+= ${DISTNAME}-boot-i386-unknown-freebsd.tar.xz
+DISTFILES+= ${DISTNAME}-boot-i386-unknown-netbsd.tar.xz
+#DISTFILES+= ${DISTNAME}-boot-powerpc-apple-darwin.tar.xz
+#DISTFILES+= ${DISTNAME}-boot-x86_64-unknown-linux.tar.xz
+DISTFILES+= ${DISTNAME}-boot-x86_64-unknown-netbsd.tar.xz
+#DISTFILES+= ${DISTNAME}-boot-i386-unknown-solaris2.tar.gz
+#DISTFILES+= ${DISTNAME}-boot-x86_64-unknown-solaris2.tar.xz
+.else
+DISTFILES+= ${BOOT_ARCHIVE}
+.endif
+
+.for i in ${DISTFILES:M*-boot-*}
+SITES.${i}= ${MASTER_SITE_LOCAL}
+.endfor
+
+# We don't want to extract all of the DISTFILEs.
+EXTRACT_ONLY= ${DISTNAME}-src.tar.bz2
+
+
+# -----------------------------------------------------------------------------
+# Tools
+#
+USE_TOOLS+= autoconf gmake perl:run
+GNU_CONFIGURE= yes
+USE_GNU_CONFIGURE_HOST= no
+
+CONFIGURE_ARGS+= \
+ --with-gcc=${CC:Q} \
+ --with-gmp-includes=${BUILDLINK_PREFIX.gmp:Q}/include \
+ --with-gmp-libraries=${BUILDLINK_PREFIX.gmp:Q}/lib \
+ --with-iconv-includes=${BUILDLINK_PREFIX.iconv:Q}/include \
+ --with-iconv-libraries=${BUILDLINK_PREFIX.iconv:Q}/lib
+
+CONFIGURE_ENV+= \
+ CONF_CC_OPTS_STAGE0=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE0=${LDFLAGS:Q} \
+ CONF_LD_LINKER_OPTS_STAGE0=${LDFLAGS:Q} \
+ CONF_CC_OPTS_STAGE1=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE1=${LDFLAGS:Q} \
+ CONF_LD_LINKER_OPTS_STAGE1=${LDFLAGS:Q} \
+ CONF_CC_OPTS_STAGE2=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE2=${LDFLAGS:Q} \
+ CONF_LD_LINKER_OPTS_STAGE2=${LDFLAGS:Q} \
+ PerlCmd=${PERL5:Q}
+
+
+# -----------------------------------------------------------------------------
+# Build hooks
+#
+
+# We patch configure.ac in some directories.
+post-patch:
+ @${PHASE_MSG} "Regenerating configuration scripts for ${PKGNAME}"
+ ${RUN} cd ${WRKSRC:Q}/libraries/integer-gmp && autoconf
+
+
+# Define the target "pre-configure" and non-standard "bootstrap".
+.include "../../lang/ghc7/bootstrap.mk"
+
+
+# Our pre-configure phase installs a bindist of bootstrapping compiler
+# directly into TOOLS_DIR so that ./configure can find it.
+do-configure:
+ ${RUN} cd ${WRKSRC:Q} && \
+ ${SETENV} ${CONFIGURE_ENV} ${SH} ./configure ${CONFIGURE_ARGS}
+
+# Here we generate mk/build.mk dynamically.
+ ${RUN} ${RM} -f ${WRKSRC:Q}/mk/build.mk
+
+# We need to tell the libraries/terminfo/configure that our ncurses is
+# in a non-standard path. Without that, the resulting GHC tries to
+# link programs by executing ld(1) without passing it -L${PREFIX:Q}/lib.
+ ${RUN} ${ECHO} "libraries/terminfo_CONFIGURE_OPTS += \
+ --configure-option=--with-curses-includes=${BUILDLINK_PREFIX.ncurses:Q}/include \
+ --configure-option=--with-curses-libraries=${BUILDLINK_PREFIX.ncurses:Q}/lib" >> ${WRKSRC:Q}/mk/build.mk
+
+# The ghc compiler does normally split the generated asm files into small
+# parts before sending them to gcc, to enable the linker to eliminate
+# unused parts. This does however not play nice with the pkgsrc
+# framework, and the result is that the build takes more than 5 times
+# as long than when the files are not split. See
+# http://mail-index.netbsd.org/tech-pkg/2006/07/30/0005.html
+# for a description of the problem.
+# Disable file splitting until pkgsrc gets improved.
+ ${RUN} ${ECHO} "SplitObjs = NO" >> ${WRKSRC:Q}/mk/build.mk
+
+# If there is HsColour is in the PATH, GHC's build system tries to use
+# it without even checking if it really works. That's not what we
+# appreciate.
+ ${RUN} ${ECHO} "HSCOLOUR_SRCS = NO" >> ${WRKSRC:Q}/mk/build.mk
+
+# Don't even think of PDF.
+ ${RUN} ${ECHO} "BUILD_DOCBOOK_PS = NO" >> ${WRKSRC:Q}/mk/build.mk
+ ${RUN} ${ECHO} "BUILD_DOCBOOK_PDF = NO" >> ${WRKSRC:Q}/mk/build.mk
+
+
+# -----------------------------------------------------------------------------
+# Installation/removal hooks
+#
+
+# Substitutions for INSTALL and DEINSTALL that handles package.cache.
+FILES_SUBST+= DISTNAME=${DISTNAME}
+
+# We don't want package.cache to be in the PLIST.
+post-install:
+ ${RM} -f ${DESTDIR:Q}${PREFIX:Q}/lib/${DISTNAME}/package.conf.d/package.cache
+
+
+# -----------------------------------------------------------------------------
+# PLIST
+#
+# We can't use static PLIST because the package installs some files
+# whose names are randomly generated, namely
+# lib/${PKGNAME}/package.conf.d/*.conf
+#
+PRINT_PLIST_AWK+= /lib\/${PKGNAME_NOREV}\/package\.conf\.d/ { next; }
+
+# If we were lucky we could just use "PLIST_TYPE = dynamic", but the
+# feature has seemingly bitrotted.
+.include "../../mk/bsd.prefs.mk"
+.if empty(USE_DESTDIR:M[Yy][Ee][Ss])
+PKG_FAIL_REASON+="This package can not be built without using DESTDIR.\
+You need to set USE_DESTDIR to \"yes\"."
+.else
+GENERATE_PLIST+= \
+ cd ${DESTDIR:Q}${PREFIX:Q} && \
+ ${FIND} lib/${PKGNAME_NOREV}/package.conf.d \( -type f -o -type l \) | ${SORT} -d;
+.endif
+
+
+# -----------------------------------------------------------------------------
+# Sanity checks
+#
+
+# There is an unused script which don't pass the portability test.
+CHECK_PORTABILITY_SKIP+= distrib/prep-bin-dist-mingw
+
+# GHC currently *requires* ${PREFIX}/lib to be in
+# "/etc/ld-elf.so.conf". See
+# http://hackage.haskell.org/trac/ghc/ticket/2933
+CHECK_SHLIBS_SUPPORTED= no
+
+
+# -----------------------------------------------------------------------------
+# Dependencies
+#
+
+# I guess pdcurses works well but not tested.
+USE_NCURSES= yes
+
+BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
+BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
+
+.include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../devel/ncurses/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/lang/ghc7/PLIST b/lang/ghc7/PLIST
new file mode 100644
index 00000000000..58dc68a5add
--- /dev/null
+++ b/lang/ghc7/PLIST
@@ -0,0 +1,5386 @@
+@comment $NetBSD: PLIST,v 1.1 2013/12/12 12:47:17 obache Exp $
+bin/ghc
+bin/${PKGNAME}
+bin/ghc-pkg
+bin/ghc-pkg-${PKGVERSION}
+bin/ghci
+bin/ghci-${PKGVERSION}
+bin/haddock
+bin/haddock-${PKGNAME}
+bin/hp2ps
+bin/hpc
+bin/hsc2hs
+bin/runghc
+bin/run${PKGNAME}
+bin/runhaskell
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/CopyFile.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/Exception.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/ReadP.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compat/TempFile.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Compiler.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/GetOpt.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/InstalledPackageInfo.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/License.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Make.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ModuleName.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Package.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Check.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Configuration.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/Parse.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/PackageDescription/PrettyPrint.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ParseUtils.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/ReadE.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Bench.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/Macros.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Build/PathsModule.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/BuildPaths.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Command.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Compiler.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Configure.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI641.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/GHC/IPI642.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Haddock.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hpc.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Hugs.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Install.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/InstallDirs.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/JHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/LocalBuildInfo.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/NHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PackageIndex.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/PreProcess/Unlit.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ar.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Builtin.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Db.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/GHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/HcPkg.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Hpc.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Ld.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Run.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Script.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Program/Types.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Register.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Setup.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/SrcDist.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Test.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UHC.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/UserHooks.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Simple/Utils.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/System.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/TestSuite.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Text.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Verbosity.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.hi
+lib/${PKGNAME}/Cabal-1.16.0/Distribution/Version.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/HSCabal-1.16.0.o
+lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.hi
+lib/${PKGNAME}/Cabal-1.16.0/Language/Haskell/Extension.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.dyn_hi
+lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.hi
+lib/${PKGNAME}/Cabal-1.16.0/Paths_Cabal.p_hi
+lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0.a
+lib/${PKGNAME}/Cabal-1.16.0/libHSCabal-1.16.0_p.a
+lib/${PKGNAME}/array-0.4.0.1/Data/Array.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Base.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IArray.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Internals.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/IO/Safe.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/MArray/Safe.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/ST/Safe.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Internals.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Storable/Safe.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unboxed.p_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.dyn_hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.hi
+lib/${PKGNAME}/array-0.4.0.1/Data/Array/Unsafe.p_hi
+lib/${PKGNAME}/array-0.4.0.1/HSarray-0.4.0.1.o
+lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1.a
+lib/${PKGNAME}/array-0.4.0.1/libHSarray-0.4.0.1_p.a
+lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Applicative.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Arrow.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Category.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Category.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Category.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/Chan.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/MVar.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSem.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/QSemN.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Concurrent/SampleVar.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Exception/Base.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Fix.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Instances.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Imp.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Imp.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Safe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Lazy/Unsafe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Safe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Strict.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/ST/Unsafe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.hi
+lib/${PKGNAME}/base-4.6.0.1/Control/Monad/Zip.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bits.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bits.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bits.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bool.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bool.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Bool.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Char.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Char.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Char.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Complex.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Complex.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Complex.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Data.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Data.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Data.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Dynamic.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Either.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Either.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Either.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Eq.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Eq.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Eq.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Fixed.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Foldable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Function.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Function.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Function.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Functor.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Functor.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Functor.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/HashTable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/IORef.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/IORef.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/IORef.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Int.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Int.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Int.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ix.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ix.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ix.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/List.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/List.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/List.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Maybe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Monoid.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ord.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ord.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ord.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Ratio.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Lazy.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/STRef/Strict.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/String.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/String.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/String.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Traversable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Tuple.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Typeable/Internal.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Unique.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Unique.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Unique.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Version.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Version.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Version.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Word.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Word.hi
+lib/${PKGNAME}/base-4.6.0.1/Data/Word.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.hi
+lib/${PKGNAME}/base-4.6.0.1/Debug/Trace.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Error.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/String.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/C/Types.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Concurrent.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Imp.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Safe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/ForeignPtr/Unsafe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Alloc.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Array.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Error.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Pool.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Safe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Unsafe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Marshal/Utils.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Ptr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Safe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/StablePtr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.hi
+lib/${PKGNAME}/base-4.6.0.1/Foreign/Storable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Arr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Base.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Base.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Base.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Char.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Char.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Char.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/IO.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Signal.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Conc/Sync.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ConsoleHandler.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Constants.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Desugar.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Enum.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Environment.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Err.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Err.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Err.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Array.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Clock.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Control.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/EPoll.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/IntMap.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Internal.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/KQueue.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Manager.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/PSQ.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Poll.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Thread.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Event/Unique.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exception.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Exts.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Fingerprint/Type.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/ConversionUtils.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Float/RealFracMethods.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Foreign.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ForeignPtr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/GHCi.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Generics.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Handle.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Buffer.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/BufferedIO.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Device.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/CodePage.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Failure.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Iconv.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Latin1.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/Types.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF16.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF32.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Encoding/UTF8.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Exception.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/FD.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/FD.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Internals.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Text.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/Handle/Types.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IO/IOMode.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOArray.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IOBase.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IORef.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IP.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IP.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/IP.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Int.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Int.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Int.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/List.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/List.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/List.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/MVar.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Num.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Num.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Num.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/PArr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Pack.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Ptr.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Read.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Read.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Read.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Real.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Real.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Real.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ST.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ST.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/ST.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/STRef.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Show.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Show.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Show.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stack.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Stats.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Storable.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TopHandler.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/TypeLits.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Unicode.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Weak.p_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Word.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Word.hi
+lib/${PKGNAME}/base-4.6.0.1/GHC/Word.p_hi
+lib/${PKGNAME}/base-4.6.0.1/HSbase-4.6.0.1.o
+lib/${PKGNAME}/base-4.6.0.1/Numeric.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Numeric.hi
+lib/${PKGNAME}/base-4.6.0.1/Numeric.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Prelude.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Prelude.hi
+lib/${PKGNAME}/base-4.6.0.1/Prelude.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.hi
+lib/${PKGNAME}/base-4.6.0.1/System/CPUTime.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Console/GetOpt.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Environment/ExecutablePath.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Exit.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Exit.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Exit.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO.hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Error.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.hi
+lib/${PKGNAME}/base-4.6.0.1/System/IO/Unsafe.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Info.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Info.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Info.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/StableName.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Mem/Weak.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Internals.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Posix/Types.p_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Timeout.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/System/Timeout.hi
+lib/${PKGNAME}/base-4.6.0.1/System/Timeout.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadP.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/ParserCombinators/ReadPrec.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Printf.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Printf.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Printf.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Read/Lex.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.hi
+lib/${PKGNAME}/base-4.6.0.1/Text/Show/Functions.p_hi
+lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.dyn_hi
+lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.hi
+lib/${PKGNAME}/base-4.6.0.1/Unsafe/Coerce.p_hi
+lib/${PKGNAME}/base-4.6.0.1/include/EventConfig.h
+lib/${PKGNAME}/base-4.6.0.1/include/HsBase.h
+lib/${PKGNAME}/base-4.6.0.1/include/HsBaseConfig.h
+lib/${PKGNAME}/base-4.6.0.1/include/Typeable.h
+lib/${PKGNAME}/base-4.6.0.1/include/WCsubst.h
+lib/${PKGNAME}/base-4.6.0.1/include/consUtils.h
+lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1.a
+lib/${PKGNAME}/base-4.6.0.1/libHSbase-4.6.0.1_p.a
+lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.dyn_hi
+lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.hi
+lib/${PKGNAME}/bin-package-db-0.0.0.0/Distribution/InstalledPackageInfo/Binary.p_hi
+lib/${PKGNAME}/bin-package-db-0.0.0.0/HSbin-package-db-0.0.0.0.o
+lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0.a
+lib/${PKGNAME}/bin-package-db-0.0.0.0/libHSbin-package-db-0.0.0.0_p.a
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Base.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Builder/Internal.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Get.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.dyn_hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.hi
+lib/${PKGNAME}/binary-0.5.1.1/Data/Binary/Put.p_hi
+lib/${PKGNAME}/binary-0.5.1.1/HSbinary-0.5.1.1.o
+lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1.a
+lib/${PKGNAME}/binary-0.5.1.1/libHSbinary-0.5.1.1_p.a
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Char8.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Internal.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/ASCII.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/ASCII.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Binary.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Extras.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Base16.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/Floating.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/BasicEncoding/Internal/UncheckedShifts.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Extras.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Builder/Internal.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Char8.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Lazy/Internal.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.dyn_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.hi
+lib/${PKGNAME}/bytestring-0.10.0.2/Data/ByteString/Unsafe.p_hi
+lib/${PKGNAME}/bytestring-0.10.0.2/HSbytestring-0.10.0.2.o
+lib/${PKGNAME}/bytestring-0.10.0.2/include/fpstring.h
+lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2-ghc${PKGVERSION}.so
+lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2.a
+lib/${PKGNAME}/bytestring-0.10.0.2/libHSbytestring-0.10.0.2_p.a
+lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Graph.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Base.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Lazy.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntMap/Strict.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/IntSet/Base.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Base.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Lazy.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Map/Strict.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Sequence.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Set/Base.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/StrictPair.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.dyn_hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.hi
+lib/${PKGNAME}/containers-0.5.0.0/Data/Tree.p_hi
+lib/${PKGNAME}/containers-0.5.0.0/HScontainers-0.5.0.0.o
+lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0.a
+lib/${PKGNAME}/containers-0.5.0.0/libHScontainers-0.5.0.0_p.a
+lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.dyn_hi
+lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.hi
+lib/${PKGNAME}/deepseq-1.3.0.1/Control/DeepSeq.p_hi
+lib/${PKGNAME}/deepseq-1.3.0.1/HSdeepseq-1.3.0.1.o
+lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1.a
+lib/${PKGNAME}/deepseq-1.3.0.1/libHSdeepseq-1.3.0.1_p.a
+lib/${PKGNAME}/directory-1.2.0.1/HSdirectory-1.2.0.1.o
+lib/${PKGNAME}/directory-1.2.0.1/System/Directory.dyn_hi
+lib/${PKGNAME}/directory-1.2.0.1/System/Directory.hi
+lib/${PKGNAME}/directory-1.2.0.1/System/Directory.p_hi
+lib/${PKGNAME}/directory-1.2.0.1/include/HsDirectory.h
+lib/${PKGNAME}/directory-1.2.0.1/include/HsDirectoryConfig.h
+lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1.a
+lib/${PKGNAME}/directory-1.2.0.1/libHSdirectory-1.2.0.1_p.a
+lib/${PKGNAME}/filepath-1.3.0.1/HSfilepath-1.3.0.1.o
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.dyn_hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath.p_hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.dyn_hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Posix.p_hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.dyn_hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.hi
+lib/${PKGNAME}/filepath-1.3.0.1/System/FilePath/Windows.p_hi
+lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1.a
+lib/${PKGNAME}/filepath-1.3.0.1/libHSfilepath-1.3.0.1_p.a
+lib/${PKGNAME}/ghc
+lib/${PKGNAME}/${PKGNAME}/Annotations.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Annotations.hi
+lib/${PKGNAME}/${PKGNAME}/Annotations.p_hi
+lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/AsmCodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/Avail.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Avail.hi
+lib/${PKGNAME}/${PKGNAME}/Avail.p_hi
+lib/${PKGNAME}/${PKGNAME}/Bag.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Bag.hi
+lib/${PKGNAME}/${PKGNAME}/Bag.p_hi
+lib/${PKGNAME}/${PKGNAME}/BasicTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BasicTypes.hi
+lib/${PKGNAME}/${PKGNAME}/BasicTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/BinIface.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BinIface.hi
+lib/${PKGNAME}/${PKGNAME}/BinIface.p_hi
+lib/${PKGNAME}/${PKGNAME}/Binary.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Binary.hi
+lib/${PKGNAME}/${PKGNAME}/Binary.p_hi
+lib/${PKGNAME}/${PKGNAME}/Bitmap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Bitmap.hi
+lib/${PKGNAME}/${PKGNAME}/Bitmap.p_hi
+lib/${PKGNAME}/${PKGNAME}/BlockId.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BlockId.hi
+lib/${PKGNAME}/${PKGNAME}/BlockId.p_hi
+lib/${PKGNAME}/${PKGNAME}/BreakArray.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BreakArray.hi
+lib/${PKGNAME}/${PKGNAME}/BreakArray.p_hi
+lib/${PKGNAME}/${PKGNAME}/BufWrite.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BufWrite.hi
+lib/${PKGNAME}/${PKGNAME}/BufWrite.p_hi
+lib/${PKGNAME}/${PKGNAME}/BuildTyCl.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/BuildTyCl.hi
+lib/${PKGNAME}/${PKGNAME}/BuildTyCl.p_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeAsm.p_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeInstr.p_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeItbls.p_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.hi
+lib/${PKGNAME}/${PKGNAME}/ByteCodeLink.p_hi
+lib/${PKGNAME}/${PKGNAME}/CLabel.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CLabel.hi
+lib/${PKGNAME}/${PKGNAME}/CLabel.p_hi
+lib/${PKGNAME}/${PKGNAME}/CPrim.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CPrim.hi
+lib/${PKGNAME}/${PKGNAME}/CPrim.p_hi
+lib/${PKGNAME}/${PKGNAME}/CSE.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CSE.hi
+lib/${PKGNAME}/${PKGNAME}/CSE.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgBindery.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgBindery.hi
+lib/${PKGNAME}/${PKGNAME}/CgBindery.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgCallConv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgCallConv.hi
+lib/${PKGNAME}/${PKGNAME}/CgCallConv.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgCase.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgCase.hi
+lib/${PKGNAME}/${PKGNAME}/CgCase.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgClosure.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgClosure.hi
+lib/${PKGNAME}/${PKGNAME}/CgClosure.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgCon.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgCon.hi
+lib/${PKGNAME}/${PKGNAME}/CgCon.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgExpr.hi
+lib/${PKGNAME}/${PKGNAME}/CgExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgExtCode.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgExtCode.hi
+lib/${PKGNAME}/${PKGNAME}/CgExtCode.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgForeignCall.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgForeignCall.hi
+lib/${PKGNAME}/${PKGNAME}/CgForeignCall.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgHeapery.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgHeapery.hi
+lib/${PKGNAME}/${PKGNAME}/CgHeapery.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgHpc.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgHpc.hi
+lib/${PKGNAME}/${PKGNAME}/CgHpc.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.hi
+lib/${PKGNAME}/${PKGNAME}/CgInfoTbls.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.hi
+lib/${PKGNAME}/${PKGNAME}/CgLetNoEscape.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgMonad.hi
+lib/${PKGNAME}/${PKGNAME}/CgMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgParallel.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgParallel.hi
+lib/${PKGNAME}/${PKGNAME}/CgParallel.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgPrimOp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgPrimOp.hi
+lib/${PKGNAME}/${PKGNAME}/CgPrimOp.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgProf.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgProf.hi
+lib/${PKGNAME}/${PKGNAME}/CgProf.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgStackery.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgStackery.hi
+lib/${PKGNAME}/${PKGNAME}/CgStackery.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgTailCall.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgTailCall.hi
+lib/${PKGNAME}/${PKGNAME}/CgTailCall.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgTicky.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgTicky.hi
+lib/${PKGNAME}/${PKGNAME}/CgTicky.p_hi
+lib/${PKGNAME}/${PKGNAME}/CgUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CgUtils.hi
+lib/${PKGNAME}/${PKGNAME}/CgUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Check.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Check.hi
+lib/${PKGNAME}/${PKGNAME}/Check.p_hi
+lib/${PKGNAME}/${PKGNAME}/Class.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Class.hi
+lib/${PKGNAME}/${PKGNAME}/Class.p_hi
+lib/${PKGNAME}/${PKGNAME}/ClosureInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ClosureInfo.hi
+lib/${PKGNAME}/${PKGNAME}/ClosureInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmdLineParser.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmdLineParser.hi
+lib/${PKGNAME}/${PKGNAME}/CmdLineParser.p_hi
+lib/${PKGNAME}/${PKGNAME}/Cmm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Cmm.hi
+lib/${PKGNAME}/${PKGNAME}/Cmm.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.hi
+lib/${PKGNAME}/${PKGNAME}/CmmBuildInfoTables.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCallConv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCallConv.hi
+lib/${PKGNAME}/${PKGNAME}/CmmCallConv.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.hi
+lib/${PKGNAME}/${PKGNAME}/CmmCommonBlockElim.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.hi
+lib/${PKGNAME}/${PKGNAME}/CmmContFlowOpt.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCvt.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmCvt.hi
+lib/${PKGNAME}/${PKGNAME}/CmmCvt.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmExpr.hi
+lib/${PKGNAME}/${PKGNAME}/CmmExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmInfo.hi
+lib/${PKGNAME}/${PKGNAME}/CmmInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.hi
+lib/${PKGNAME}/${PKGNAME}/CmmLayoutStack.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLex.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLex.hi
+lib/${PKGNAME}/${PKGNAME}/CmmLex.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLint.hi
+lib/${PKGNAME}/${PKGNAME}/CmmLint.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLive.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmLive.hi
+lib/${PKGNAME}/${PKGNAME}/CmmLive.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmMachOp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmMachOp.hi
+lib/${PKGNAME}/${PKGNAME}/CmmMachOp.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmNode.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmNode.hi
+lib/${PKGNAME}/${PKGNAME}/CmmNode.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmOpt.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmOpt.hi
+lib/${PKGNAME}/${PKGNAME}/CmmOpt.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmParse.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmParse.hi
+lib/${PKGNAME}/${PKGNAME}/CmmParse.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmPipeline.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmPipeline.hi
+lib/${PKGNAME}/${PKGNAME}/CmmPipeline.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.hi
+lib/${PKGNAME}/${PKGNAME}/CmmProcPoint.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.hi
+lib/${PKGNAME}/${PKGNAME}/CmmRewriteAssignments.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmSink.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmSink.hi
+lib/${PKGNAME}/${PKGNAME}/CmmSink.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmType.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmType.hi
+lib/${PKGNAME}/${PKGNAME}/CmmType.p_hi
+lib/${PKGNAME}/${PKGNAME}/CmmUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CmmUtils.hi
+lib/${PKGNAME}/${PKGNAME}/CmmUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/CodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/CodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/CodeOutput.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CodeOutput.hi
+lib/${PKGNAME}/${PKGNAME}/CodeOutput.p_hi
+lib/${PKGNAME}/${PKGNAME}/Coercion.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Coercion.hi
+lib/${PKGNAME}/${PKGNAME}/Coercion.p_hi
+lib/${PKGNAME}/${PKGNAME}/Config.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Config.hi
+lib/${PKGNAME}/${PKGNAME}/Config.p_hi
+lib/${PKGNAME}/${PKGNAME}/Constants.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Constants.hi
+lib/${PKGNAME}/${PKGNAME}/Constants.p_hi
+lib/${PKGNAME}/${PKGNAME}/Convert.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Convert.hi
+lib/${PKGNAME}/${PKGNAME}/Convert.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreArity.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreArity.hi
+lib/${PKGNAME}/${PKGNAME}/CoreArity.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreFVs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreFVs.hi
+lib/${PKGNAME}/${PKGNAME}/CoreFVs.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreLint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreLint.hi
+lib/${PKGNAME}/${PKGNAME}/CoreLint.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreMonad.hi
+lib/${PKGNAME}/${PKGNAME}/CoreMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/CorePrep.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CorePrep.hi
+lib/${PKGNAME}/${PKGNAME}/CorePrep.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreSubst.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreSubst.hi
+lib/${PKGNAME}/${PKGNAME}/CoreSubst.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreSyn.hi
+lib/${PKGNAME}/${PKGNAME}/CoreSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreTidy.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreTidy.hi
+lib/${PKGNAME}/${PKGNAME}/CoreTidy.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreToStg.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreToStg.hi
+lib/${PKGNAME}/${PKGNAME}/CoreToStg.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreUnfold.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreUnfold.hi
+lib/${PKGNAME}/${PKGNAME}/CoreUnfold.p_hi
+lib/${PKGNAME}/${PKGNAME}/CoreUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CoreUtils.hi
+lib/${PKGNAME}/${PKGNAME}/CoreUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/CostCentre.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/CostCentre.hi
+lib/${PKGNAME}/${PKGNAME}/CostCentre.p_hi
+lib/${PKGNAME}/${PKGNAME}/Coverage.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Coverage.hi
+lib/${PKGNAME}/${PKGNAME}/Coverage.p_hi
+lib/${PKGNAME}/${PKGNAME}/Ctype.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Ctype.hi
+lib/${PKGNAME}/${PKGNAME}/Ctype.p_hi
+lib/${PKGNAME}/${PKGNAME}/DataCon.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DataCon.hi
+lib/${PKGNAME}/${PKGNAME}/DataCon.p_hi
+lib/${PKGNAME}/${PKGNAME}/Debugger.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Debugger.hi
+lib/${PKGNAME}/${PKGNAME}/Debugger.p_hi
+lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.hi
+lib/${PKGNAME}/${PKGNAME}/DebuggerUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Demand.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Demand.hi
+lib/${PKGNAME}/${PKGNAME}/Demand.p_hi
+lib/${PKGNAME}/${PKGNAME}/Desugar.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Desugar.hi
+lib/${PKGNAME}/${PKGNAME}/Desugar.p_hi
+lib/${PKGNAME}/${PKGNAME}/Digraph.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Digraph.hi
+lib/${PKGNAME}/${PKGNAME}/Digraph.p_hi
+lib/${PKGNAME}/${PKGNAME}/DmdAnal.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DmdAnal.hi
+lib/${PKGNAME}/${PKGNAME}/DmdAnal.p_hi
+lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.hi
+lib/${PKGNAME}/${PKGNAME}/DriverMkDepend.p_hi
+lib/${PKGNAME}/${PKGNAME}/DriverPhases.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DriverPhases.hi
+lib/${PKGNAME}/${PKGNAME}/DriverPhases.p_hi
+lib/${PKGNAME}/${PKGNAME}/DriverPipeline.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DriverPipeline.hi
+lib/${PKGNAME}/${PKGNAME}/DriverPipeline.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsArrows.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsArrows.hi
+lib/${PKGNAME}/${PKGNAME}/DsArrows.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsBinds.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsBinds.hi
+lib/${PKGNAME}/${PKGNAME}/DsBinds.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsCCall.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsCCall.hi
+lib/${PKGNAME}/${PKGNAME}/DsCCall.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsExpr.hi
+lib/${PKGNAME}/${PKGNAME}/DsExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsForeign.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsForeign.hi
+lib/${PKGNAME}/${PKGNAME}/DsForeign.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsGRHSs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsGRHSs.hi
+lib/${PKGNAME}/${PKGNAME}/DsGRHSs.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsListComp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsListComp.hi
+lib/${PKGNAME}/${PKGNAME}/DsListComp.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsMeta.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsMeta.hi
+lib/${PKGNAME}/${PKGNAME}/DsMeta.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsMonad.hi
+lib/${PKGNAME}/${PKGNAME}/DsMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/DsUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DsUtils.hi
+lib/${PKGNAME}/${PKGNAME}/DsUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/DynFlags.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DynFlags.hi
+lib/${PKGNAME}/${PKGNAME}/DynFlags.p_hi
+lib/${PKGNAME}/${PKGNAME}/DynamicLoading.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/DynamicLoading.hi
+lib/${PKGNAME}/${PKGNAME}/DynamicLoading.p_hi
+lib/${PKGNAME}/${PKGNAME}/Encoding.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Encoding.hi
+lib/${PKGNAME}/${PKGNAME}/Encoding.p_hi
+lib/${PKGNAME}/${PKGNAME}/ErrUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ErrUtils.hi
+lib/${PKGNAME}/${PKGNAME}/ErrUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Exception.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Exception.hi
+lib/${PKGNAME}/${PKGNAME}/Exception.p_hi
+lib/${PKGNAME}/${PKGNAME}/ExternalCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ExternalCore.hi
+lib/${PKGNAME}/${PKGNAME}/ExternalCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/FamInst.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FamInst.hi
+lib/${PKGNAME}/${PKGNAME}/FamInst.p_hi
+lib/${PKGNAME}/${PKGNAME}/FamInstEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FamInstEnv.hi
+lib/${PKGNAME}/${PKGNAME}/FamInstEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/FastBool.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FastBool.hi
+lib/${PKGNAME}/${PKGNAME}/FastBool.p_hi
+lib/${PKGNAME}/${PKGNAME}/FastFunctions.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FastFunctions.hi
+lib/${PKGNAME}/${PKGNAME}/FastFunctions.p_hi
+lib/${PKGNAME}/${PKGNAME}/FastMutInt.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FastMutInt.hi
+lib/${PKGNAME}/${PKGNAME}/FastMutInt.p_hi
+lib/${PKGNAME}/${PKGNAME}/FastString.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FastString.hi
+lib/${PKGNAME}/${PKGNAME}/FastString.p_hi
+lib/${PKGNAME}/${PKGNAME}/FastTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FastTypes.hi
+lib/${PKGNAME}/${PKGNAME}/FastTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/Finder.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Finder.hi
+lib/${PKGNAME}/${PKGNAME}/Finder.p_hi
+lib/${PKGNAME}/${PKGNAME}/Fingerprint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Fingerprint.hi
+lib/${PKGNAME}/${PKGNAME}/Fingerprint.p_hi
+lib/${PKGNAME}/${PKGNAME}/FiniteMap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FiniteMap.hi
+lib/${PKGNAME}/${PKGNAME}/FiniteMap.p_hi
+lib/${PKGNAME}/${PKGNAME}/FlagChecker.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FlagChecker.hi
+lib/${PKGNAME}/${PKGNAME}/FlagChecker.p_hi
+lib/${PKGNAME}/${PKGNAME}/FloatIn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FloatIn.hi
+lib/${PKGNAME}/${PKGNAME}/FloatIn.p_hi
+lib/${PKGNAME}/${PKGNAME}/FloatOut.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FloatOut.hi
+lib/${PKGNAME}/${PKGNAME}/FloatOut.p_hi
+lib/${PKGNAME}/${PKGNAME}/ForeignCall.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ForeignCall.hi
+lib/${PKGNAME}/${PKGNAME}/ForeignCall.p_hi
+lib/${PKGNAME}/${PKGNAME}/FunDeps.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/FunDeps.hi
+lib/${PKGNAME}/${PKGNAME}/FunDeps.p_hi
+lib/${PKGNAME}/${PKGNAME}/GHC.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GHC.hi
+lib/${PKGNAME}/${PKGNAME}/GHC.p_hi
+lib/${PKGNAME}/${PKGNAME}/GhcMake.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GhcMake.hi
+lib/${PKGNAME}/${PKGNAME}/GhcMake.p_hi
+lib/${PKGNAME}/${PKGNAME}/GhcMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GhcMonad.hi
+lib/${PKGNAME}/${PKGNAME}/GhcMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/GhcPlugins.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GhcPlugins.hi
+lib/${PKGNAME}/${PKGNAME}/GhcPlugins.p_hi
+lib/${PKGNAME}/${PKGNAME}/GraphBase.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GraphBase.hi
+lib/${PKGNAME}/${PKGNAME}/GraphBase.p_hi
+lib/${PKGNAME}/${PKGNAME}/GraphColor.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GraphColor.hi
+lib/${PKGNAME}/${PKGNAME}/GraphColor.p_hi
+lib/${PKGNAME}/${PKGNAME}/GraphOps.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GraphOps.hi
+lib/${PKGNAME}/${PKGNAME}/GraphOps.p_hi
+lib/${PKGNAME}/${PKGNAME}/GraphPpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/GraphPpr.hi
+lib/${PKGNAME}/${PKGNAME}/GraphPpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/HaddockUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HaddockUtils.hi
+lib/${PKGNAME}/${PKGNAME}/HaddockUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/HeaderInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HeaderInfo.hi
+lib/${PKGNAME}/${PKGNAME}/HeaderInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl.hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl.p_hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.hi
+lib/${PKGNAME}/${PKGNAME}/Hoopl/Dataflow.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsBinds.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsBinds.hi
+lib/${PKGNAME}/${PKGNAME}/HsBinds.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsDecls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsDecls.hi
+lib/${PKGNAME}/${PKGNAME}/HsDecls.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsDoc.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsDoc.hi
+lib/${PKGNAME}/${PKGNAME}/HsDoc.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsExpr.hi
+lib/${PKGNAME}/${PKGNAME}/HsExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsImpExp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsImpExp.hi
+lib/${PKGNAME}/${PKGNAME}/HsImpExp.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsLit.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsLit.hi
+lib/${PKGNAME}/${PKGNAME}/HsLit.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsPat.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsPat.hi
+lib/${PKGNAME}/${PKGNAME}/HsPat.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsSyn.hi
+lib/${PKGNAME}/${PKGNAME}/HsSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsTypes.hi
+lib/${PKGNAME}/${PKGNAME}/HsTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/HsUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HsUtils.hi
+lib/${PKGNAME}/${PKGNAME}/HsUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/HscMain.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HscMain.hi
+lib/${PKGNAME}/${PKGNAME}/HscMain.p_hi
+lib/${PKGNAME}/${PKGNAME}/HscStats.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HscStats.hi
+lib/${PKGNAME}/${PKGNAME}/HscStats.p_hi
+lib/${PKGNAME}/${PKGNAME}/HscTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/HscTypes.hi
+lib/${PKGNAME}/${PKGNAME}/HscTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/IOEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/IOEnv.hi
+lib/${PKGNAME}/${PKGNAME}/IOEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/Id.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Id.hi
+lib/${PKGNAME}/${PKGNAME}/Id.p_hi
+lib/${PKGNAME}/${PKGNAME}/IdInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/IdInfo.hi
+lib/${PKGNAME}/${PKGNAME}/IdInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceEnv.hi
+lib/${PKGNAME}/${PKGNAME}/IfaceEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceSyn.hi
+lib/${PKGNAME}/${PKGNAME}/IfaceSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceType.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/IfaceType.hi
+lib/${PKGNAME}/${PKGNAME}/IfaceType.p_hi
+lib/${PKGNAME}/${PKGNAME}/Inst.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Inst.hi
+lib/${PKGNAME}/${PKGNAME}/Inst.p_hi
+lib/${PKGNAME}/${PKGNAME}/InstEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/InstEnv.hi
+lib/${PKGNAME}/${PKGNAME}/InstEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/Instruction.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Instruction.hi
+lib/${PKGNAME}/${PKGNAME}/Instruction.p_hi
+lib/${PKGNAME}/${PKGNAME}/InteractiveEval.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/InteractiveEval.hi
+lib/${PKGNAME}/${PKGNAME}/InteractiveEval.p_hi
+lib/${PKGNAME}/${PKGNAME}/Kind.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Kind.hi
+lib/${PKGNAME}/${PKGNAME}/Kind.p_hi
+lib/${PKGNAME}/${PKGNAME}/LexCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LexCore.hi
+lib/${PKGNAME}/${PKGNAME}/LexCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/Lexer.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Lexer.hi
+lib/${PKGNAME}/${PKGNAME}/Lexer.p_hi
+lib/${PKGNAME}/${PKGNAME}/LibFFI.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LibFFI.hi
+lib/${PKGNAME}/${PKGNAME}/LibFFI.p_hi
+lib/${PKGNAME}/${PKGNAME}/LiberateCase.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LiberateCase.hi
+lib/${PKGNAME}/${PKGNAME}/LiberateCase.p_hi
+lib/${PKGNAME}/${PKGNAME}/Linker.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Linker.hi
+lib/${PKGNAME}/${PKGNAME}/Linker.p_hi
+lib/${PKGNAME}/${PKGNAME}/ListSetOps.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ListSetOps.hi
+lib/${PKGNAME}/${PKGNAME}/ListSetOps.p_hi
+lib/${PKGNAME}/${PKGNAME}/Literal.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Literal.hi
+lib/${PKGNAME}/${PKGNAME}/Literal.p_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm.hi
+lib/${PKGNAME}/${PKGNAME}/Llvm.p_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/AbsSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/PpLlvm.p_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/Types.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/Types.hi
+lib/${PKGNAME}/${PKGNAME}/Llvm/Types.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/CodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Data.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Ppr.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmCodeGen/Regs.p_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmMangler.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LlvmMangler.hi
+lib/${PKGNAME}/${PKGNAME}/LlvmMangler.p_hi
+lib/${PKGNAME}/${PKGNAME}/LoadIface.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/LoadIface.hi
+lib/${PKGNAME}/${PKGNAME}/LoadIface.p_hi
+lib/${PKGNAME}/${PKGNAME}/Match.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Match.hi
+lib/${PKGNAME}/${PKGNAME}/Match.p_hi
+lib/${PKGNAME}/${PKGNAME}/MatchCon.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MatchCon.hi
+lib/${PKGNAME}/${PKGNAME}/MatchCon.p_hi
+lib/${PKGNAME}/${PKGNAME}/MatchLit.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MatchLit.hi
+lib/${PKGNAME}/${PKGNAME}/MatchLit.p_hi
+lib/${PKGNAME}/${PKGNAME}/Maybes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Maybes.hi
+lib/${PKGNAME}/${PKGNAME}/Maybes.p_hi
+lib/${PKGNAME}/${PKGNAME}/MkCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MkCore.hi
+lib/${PKGNAME}/${PKGNAME}/MkCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/MkExternalCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MkExternalCore.hi
+lib/${PKGNAME}/${PKGNAME}/MkExternalCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/MkGraph.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MkGraph.hi
+lib/${PKGNAME}/${PKGNAME}/MkGraph.p_hi
+lib/${PKGNAME}/${PKGNAME}/MkId.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MkId.hi
+lib/${PKGNAME}/${PKGNAME}/MkId.p_hi
+lib/${PKGNAME}/${PKGNAME}/MkIface.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MkIface.hi
+lib/${PKGNAME}/${PKGNAME}/MkIface.p_hi
+lib/${PKGNAME}/${PKGNAME}/Module.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Module.hi
+lib/${PKGNAME}/${PKGNAME}/Module.p_hi
+lib/${PKGNAME}/${PKGNAME}/MonadUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/MonadUtils.hi
+lib/${PKGNAME}/${PKGNAME}/MonadUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/NCGMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/NCGMonad.hi
+lib/${PKGNAME}/${PKGNAME}/NCGMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/Name.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Name.hi
+lib/${PKGNAME}/${PKGNAME}/Name.p_hi
+lib/${PKGNAME}/${PKGNAME}/NameEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/NameEnv.hi
+lib/${PKGNAME}/${PKGNAME}/NameEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/NameSet.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/NameSet.hi
+lib/${PKGNAME}/${PKGNAME}/NameSet.p_hi
+lib/${PKGNAME}/${PKGNAME}/ObjLink.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ObjLink.hi
+lib/${PKGNAME}/${PKGNAME}/ObjLink.p_hi
+lib/${PKGNAME}/${PKGNAME}/OccName.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OccName.hi
+lib/${PKGNAME}/${PKGNAME}/OccName.p_hi
+lib/${PKGNAME}/${PKGNAME}/OccurAnal.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OccurAnal.hi
+lib/${PKGNAME}/${PKGNAME}/OccurAnal.p_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmm.hi
+lib/${PKGNAME}/${PKGNAME}/OldCmm.p_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmLint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmLint.hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmLint.p_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.hi
+lib/${PKGNAME}/${PKGNAME}/OldCmmUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/OldPprCmm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OldPprCmm.hi
+lib/${PKGNAME}/${PKGNAME}/OldPprCmm.p_hi
+lib/${PKGNAME}/${PKGNAME}/OptCoercion.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OptCoercion.hi
+lib/${PKGNAME}/${PKGNAME}/OptCoercion.p_hi
+lib/${PKGNAME}/${PKGNAME}/OrdList.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/OrdList.hi
+lib/${PKGNAME}/${PKGNAME}/OrdList.p_hi
+lib/${PKGNAME}/${PKGNAME}/Outputable.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Outputable.hi
+lib/${PKGNAME}/${PKGNAME}/Outputable.p_hi
+lib/${PKGNAME}/${PKGNAME}/PIC.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PIC.hi
+lib/${PKGNAME}/${PKGNAME}/PIC.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/CodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Cond.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Cond.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Cond.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Instr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Instr.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Instr.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Ppr.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/RegInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Regs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Regs.hi
+lib/${PKGNAME}/${PKGNAME}/PPC/Regs.p_hi
+lib/${PKGNAME}/${PKGNAME}/PackageConfig.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PackageConfig.hi
+lib/${PKGNAME}/${PKGNAME}/PackageConfig.p_hi
+lib/${PKGNAME}/${PKGNAME}/Packages.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Packages.hi
+lib/${PKGNAME}/${PKGNAME}/Packages.p_hi
+lib/${PKGNAME}/${PKGNAME}/Pair.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Pair.hi
+lib/${PKGNAME}/${PKGNAME}/Pair.p_hi
+lib/${PKGNAME}/${PKGNAME}/Panic.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Panic.hi
+lib/${PKGNAME}/${PKGNAME}/Panic.p_hi
+lib/${PKGNAME}/${PKGNAME}/Parser.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Parser.hi
+lib/${PKGNAME}/${PKGNAME}/Parser.p_hi
+lib/${PKGNAME}/${PKGNAME}/ParserCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ParserCore.hi
+lib/${PKGNAME}/${PKGNAME}/ParserCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.hi
+lib/${PKGNAME}/${PKGNAME}/ParserCoreUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Platform.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Platform.hi
+lib/${PKGNAME}/${PKGNAME}/Platform.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprBase.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprBase.hi
+lib/${PKGNAME}/${PKGNAME}/PprBase.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprC.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprC.hi
+lib/${PKGNAME}/${PKGNAME}/PprC.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmm.hi
+lib/${PKGNAME}/${PKGNAME}/PprCmm.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmDecl.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.hi
+lib/${PKGNAME}/${PKGNAME}/PprCmmExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprCore.hi
+lib/${PKGNAME}/${PKGNAME}/PprCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprExternalCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprExternalCore.hi
+lib/${PKGNAME}/${PKGNAME}/PprExternalCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/PprTyThing.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PprTyThing.hi
+lib/${PKGNAME}/${PKGNAME}/PprTyThing.p_hi
+lib/${PKGNAME}/${PKGNAME}/PrelInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PrelInfo.hi
+lib/${PKGNAME}/${PKGNAME}/PrelInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/PrelNames.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PrelNames.hi
+lib/${PKGNAME}/${PKGNAME}/PrelNames.p_hi
+lib/${PKGNAME}/${PKGNAME}/PrelRules.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PrelRules.hi
+lib/${PKGNAME}/${PKGNAME}/PrelRules.p_hi
+lib/${PKGNAME}/${PKGNAME}/Pretty.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Pretty.hi
+lib/${PKGNAME}/${PKGNAME}/Pretty.p_hi
+lib/${PKGNAME}/${PKGNAME}/PrimOp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/PrimOp.hi
+lib/${PKGNAME}/${PKGNAME}/PrimOp.p_hi
+lib/${PKGNAME}/${PKGNAME}/ProfInit.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/ProfInit.hi
+lib/${PKGNAME}/${PKGNAME}/ProfInit.p_hi
+lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.hi
+lib/${PKGNAME}/${PKGNAME}/RdrHsSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/RdrName.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RdrName.hi
+lib/${PKGNAME}/${PKGNAME}/RdrName.p_hi
+lib/${PKGNAME}/${PKGNAME}/Reg.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Reg.hi
+lib/${PKGNAME}/${PKGNAME}/Reg.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchBase.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/ArchX86.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Coalesce.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Main.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Spill.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillClean.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/SpillCost.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/Stats.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Graph/TrivColorable.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/FreeRegs.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/JoinToTargets.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Main.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/PPC/FreeRegs.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/SPARC/FreeRegs.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/StackMap.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/State.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/Stats.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Linear/X86/FreeRegs.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.hi
+lib/${PKGNAME}/${PKGNAME}/RegAlloc/Liveness.p_hi
+lib/${PKGNAME}/${PKGNAME}/RegClass.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RegClass.hi
+lib/${PKGNAME}/${PKGNAME}/RegClass.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnBinds.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnBinds.hi
+lib/${PKGNAME}/${PKGNAME}/RnBinds.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnEnv.hi
+lib/${PKGNAME}/${PKGNAME}/RnEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnExpr.hi
+lib/${PKGNAME}/${PKGNAME}/RnExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnHsDoc.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnHsDoc.hi
+lib/${PKGNAME}/${PKGNAME}/RnHsDoc.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnNames.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnNames.hi
+lib/${PKGNAME}/${PKGNAME}/RnNames.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnPat.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnPat.hi
+lib/${PKGNAME}/${PKGNAME}/RnPat.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnSource.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnSource.hi
+lib/${PKGNAME}/${PKGNAME}/RnSource.p_hi
+lib/${PKGNAME}/${PKGNAME}/RnTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RnTypes.hi
+lib/${PKGNAME}/${PKGNAME}/RnTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.hi
+lib/${PKGNAME}/${PKGNAME}/RtClosureInspect.p_hi
+lib/${PKGNAME}/${PKGNAME}/Rules.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Rules.hi
+lib/${PKGNAME}/${PKGNAME}/Rules.p_hi
+lib/${PKGNAME}/${PKGNAME}/SAT.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SAT.hi
+lib/${PKGNAME}/${PKGNAME}/SAT.p_hi
+lib/${PKGNAME}/${PKGNAME}/SCCfinal.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SCCfinal.hi
+lib/${PKGNAME}/${PKGNAME}/SCCfinal.p_hi
+lib/${PKGNAME}/${PKGNAME}/SMRep.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SMRep.hi
+lib/${PKGNAME}/${PKGNAME}/SMRep.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/AddrMode.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Base.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Amode.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/CondCode.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Expand.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen32.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Gen64.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/CodeGen/Sanity.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Cond.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Imm.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Instr.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Ppr.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/RegPlate.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Regs.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/ShortcutJump.p_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.hi
+lib/${PKGNAME}/${PKGNAME}/SPARC/Stack.p_hi
+lib/${PKGNAME}/${PKGNAME}/SRT.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SRT.hi
+lib/${PKGNAME}/${PKGNAME}/SRT.p_hi
+lib/${PKGNAME}/${PKGNAME}/Serialized.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Serialized.hi
+lib/${PKGNAME}/${PKGNAME}/Serialized.p_hi
+lib/${PKGNAME}/${PKGNAME}/SetLevels.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SetLevels.hi
+lib/${PKGNAME}/${PKGNAME}/SetLevels.p_hi
+lib/${PKGNAME}/${PKGNAME}/SimplCore.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SimplCore.hi
+lib/${PKGNAME}/${PKGNAME}/SimplCore.p_hi
+lib/${PKGNAME}/${PKGNAME}/SimplEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SimplEnv.hi
+lib/${PKGNAME}/${PKGNAME}/SimplEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/SimplMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SimplMonad.hi
+lib/${PKGNAME}/${PKGNAME}/SimplMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/SimplStg.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SimplStg.hi
+lib/${PKGNAME}/${PKGNAME}/SimplStg.p_hi
+lib/${PKGNAME}/${PKGNAME}/SimplUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SimplUtils.hi
+lib/${PKGNAME}/${PKGNAME}/SimplUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Simplify.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Simplify.hi
+lib/${PKGNAME}/${PKGNAME}/Simplify.p_hi
+lib/${PKGNAME}/${PKGNAME}/Size.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Size.hi
+lib/${PKGNAME}/${PKGNAME}/Size.p_hi
+lib/${PKGNAME}/${PKGNAME}/SpecConstr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SpecConstr.hi
+lib/${PKGNAME}/${PKGNAME}/SpecConstr.p_hi
+lib/${PKGNAME}/${PKGNAME}/Specialise.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Specialise.hi
+lib/${PKGNAME}/${PKGNAME}/Specialise.p_hi
+lib/${PKGNAME}/${PKGNAME}/SrcLoc.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SrcLoc.hi
+lib/${PKGNAME}/${PKGNAME}/SrcLoc.p_hi
+lib/${PKGNAME}/${PKGNAME}/State.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/State.hi
+lib/${PKGNAME}/${PKGNAME}/State.p_hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlagParser.p_hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlags.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlags.hi
+lib/${PKGNAME}/${PKGNAME}/StaticFlags.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmm.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmm.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmBind.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmBind.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmBind.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmClosure.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmCon.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmCon.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmCon.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmForeign.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmGran.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmGran.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmGran.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHeap.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmHpc.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmLayout.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmPrim.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmProf.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmProf.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmProf.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmTicky.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.hi
+lib/${PKGNAME}/${PKGNAME}/StgCmmUtils.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgLint.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgLint.hi
+lib/${PKGNAME}/${PKGNAME}/StgLint.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgStats.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgStats.hi
+lib/${PKGNAME}/${PKGNAME}/StgStats.p_hi
+lib/${PKGNAME}/${PKGNAME}/StgSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StgSyn.hi
+lib/${PKGNAME}/${PKGNAME}/StgSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/Stream.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Stream.hi
+lib/${PKGNAME}/${PKGNAME}/Stream.p_hi
+lib/${PKGNAME}/${PKGNAME}/StringBuffer.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/StringBuffer.hi
+lib/${PKGNAME}/${PKGNAME}/StringBuffer.p_hi
+lib/${PKGNAME}/${PKGNAME}/SysTools.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/SysTools.hi
+lib/${PKGNAME}/${PKGNAME}/SysTools.p_hi
+lib/${PKGNAME}/${PKGNAME}/TargetReg.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TargetReg.hi
+lib/${PKGNAME}/${PKGNAME}/TargetReg.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcAnnotations.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcAnnotations.hi
+lib/${PKGNAME}/${PKGNAME}/TcAnnotations.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcArrows.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcArrows.hi
+lib/${PKGNAME}/${PKGNAME}/TcArrows.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcBinds.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcBinds.hi
+lib/${PKGNAME}/${PKGNAME}/TcBinds.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcCanonical.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcCanonical.hi
+lib/${PKGNAME}/${PKGNAME}/TcCanonical.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcClassDcl.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcClassDcl.hi
+lib/${PKGNAME}/${PKGNAME}/TcClassDcl.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcDefaults.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcDefaults.hi
+lib/${PKGNAME}/${PKGNAME}/TcDefaults.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcDeriv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcDeriv.hi
+lib/${PKGNAME}/${PKGNAME}/TcDeriv.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcEnv.hi
+lib/${PKGNAME}/${PKGNAME}/TcEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcErrors.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcErrors.hi
+lib/${PKGNAME}/${PKGNAME}/TcErrors.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcEvidence.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcEvidence.hi
+lib/${PKGNAME}/${PKGNAME}/TcEvidence.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcExpr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcExpr.hi
+lib/${PKGNAME}/${PKGNAME}/TcExpr.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcForeign.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcForeign.hi
+lib/${PKGNAME}/${PKGNAME}/TcForeign.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.hi
+lib/${PKGNAME}/${PKGNAME}/TcGenDeriv.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.hi
+lib/${PKGNAME}/${PKGNAME}/TcGenGenerics.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcHsSyn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcHsSyn.hi
+lib/${PKGNAME}/${PKGNAME}/TcHsSyn.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcHsType.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcHsType.hi
+lib/${PKGNAME}/${PKGNAME}/TcHsType.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcIface.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcIface.hi
+lib/${PKGNAME}/${PKGNAME}/TcIface.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcInstDcls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcInstDcls.hi
+lib/${PKGNAME}/${PKGNAME}/TcInstDcls.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcInteract.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcInteract.hi
+lib/${PKGNAME}/${PKGNAME}/TcInteract.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcMType.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcMType.hi
+lib/${PKGNAME}/${PKGNAME}/TcMType.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcMatches.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcMatches.hi
+lib/${PKGNAME}/${PKGNAME}/TcMatches.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcPat.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcPat.hi
+lib/${PKGNAME}/${PKGNAME}/TcPat.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnDriver.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnDriver.hi
+lib/${PKGNAME}/${PKGNAME}/TcRnDriver.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnMonad.hi
+lib/${PKGNAME}/${PKGNAME}/TcRnMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnTypes.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcRnTypes.hi
+lib/${PKGNAME}/${PKGNAME}/TcRnTypes.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcRules.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcRules.hi
+lib/${PKGNAME}/${PKGNAME}/TcRules.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcSMonad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcSMonad.hi
+lib/${PKGNAME}/${PKGNAME}/TcSMonad.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcSimplify.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcSimplify.hi
+lib/${PKGNAME}/${PKGNAME}/TcSimplify.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcSplice.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcSplice.hi
+lib/${PKGNAME}/${PKGNAME}/TcSplice.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.hi
+lib/${PKGNAME}/${PKGNAME}/TcTyClsDecls.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcTyDecls.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcTyDecls.hi
+lib/${PKGNAME}/${PKGNAME}/TcTyDecls.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcType.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcType.hi
+lib/${PKGNAME}/${PKGNAME}/TcType.p_hi
+lib/${PKGNAME}/${PKGNAME}/TcUnify.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TcUnify.hi
+lib/${PKGNAME}/${PKGNAME}/TcUnify.p_hi
+lib/${PKGNAME}/${PKGNAME}/TidyPgm.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TidyPgm.hi
+lib/${PKGNAME}/${PKGNAME}/TidyPgm.p_hi
+lib/${PKGNAME}/${PKGNAME}/TrieMap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TrieMap.hi
+lib/${PKGNAME}/${PKGNAME}/TrieMap.p_hi
+lib/${PKGNAME}/${PKGNAME}/TyCon.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TyCon.hi
+lib/${PKGNAME}/${PKGNAME}/TyCon.p_hi
+lib/${PKGNAME}/${PKGNAME}/Type.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Type.hi
+lib/${PKGNAME}/${PKGNAME}/Type.p_hi
+lib/${PKGNAME}/${PKGNAME}/TypeRep.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TypeRep.hi
+lib/${PKGNAME}/${PKGNAME}/TypeRep.p_hi
+lib/${PKGNAME}/${PKGNAME}/TysPrim.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TysPrim.hi
+lib/${PKGNAME}/${PKGNAME}/TysPrim.p_hi
+lib/${PKGNAME}/${PKGNAME}/TysWiredIn.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/TysWiredIn.hi
+lib/${PKGNAME}/${PKGNAME}/TysWiredIn.p_hi
+lib/${PKGNAME}/${PKGNAME}/UnariseStg.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/UnariseStg.hi
+lib/${PKGNAME}/${PKGNAME}/UnariseStg.p_hi
+lib/${PKGNAME}/${PKGNAME}/Unify.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Unify.hi
+lib/${PKGNAME}/${PKGNAME}/Unify.p_hi
+lib/${PKGNAME}/${PKGNAME}/UniqFM.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/UniqFM.hi
+lib/${PKGNAME}/${PKGNAME}/UniqFM.p_hi
+lib/${PKGNAME}/${PKGNAME}/UniqSet.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/UniqSet.hi
+lib/${PKGNAME}/${PKGNAME}/UniqSet.p_hi
+lib/${PKGNAME}/${PKGNAME}/UniqSupply.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/UniqSupply.hi
+lib/${PKGNAME}/${PKGNAME}/UniqSupply.p_hi
+lib/${PKGNAME}/${PKGNAME}/Unique.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Unique.hi
+lib/${PKGNAME}/${PKGNAME}/Unique.p_hi
+lib/${PKGNAME}/${PKGNAME}/Util.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Util.hi
+lib/${PKGNAME}/${PKGNAME}/Util.p_hi
+lib/${PKGNAME}/${PKGNAME}/Var.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Var.hi
+lib/${PKGNAME}/${PKGNAME}/Var.p_hi
+lib/${PKGNAME}/${PKGNAME}/VarEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/VarEnv.hi
+lib/${PKGNAME}/${PKGNAME}/VarEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/VarSet.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/VarSet.hi
+lib/${PKGNAME}/${PKGNAME}/VarSet.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Builtins/Initialise.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Convert.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Env.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Exp.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/Description.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PADict.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PAMethods.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Generic/PData.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Global.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/InstEnv.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Local.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Monad/Naming.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Classify.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Env.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/TyConDecl.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Type/Type.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Base.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Closure.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Hoisting.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/PADict.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Utils/Poly.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Var.p_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.hi
+lib/${PKGNAME}/${PKGNAME}/Vectorise/Vect.p_hi
+lib/${PKGNAME}/${PKGNAME}/WorkWrap.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/WorkWrap.hi
+lib/${PKGNAME}/${PKGNAME}/WorkWrap.p_hi
+lib/${PKGNAME}/${PKGNAME}/WwLib.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/WwLib.hi
+lib/${PKGNAME}/${PKGNAME}/WwLib.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.hi
+lib/${PKGNAME}/${PKGNAME}/X86/CodeGen.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Cond.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Cond.hi
+lib/${PKGNAME}/${PKGNAME}/X86/Cond.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Instr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Instr.hi
+lib/${PKGNAME}/${PKGNAME}/X86/Instr.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Ppr.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Ppr.hi
+lib/${PKGNAME}/${PKGNAME}/X86/Ppr.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.hi
+lib/${PKGNAME}/${PKGNAME}/X86/RegInfo.p_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Regs.dyn_hi
+lib/${PKGNAME}/${PKGNAME}/X86/Regs.hi
+lib/${PKGNAME}/${PKGNAME}/X86/Regs.p_hi
+lib/${PKGNAME}/${PKGNAME}/include/HsVersions.h
+lib/${PKGNAME}/${PKGNAME}/include/ghc_boot_platform.h
+lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}-ghc${PKGVERSION}.so
+lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}.a
+lib/${PKGNAME}/${PKGNAME}/libHS${PKGNAME}_p.a
+lib/${PKGNAME}/ghc-pkg
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/CString.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Classes.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Debug.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/IntWord64.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Magic.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/PrimopWrappers.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Tuple.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.dyn_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/GHC/Types.p_hi
+lib/${PKGNAME}/ghc-prim-0.3.0.0/HSghc-prim-0.3.0.0.o
+lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0.a
+lib/${PKGNAME}/ghc-prim-0.3.0.0/libHSghc-prim-0.3.0.0_p.a
+lib/${PKGNAME}/ghc-split
+lib/${PKGNAME}/ghc-usage.txt
+lib/${PKGNAME}/ghci-usage.txt
+lib/${PKGNAME}/haddock
+lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Control/Monad.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Array.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Bits.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Char.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Complex.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Int.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ix.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/List.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Maybe.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Ratio.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Data/Word.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Error.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/String.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/C/Types.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/ForeignPtr.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Alloc.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Array.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Error.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Marshal/Utils.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Ptr.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/StablePtr.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Foreign/Storable.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/HShaskell2010-1.1.1.0.o
+lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Numeric.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/Prelude.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Environment.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/Exit.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.dyn_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/System/IO/Error.p_hi
+lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0.a
+lib/${PKGNAME}/haskell2010-1.1.1.0/libHShaskell2010-1.1.1.0_p.a
+lib/${PKGNAME}/haskell98-2.0.0.2/Array.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Array.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Array.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Bits.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Bits.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Bits.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CError.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CError.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CError.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CForeign.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CPUTime.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CString.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CString.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CString.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/CTypes.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Char.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Char.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Char.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Complex.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Complex.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Complex.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Directory.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Directory.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Directory.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/ForeignPtr.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/HShaskell98-2.0.0.2.o
+lib/${PKGNAME}/haskell98-2.0.0.2/IO.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/IO.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/IO.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Int.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Int.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Int.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ix.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ix.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ix.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/List.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/List.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/List.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Locale.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Locale.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Locale.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalAlloc.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalArray.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalError.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/MarshalUtils.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Maybe.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Monad.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Monad.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Monad.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Numeric.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Prelude.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ptr.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Random.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Random.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Random.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Ratio.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/StablePtr.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Storable.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Storable.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Storable.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/System.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/System.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/System.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Time.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Time.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Time.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Word.dyn_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Word.hi
+lib/${PKGNAME}/haskell98-2.0.0.2/Word.p_hi
+lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2-ghc${PKGVERSION}.so
+lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2.a
+lib/${PKGNAME}/haskell98-2.0.0.2/libHShaskell98-2.0.0.2_p.a
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Block.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Checkpoint.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Collections.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Combinators.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Dataflow.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Debug.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Fuel.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Graph.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Internals.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Label.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/MkGraph.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/DList.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Passes/Dominator.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Pointed.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Shape.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Show.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Unique.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/Wrappers.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.dyn_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.hi
+lib/${PKGNAME}/hoopl-3.9.0.0/Compiler/Hoopl/XUtil.p_hi
+lib/${PKGNAME}/hoopl-3.9.0.0/HShoopl-3.9.0.0.o
+lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0.a
+lib/${PKGNAME}/hoopl-3.9.0.0/libHShoopl-3.9.0.0_p.a
+lib/${PKGNAME}/hpc-0.6.0.0/HShpc-0.6.0.0.o
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.dyn_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Mix.p_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.dyn_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Reflect.p_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.dyn_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Tix.p_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.dyn_hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.hi
+lib/${PKGNAME}/hpc-0.6.0.0/Trace/Hpc/Util.p_hi
+lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0.a
+lib/${PKGNAME}/hpc-0.6.0.0/libHShpc-0.6.0.0_p.a
+lib/${PKGNAME}/hsc2hs
+lib/${PKGNAME}/html/Classic.theme/haskell_icon.gif
+lib/${PKGNAME}/html/Classic.theme/minus.gif
+lib/${PKGNAME}/html/Classic.theme/plus.gif
+lib/${PKGNAME}/html/Classic.theme/xhaddock.css
+lib/${PKGNAME}/html/Ocean.std-theme/hslogo-16.png
+lib/${PKGNAME}/html/Ocean.std-theme/minus.gif
+lib/${PKGNAME}/html/Ocean.std-theme/ocean.css
+lib/${PKGNAME}/html/Ocean.std-theme/plus.gif
+lib/${PKGNAME}/html/Ocean.std-theme/synopsis.png
+lib/${PKGNAME}/html/frames.html
+lib/${PKGNAME}/html/haddock-util.js
+lib/${PKGNAME}/include/Cmm.h
+lib/${PKGNAME}/include/DerivedConstants.h
+lib/${PKGNAME}/include/GHCConstants.h
+lib/${PKGNAME}/include/HsFFI.h
+lib/${PKGNAME}/include/MachDeps.h
+lib/${PKGNAME}/include/Rts.h
+lib/${PKGNAME}/include/RtsAPI.h
+lib/${PKGNAME}/include/Stg.h
+lib/${PKGNAME}/include/ffi.h
+lib/${PKGNAME}/include/ffitarget.h
+lib/${PKGNAME}/include/ghcautoconf.h
+lib/${PKGNAME}/include/ghcconfig.h
+lib/${PKGNAME}/include/ghcplatform.h
+lib/${PKGNAME}/include/rts/Adjustor.h
+lib/${PKGNAME}/include/rts/BlockSignals.h
+lib/${PKGNAME}/include/rts/Bytecodes.h
+lib/${PKGNAME}/include/rts/Config.h
+lib/${PKGNAME}/include/rts/Constants.h
+lib/${PKGNAME}/include/rts/EventLogFormat.h
+lib/${PKGNAME}/include/rts/FileLock.h
+lib/${PKGNAME}/include/rts/Flags.h
+lib/${PKGNAME}/include/rts/GetTime.h
+lib/${PKGNAME}/include/rts/Globals.h
+lib/${PKGNAME}/include/rts/Hooks.h
+lib/${PKGNAME}/include/rts/Hpc.h
+lib/${PKGNAME}/include/rts/IOManager.h
+lib/${PKGNAME}/include/rts/Linker.h
+lib/${PKGNAME}/include/rts/Main.h
+lib/${PKGNAME}/include/rts/Messages.h
+lib/${PKGNAME}/include/rts/OSThreads.h
+lib/${PKGNAME}/include/rts/Parallel.h
+lib/${PKGNAME}/include/rts/PrimFloat.h
+lib/${PKGNAME}/include/rts/Signals.h
+lib/${PKGNAME}/include/rts/SpinLock.h
+lib/${PKGNAME}/include/rts/Stable.h
+lib/${PKGNAME}/include/rts/TTY.h
+lib/${PKGNAME}/include/rts/Threads.h
+lib/${PKGNAME}/include/rts/Ticky.h
+lib/${PKGNAME}/include/rts/Timer.h
+lib/${PKGNAME}/include/rts/Types.h
+lib/${PKGNAME}/include/rts/Utils.h
+lib/${PKGNAME}/include/rts/prof/CCS.h
+lib/${PKGNAME}/include/rts/prof/LDV.h
+lib/${PKGNAME}/include/rts/storage/Block.h
+lib/${PKGNAME}/include/rts/storage/ClosureMacros.h
+lib/${PKGNAME}/include/rts/storage/ClosureTypes.h
+lib/${PKGNAME}/include/rts/storage/Closures.h
+lib/${PKGNAME}/include/rts/storage/FunTypes.h
+lib/${PKGNAME}/include/rts/storage/GC.h
+lib/${PKGNAME}/include/rts/storage/InfoTables.h
+lib/${PKGNAME}/include/rts/storage/Liveness.h
+lib/${PKGNAME}/include/rts/storage/MBlock.h
+lib/${PKGNAME}/include/rts/storage/SMPClosureOps.h
+lib/${PKGNAME}/include/rts/storage/TSO.h
+lib/${PKGNAME}/include/stg/DLL.h
+lib/${PKGNAME}/include/stg/MachRegs.h
+lib/${PKGNAME}/include/stg/MiscClosures.h
+lib/${PKGNAME}/include/stg/Regs.h
+lib/${PKGNAME}/include/stg/SMP.h
+lib/${PKGNAME}/include/stg/TailCalls.h
+lib/${PKGNAME}/include/stg/Ticky.h
+lib/${PKGNAME}/include/stg/Types.h
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Internals.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/GMP/Prim.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Logarithms/Internals.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.dyn_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/GHC/Integer/Type.p_hi
+lib/${PKGNAME}/integer-gmp-0.5.0.0/HSinteger-gmp-0.5.0.0.o
+lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0.a
+lib/${PKGNAME}/integer-gmp-0.5.0.0/libHSinteger-gmp-0.5.0.0_p.a
+lib/${PKGNAME}/latex/haddock.sty
+lib/${PKGNAME}/libHSrts-ghc${PKGVERSION}.so
+lib/${PKGNAME}/libHSrts.a
+lib/${PKGNAME}/libHSrts_debug-ghc${PKGVERSION}.so
+lib/${PKGNAME}/libHSrts_debug.a
+lib/${PKGNAME}/libHSrts_l.a
+lib/${PKGNAME}/libHSrts_p.a
+lib/${PKGNAME}/libHSrts_thr-ghc${PKGVERSION}.so
+lib/${PKGNAME}/libHSrts_thr.a
+lib/${PKGNAME}/libHSrts_thr_debug-ghc${PKGVERSION}.so
+lib/${PKGNAME}/libHSrts_thr_debug.a
+lib/${PKGNAME}/libHSrts_thr_l.a
+lib/${PKGNAME}/libHSrts_thr_p.a
+lib/${PKGNAME}/libffi.so
+lib/${PKGNAME}/libffi.so.6
+lib/${PKGNAME}/libffi.so.6.0
+lib/${PKGNAME}/old-locale-1.0.0.5/HSold-locale-1.0.0.5.o
+lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.dyn_hi
+lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.hi
+lib/${PKGNAME}/old-locale-1.0.0.5/System/Locale.p_hi
+lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5-ghc${PKGVERSION}.so
+lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5.a
+lib/${PKGNAME}/old-locale-1.0.0.5/libHSold-locale-1.0.0.5_p.a
+lib/${PKGNAME}/old-time-1.1.0.1/HSold-time-1.1.0.1.o
+lib/${PKGNAME}/old-time-1.1.0.1/System/Time.dyn_hi
+lib/${PKGNAME}/old-time-1.1.0.1/System/Time.hi
+lib/${PKGNAME}/old-time-1.1.0.1/System/Time.p_hi
+lib/${PKGNAME}/old-time-1.1.0.1/include/HsTime.h
+lib/${PKGNAME}/old-time-1.1.0.1/include/HsTimeConfig.h
+lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1.a
+lib/${PKGNAME}/old-time-1.1.0.1/libHSold-time-1.1.0.1_p.a
+lib/${PKGNAME}/pretty-1.1.1.0/HSpretty-1.1.1.0.o
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.dyn_hi
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.hi
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint.p_hi
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.dyn_hi
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.hi
+lib/${PKGNAME}/pretty-1.1.1.0/Text/PrettyPrint/HughesPJ.p_hi
+lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0.a
+lib/${PKGNAME}/pretty-1.1.1.0/libHSpretty-1.1.1.0_p.a
+lib/${PKGNAME}/process-1.1.0.2/HSprocess-1.1.0.2.o
+lib/${PKGNAME}/process-1.1.0.2/System/Cmd.dyn_hi
+lib/${PKGNAME}/process-1.1.0.2/System/Cmd.hi
+lib/${PKGNAME}/process-1.1.0.2/System/Cmd.p_hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process.dyn_hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process.hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process.p_hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.dyn_hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.hi
+lib/${PKGNAME}/process-1.1.0.2/System/Process/Internals.p_hi
+lib/${PKGNAME}/process-1.1.0.2/include/HsProcessConfig.h
+lib/${PKGNAME}/process-1.1.0.2/include/processFlags.h
+lib/${PKGNAME}/process-1.1.0.2/include/runProcess.h
+lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2-ghc${PKGVERSION}.so
+lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2.a
+lib/${PKGNAME}/process-1.1.0.2/libHSprocess-1.1.0.2_p.a
+lib/${PKGNAME}/runghc
+lib/${PKGNAME}/settings
+lib/${PKGNAME}/template-haskell-2.8.0.0/HStemplate-haskell-2.8.0.0.o
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Lib.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Ppr.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/PprLib.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Quote.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.dyn_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/Language/Haskell/TH/Syntax.p_hi
+lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0-ghc${PKGVERSION}.so
+lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0.a
+lib/${PKGNAME}/template-haskell-2.8.0.0/libHStemplate-haskell-2.8.0.0_p.a
+lib/${PKGNAME}/template-hsc.h
+lib/${PKGNAME}/time-1.4.0.1/Data/Time.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Days.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Easter.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Gregorian.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Julian.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/JulianYearDay.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/MonthDay.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/OrdinalDate.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/Private.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Calendar/WeekDate.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/CTimeval.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/POSIX.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/Scale.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/TAI.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTC.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Clock/UTCDiff.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/Format/Parse.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/LocalTime.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeOfDay.p_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.dyn_hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.hi
+lib/${PKGNAME}/time-1.4.0.1/Data/Time/LocalTime/TimeZone.p_hi
+lib/${PKGNAME}/time-1.4.0.1/HStime-1.4.0.1.o
+lib/${PKGNAME}/time-1.4.0.1/include/HsTime.h
+lib/${PKGNAME}/time-1.4.0.1/include/HsTimeConfig.h
+lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1.a
+lib/${PKGNAME}/time-1.4.0.1/libHStime-1.4.0.1_p.a
+lib/${PKGNAME}/unix-2.6.0.1/HSunix-2.6.0.1.o
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/ByteString/FilePath.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Directory/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Module/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/DynamicLinker/Prim.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Env/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Error.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Files/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/IO/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Process/Internals.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Resource.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Semaphore.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/SharedMem.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Signals/Exts.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Temp/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/ByteString.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Terminal/Common.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Time.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/Unistd.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.dyn_hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.hi
+lib/${PKGNAME}/unix-2.6.0.1/System/Posix/User.p_hi
+lib/${PKGNAME}/unix-2.6.0.1/include/HsUnix.h
+lib/${PKGNAME}/unix-2.6.0.1/include/HsUnixConfig.h
+lib/${PKGNAME}/unix-2.6.0.1/include/execvpe.h
+lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1-ghc${PKGVERSION}.so
+lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1.a
+lib/${PKGNAME}/unix-2.6.0.1/libHSunix-2.6.0.1_p.a
+lib/${PKGNAME}/unlit
+man/man1/ghc.1
+share/doc/ghc/html/haddock/ch01s03.html
+share/doc/ghc/html/haddock/ch01s04.html
+share/doc/ghc/html/haddock/ch03s02.html
+share/doc/ghc/html/haddock/ch03s03.html
+share/doc/ghc/html/haddock/ch03s04.html
+share/doc/ghc/html/haddock/ch03s05.html
+share/doc/ghc/html/haddock/ch03s08.html
+share/doc/ghc/html/haddock/fptools.css
+share/doc/ghc/html/haddock/hyperlinking.html
+share/doc/ghc/html/haddock/index.html
+share/doc/ghc/html/haddock/introduction.html
+share/doc/ghc/html/haddock/invoking.html
+share/doc/ghc/html/haddock/ix01.html
+share/doc/ghc/html/haddock/license.html
+share/doc/ghc/html/haddock/markup.html
+share/doc/ghc/html/haddock/module-attributes.html
+share/doc/ghc/html/index.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.haddock
+share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.haddock.t
+share/doc/ghc/html/libraries/Cabal-1.16.0/Cabal.txt
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Compat-ReadP.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Compiler.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-InstalledPackageInfo.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-License.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Make.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ModuleName.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Package.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Check.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Configuration.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-Parse.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription-PrettyPrint.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-PackageDescription.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ParseUtils.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-ReadE.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Bench.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build-Macros.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build-PathsModule.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Build.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-BuildPaths.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Command.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Compiler.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Configure.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-GHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Haddock.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Hpc.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Hugs.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Install.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-InstallDirs.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-JHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-LHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-LocalBuildInfo.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-NHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PackageIndex.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PreProcess-Unlit.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-PreProcess.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Ar.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Builtin.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Db.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-GHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-HcPkg.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Hpc.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Ld.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Run.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Script.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program-Types.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Program.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Register.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Setup.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-SrcDist.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Test.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-UHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-UserHooks.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple-Utils.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Simple.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-System.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-TestSuite.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Text.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Verbosity.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/Distribution-Version.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/LICENSE
+share/doc/ghc/html/libraries/Cabal-1.16.0/Language-Haskell-Extension.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-43.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-60.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-A.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-All.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-B.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-C.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-D.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-E.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-F.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-G.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-H.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-I.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-J.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-K.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-L.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-M.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-N.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-O.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-P.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-Q.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-R.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-S.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-T.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-U.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-V.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-W.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-X.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index-Y.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/doc-index.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/frames.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/haddock-util.js
+share/doc/ghc/html/libraries/Cabal-1.16.0/hslogo-16.png
+share/doc/ghc/html/libraries/Cabal-1.16.0/index-frames.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/index.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Compat-ReadP.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Compiler.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-InstalledPackageInfo.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-License.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Make.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ModuleName.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Package.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Check.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Configuration.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-Parse.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription-PrettyPrint.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-PackageDescription.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ParseUtils.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-ReadE.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Bench.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build-Macros.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build-PathsModule.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Build.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-BuildPaths.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Command.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Compiler.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Configure.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-GHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Haddock.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Hpc.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Hugs.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Install.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-InstallDirs.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-JHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-LHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-LocalBuildInfo.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-NHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PackageIndex.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PreProcess-Unlit.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-PreProcess.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Ar.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Builtin.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Db.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-GHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-HcPkg.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Hpc.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Ld.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Run.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Script.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program-Types.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Program.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Register.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Setup.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-SrcDist.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Test.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-UHC.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-UserHooks.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple-Utils.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Simple.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-System.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-TestSuite.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Text.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Verbosity.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Distribution-Version.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/mini_Language-Haskell-Extension.html
+share/doc/ghc/html/libraries/Cabal-1.16.0/minus.gif
+share/doc/ghc/html/libraries/Cabal-1.16.0/ocean.css
+share/doc/ghc/html/libraries/Cabal-1.16.0/plus.gif
+share/doc/ghc/html/libraries/Cabal-1.16.0/synopsis.png
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IArray.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IO-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-IO.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-MArray-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-MArray.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-ST-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-ST.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Storable-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Storable.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Unboxed.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array-Unsafe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/Data-Array.html
+share/doc/ghc/html/libraries/array-0.4.0.1/LICENSE
+share/doc/ghc/html/libraries/array-0.4.0.1/array.haddock
+share/doc/ghc/html/libraries/array-0.4.0.1/array.haddock.t
+share/doc/ghc/html/libraries/array-0.4.0.1/array.txt
+share/doc/ghc/html/libraries/array-0.4.0.1/doc-index.html
+share/doc/ghc/html/libraries/array-0.4.0.1/frames.html
+share/doc/ghc/html/libraries/array-0.4.0.1/haddock-util.js
+share/doc/ghc/html/libraries/array-0.4.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/array-0.4.0.1/index-frames.html
+share/doc/ghc/html/libraries/array-0.4.0.1/index.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IArray.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IO-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-IO.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-MArray-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-MArray.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-ST-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-ST.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Storable-Safe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Storable.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Unboxed.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array-Unsafe.html
+share/doc/ghc/html/libraries/array-0.4.0.1/mini_Data-Array.html
+share/doc/ghc/html/libraries/array-0.4.0.1/minus.gif
+share/doc/ghc/html/libraries/array-0.4.0.1/ocean.css
+share/doc/ghc/html/libraries/array-0.4.0.1/plus.gif
+share/doc/ghc/html/libraries/array-0.4.0.1/synopsis.png
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Applicative.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Arrow.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Category.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-Chan.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-MVar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-QSem.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-QSemN.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent-SampleVar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Concurrent.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Exception-Base.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Exception.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Fix.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Instances.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Lazy.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Strict.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-ST.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad-Zip.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Control-Monad.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Bits.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Bool.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Char.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Complex.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Data.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Dynamic.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Either.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Eq.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Fixed.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Foldable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Function.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Functor.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-HashTable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-IORef.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Int.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ix.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-List.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Maybe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Monoid.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ord.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Ratio.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef-Lazy.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef-Strict.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-STRef.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-String.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Traversable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Tuple.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Typeable-Internal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Typeable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Unique.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Version.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Data-Word.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Debug-Trace.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-String.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-C.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Concurrent.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-ForeignPtr-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-ForeignPtr-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Alloc.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Array.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Pool.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal-Utils.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Marshal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Ptr.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-StablePtr.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign-Storable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Foreign.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Char.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-IO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-Signal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc-Sync.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Conc.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-ConsoleHandler.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Constants.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Desugar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Environment.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Event.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Exts.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Fingerprint-Type.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Fingerprint.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Foreign.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Generics.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Buffer.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-BufferedIO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Device.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-CodePage.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Failure.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Iconv.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Latin1.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF16.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF32.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding-UTF8.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Encoding.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Handle-FD.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IO-Handle.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-IP.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Stack.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-Stats.html
+share/doc/ghc/html/libraries/base-4.6.0.1/GHC-TypeLits.html
+share/doc/ghc/html/libraries/base-4.6.0.1/LICENSE
+share/doc/ghc/html/libraries/base-4.6.0.1/Numeric.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Prelude.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-CPUTime.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Console-GetOpt.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Environment.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Exit.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-IO-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-IO-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-IO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Info.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem-StableName.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem-Weak.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Mem.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Posix-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/System-Timeout.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-ParserCombinators-ReadP.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-ParserCombinators-ReadPrec.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-Printf.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-Read-Lex.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-Read.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-Show-Functions.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Text-Show.html
+share/doc/ghc/html/libraries/base-4.6.0.1/Unsafe-Coerce.html
+share/doc/ghc/html/libraries/base-4.6.0.1/base.haddock
+share/doc/ghc/html/libraries/base-4.6.0.1/base.haddock.t
+share/doc/ghc/html/libraries/base-4.6.0.1/base.txt
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-124.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-126.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-33.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-36.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-37.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-38.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-42.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-43.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-45.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-46.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-47.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-58.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-60.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-61.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-62.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-92.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-94.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-A.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-All.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-B.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-C.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-D.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-E.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-F.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-G.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-H.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-I.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-J.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-K.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-L.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-M.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-N.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-O.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-P.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Q.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-R.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-S.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-T.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-U.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-V.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-W.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-X.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Y.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index-Z.html
+share/doc/ghc/html/libraries/base-4.6.0.1/doc-index.html
+share/doc/ghc/html/libraries/base-4.6.0.1/frames.html
+share/doc/ghc/html/libraries/base-4.6.0.1/haddock-util.js
+share/doc/ghc/html/libraries/base-4.6.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/base-4.6.0.1/index-frames.html
+share/doc/ghc/html/libraries/base-4.6.0.1/index.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Applicative.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Arrow.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Category.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-Chan.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-MVar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-QSem.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-QSemN.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent-SampleVar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Concurrent.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Exception-Base.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Exception.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Fix.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Instances.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Lazy.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Strict.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-ST.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad-Zip.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Control-Monad.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Bits.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Bool.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Char.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Complex.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Data.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Dynamic.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Either.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Eq.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Fixed.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Foldable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Function.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Functor.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-HashTable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-IORef.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Int.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ix.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-List.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Maybe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Monoid.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ord.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Ratio.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef-Lazy.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef-Strict.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-STRef.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-String.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Traversable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Tuple.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Typeable-Internal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Typeable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Unique.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Version.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Data-Word.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Debug-Trace.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-String.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-C.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Concurrent.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-ForeignPtr-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-ForeignPtr-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Alloc.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Array.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Pool.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal-Utils.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Marshal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Ptr.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Safe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-StablePtr.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign-Storable.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Foreign.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Char.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-IO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-Signal.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc-Sync.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Conc.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-ConsoleHandler.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Constants.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Desugar.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Environment.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Event.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Exts.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Fingerprint-Type.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Fingerprint.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Foreign.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Generics.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Buffer.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-BufferedIO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Device.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-CodePage.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Failure.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Iconv.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Latin1.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF16.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF32.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding-UTF8.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Encoding.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Handle-FD.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IO-Handle.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-IP.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Stack.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-Stats.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_GHC-TypeLits.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Numeric.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Prelude.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-CPUTime.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Console-GetOpt.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Environment.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Exit.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO-Error.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO-Unsafe.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-IO.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Info.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem-StableName.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem-Weak.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Mem.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Posix-Types.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_System-Timeout.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-ParserCombinators-ReadP.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-ParserCombinators-ReadPrec.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Printf.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Read-Lex.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Read.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Show-Functions.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Text-Show.html
+share/doc/ghc/html/libraries/base-4.6.0.1/mini_Unsafe-Coerce.html
+share/doc/ghc/html/libraries/base-4.6.0.1/minus.gif
+share/doc/ghc/html/libraries/base-4.6.0.1/ocean.css
+share/doc/ghc/html/libraries/base-4.6.0.1/plus.gif
+share/doc/ghc/html/libraries/base-4.6.0.1/synopsis.png
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/Distribution-InstalledPackageInfo-Binary.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.haddock
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.haddock.t
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/bin-package-db.txt
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/doc-index.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/frames.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/haddock-util.js
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/index-frames.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/index.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/mini_Distribution-InstalledPackageInfo-Binary.html
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/minus.gif
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/ocean.css
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/plus.gif
+share/doc/ghc/html/libraries/bin-package-db-0.0.0.0/synopsis.png
+share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Builder-Internal.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Builder.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Get.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary-Put.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/Data-Binary.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/LICENSE
+share/doc/ghc/html/libraries/binary-0.5.1.1/binary.haddock
+share/doc/ghc/html/libraries/binary-0.5.1.1/binary.haddock.t
+share/doc/ghc/html/libraries/binary-0.5.1.1/binary.txt
+share/doc/ghc/html/libraries/binary-0.5.1.1/doc-index.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/frames.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/haddock-util.js
+share/doc/ghc/html/libraries/binary-0.5.1.1/hslogo-16.png
+share/doc/ghc/html/libraries/binary-0.5.1.1/index-frames.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/index.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Builder-Internal.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Builder.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Get.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary-Put.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/mini_Data-Binary.html
+share/doc/ghc/html/libraries/binary-0.5.1.1/minus.gif
+share/doc/ghc/html/libraries/binary-0.5.1.1/ocean.css
+share/doc/ghc/html/libraries/binary-0.5.1.1/plus.gif
+share/doc/ghc/html/libraries/binary-0.5.1.1/synopsis.png
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Char8.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder-ASCII.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder-Extras.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Builder.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy-Char8.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Lazy.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString-Unsafe.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/Data-ByteString.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/LICENSE
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.haddock
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.haddock.t
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/bytestring.txt
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-A.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-All.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-B.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-C.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-D.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-E.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-F.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-G.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-H.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-I.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-L.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-M.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-N.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-P.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-R.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-S.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-T.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-U.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-W.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index-Z.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/doc-index.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/frames.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/haddock-util.js
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/hslogo-16.png
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/index-frames.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/index.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Char8.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder-ASCII.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder-Extras.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Builder.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy-Char8.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Lazy.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString-Unsafe.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/mini_Data-ByteString.html
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/minus.gif
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/ocean.css
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/plus.gif
+share/doc/ghc/html/libraries/bytestring-0.10.0.2/synopsis.png
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Graph.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap-Lazy.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap-Strict.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntMap.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-IntSet.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map-Lazy.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map-Strict.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Map.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Sequence.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Set.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/Data-Tree.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/LICENSE
+share/doc/ghc/html/libraries/containers-0.5.0.0/containers.haddock
+share/doc/ghc/html/libraries/containers-0.5.0.0/containers.haddock.t
+share/doc/ghc/html/libraries/containers-0.5.0.0/containers.txt
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-124.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-33.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-58.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-60.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-62.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-92.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-A.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-All.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-B.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-C.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-D.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-E.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-F.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-G.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-I.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-K.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-L.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-M.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-N.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-O.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-P.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-R.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-S.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-T.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-U.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-V.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index-Z.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/doc-index.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/frames.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/haddock-util.js
+share/doc/ghc/html/libraries/containers-0.5.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/containers-0.5.0.0/index-frames.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/index.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Graph.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap-Lazy.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap-Strict.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntMap.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-IntSet.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map-Lazy.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map-Strict.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Map.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Sequence.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Set.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/mini_Data-Tree.html
+share/doc/ghc/html/libraries/containers-0.5.0.0/minus.gif
+share/doc/ghc/html/libraries/containers-0.5.0.0/ocean.css
+share/doc/ghc/html/libraries/containers-0.5.0.0/plus.gif
+share/doc/ghc/html/libraries/containers-0.5.0.0/synopsis.png
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/Control-DeepSeq.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/LICENSE
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.haddock
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.haddock.t
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/deepseq.txt
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/doc-index.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/frames.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/haddock-util.js
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/index-frames.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/index.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/mini_Control-DeepSeq.html
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/minus.gif
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/ocean.css
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/plus.gif
+share/doc/ghc/html/libraries/deepseq-1.3.0.1/synopsis.png
+share/doc/ghc/html/libraries/directory-1.2.0.1/LICENSE
+share/doc/ghc/html/libraries/directory-1.2.0.1/System-Directory.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/directory.haddock
+share/doc/ghc/html/libraries/directory-1.2.0.1/directory.haddock.t
+share/doc/ghc/html/libraries/directory-1.2.0.1/directory.txt
+share/doc/ghc/html/libraries/directory-1.2.0.1/doc-index.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/frames.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/haddock-util.js
+share/doc/ghc/html/libraries/directory-1.2.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/directory-1.2.0.1/index-frames.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/index.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/mini_System-Directory.html
+share/doc/ghc/html/libraries/directory-1.2.0.1/minus.gif
+share/doc/ghc/html/libraries/directory-1.2.0.1/ocean.css
+share/doc/ghc/html/libraries/directory-1.2.0.1/plus.gif
+share/doc/ghc/html/libraries/directory-1.2.0.1/synopsis.png
+share/doc/ghc/html/libraries/doc-index-124.html
+share/doc/ghc/html/libraries/doc-index-126.html
+share/doc/ghc/html/libraries/doc-index-33.html
+share/doc/ghc/html/libraries/doc-index-36.html
+share/doc/ghc/html/libraries/doc-index-37.html
+share/doc/ghc/html/libraries/doc-index-38.html
+share/doc/ghc/html/libraries/doc-index-42.html
+share/doc/ghc/html/libraries/doc-index-43.html
+share/doc/ghc/html/libraries/doc-index-45.html
+share/doc/ghc/html/libraries/doc-index-46.html
+share/doc/ghc/html/libraries/doc-index-47.html
+share/doc/ghc/html/libraries/doc-index-58.html
+share/doc/ghc/html/libraries/doc-index-60.html
+share/doc/ghc/html/libraries/doc-index-61.html
+share/doc/ghc/html/libraries/doc-index-62.html
+share/doc/ghc/html/libraries/doc-index-92.html
+share/doc/ghc/html/libraries/doc-index-94.html
+share/doc/ghc/html/libraries/doc-index-A.html
+share/doc/ghc/html/libraries/doc-index-All.html
+share/doc/ghc/html/libraries/doc-index-B.html
+share/doc/ghc/html/libraries/doc-index-C.html
+share/doc/ghc/html/libraries/doc-index-D.html
+share/doc/ghc/html/libraries/doc-index-E.html
+share/doc/ghc/html/libraries/doc-index-F.html
+share/doc/ghc/html/libraries/doc-index-G.html
+share/doc/ghc/html/libraries/doc-index-H.html
+share/doc/ghc/html/libraries/doc-index-I.html
+share/doc/ghc/html/libraries/doc-index-J.html
+share/doc/ghc/html/libraries/doc-index-K.html
+share/doc/ghc/html/libraries/doc-index-L.html
+share/doc/ghc/html/libraries/doc-index-M.html
+share/doc/ghc/html/libraries/doc-index-N.html
+share/doc/ghc/html/libraries/doc-index-O.html
+share/doc/ghc/html/libraries/doc-index-P.html
+share/doc/ghc/html/libraries/doc-index-Q.html
+share/doc/ghc/html/libraries/doc-index-R.html
+share/doc/ghc/html/libraries/doc-index-S.html
+share/doc/ghc/html/libraries/doc-index-T.html
+share/doc/ghc/html/libraries/doc-index-U.html
+share/doc/ghc/html/libraries/doc-index-V.html
+share/doc/ghc/html/libraries/doc-index-W.html
+share/doc/ghc/html/libraries/doc-index-X.html
+share/doc/ghc/html/libraries/doc-index-Y.html
+share/doc/ghc/html/libraries/doc-index-Z.html
+share/doc/ghc/html/libraries/doc-index.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/LICENSE
+share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath-Posix.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath-Windows.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/System-FilePath.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/doc-index.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.haddock
+share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.haddock.t
+share/doc/ghc/html/libraries/filepath-1.3.0.1/filepath.txt
+share/doc/ghc/html/libraries/filepath-1.3.0.1/frames.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/haddock-util.js
+share/doc/ghc/html/libraries/filepath-1.3.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/filepath-1.3.0.1/index-frames.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/index.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath-Posix.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath-Windows.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/mini_System-FilePath.html
+share/doc/ghc/html/libraries/filepath-1.3.0.1/minus.gif
+share/doc/ghc/html/libraries/filepath-1.3.0.1/ocean.css
+share/doc/ghc/html/libraries/filepath-1.3.0.1/plus.gif
+share/doc/ghc/html/libraries/filepath-1.3.0.1/synopsis.png
+share/doc/ghc/html/libraries/frames.html
+share/doc/ghc/html/libraries/gen_contents_index
+share/doc/ghc/html/libraries/${PKGNAME}/Annotations.html
+share/doc/ghc/html/libraries/${PKGNAME}/AsmCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/Avail.html
+share/doc/ghc/html/libraries/${PKGNAME}/Bag.html
+share/doc/ghc/html/libraries/${PKGNAME}/BasicTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/BinIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/Binary.html
+share/doc/ghc/html/libraries/${PKGNAME}/Bitmap.html
+share/doc/ghc/html/libraries/${PKGNAME}/BlockId.html
+share/doc/ghc/html/libraries/${PKGNAME}/BreakArray.html
+share/doc/ghc/html/libraries/${PKGNAME}/BufWrite.html
+share/doc/ghc/html/libraries/${PKGNAME}/BuildTyCl.html
+share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeAsm.html
+share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeInstr.html
+share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeItbls.html
+share/doc/ghc/html/libraries/${PKGNAME}/ByteCodeLink.html
+share/doc/ghc/html/libraries/${PKGNAME}/CLabel.html
+share/doc/ghc/html/libraries/${PKGNAME}/CPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/CSE.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgBindery.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgCallConv.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgCase.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgClosure.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgExtCode.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgForeignCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgHeapery.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgHpc.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgInfoTbls.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgLetNoEscape.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgParallel.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgPrimOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgProf.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgStackery.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgTailCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgTicky.html
+share/doc/ghc/html/libraries/${PKGNAME}/CgUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Check.html
+share/doc/ghc/html/libraries/${PKGNAME}/Class.html
+share/doc/ghc/html/libraries/${PKGNAME}/ClosureInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmdLineParser.html
+share/doc/ghc/html/libraries/${PKGNAME}/Cmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmBuildInfoTables.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmCallConv.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmCommonBlockElim.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmContFlowOpt.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmCvt.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmLayoutStack.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmLex.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmLive.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmMachOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmNode.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmOpt.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmParse.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmPipeline.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmProcPoint.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmRewriteAssignments.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmSink.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmType.html
+share/doc/ghc/html/libraries/${PKGNAME}/CmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/CodeOutput.html
+share/doc/ghc/html/libraries/${PKGNAME}/Coercion.html
+share/doc/ghc/html/libraries/${PKGNAME}/Config.html
+share/doc/ghc/html/libraries/${PKGNAME}/Constants.html
+share/doc/ghc/html/libraries/${PKGNAME}/Convert.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreArity.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreFVs.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/CorePrep.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreSubst.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreTidy.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreToStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreUnfold.html
+share/doc/ghc/html/libraries/${PKGNAME}/CoreUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/CostCentre.html
+share/doc/ghc/html/libraries/${PKGNAME}/Coverage.html
+share/doc/ghc/html/libraries/${PKGNAME}/Ctype.html
+share/doc/ghc/html/libraries/${PKGNAME}/DataCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/Debugger.html
+share/doc/ghc/html/libraries/${PKGNAME}/DebuggerUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Demand.html
+share/doc/ghc/html/libraries/${PKGNAME}/Desugar.html
+share/doc/ghc/html/libraries/${PKGNAME}/Digraph.html
+share/doc/ghc/html/libraries/${PKGNAME}/DmdAnal.html
+share/doc/ghc/html/libraries/${PKGNAME}/DriverMkDepend.html
+share/doc/ghc/html/libraries/${PKGNAME}/DriverPhases.html
+share/doc/ghc/html/libraries/${PKGNAME}/DriverPipeline.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsArrows.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsCCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsGRHSs.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsListComp.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsMeta.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/DsUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/DynFlags.html
+share/doc/ghc/html/libraries/${PKGNAME}/DynamicLoading.html
+share/doc/ghc/html/libraries/${PKGNAME}/Encoding.html
+share/doc/ghc/html/libraries/${PKGNAME}/ErrUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Exception.html
+share/doc/ghc/html/libraries/${PKGNAME}/ExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/FamInst.html
+share/doc/ghc/html/libraries/${PKGNAME}/FamInstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/FastBool.html
+share/doc/ghc/html/libraries/${PKGNAME}/FastFunctions.html
+share/doc/ghc/html/libraries/${PKGNAME}/FastMutInt.html
+share/doc/ghc/html/libraries/${PKGNAME}/FastString.html
+share/doc/ghc/html/libraries/${PKGNAME}/FastTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/Finder.html
+share/doc/ghc/html/libraries/${PKGNAME}/Fingerprint.html
+share/doc/ghc/html/libraries/${PKGNAME}/FiniteMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/FlagChecker.html
+share/doc/ghc/html/libraries/${PKGNAME}/FloatIn.html
+share/doc/ghc/html/libraries/${PKGNAME}/FloatOut.html
+share/doc/ghc/html/libraries/${PKGNAME}/ForeignCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/FunDeps.html
+share/doc/ghc/html/libraries/${PKGNAME}/GHC.html
+share/doc/ghc/html/libraries/${PKGNAME}/GhcMake.html
+share/doc/ghc/html/libraries/${PKGNAME}/GhcMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/GhcPlugins.html
+share/doc/ghc/html/libraries/${PKGNAME}/GraphBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/GraphColor.html
+share/doc/ghc/html/libraries/${PKGNAME}/GraphOps.html
+share/doc/ghc/html/libraries/${PKGNAME}/GraphPpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/HaddockUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/HeaderInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/Hoopl-Dataflow.html
+share/doc/ghc/html/libraries/${PKGNAME}/Hoopl.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsDoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsImpExp.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsLit.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/HsUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/HscMain.html
+share/doc/ghc/html/libraries/${PKGNAME}/HscStats.html
+share/doc/ghc/html/libraries/${PKGNAME}/HscTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/IOEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/Id.html
+share/doc/ghc/html/libraries/${PKGNAME}/IdInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/IfaceEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/IfaceSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/IfaceType.html
+share/doc/ghc/html/libraries/${PKGNAME}/Inst.html
+share/doc/ghc/html/libraries/${PKGNAME}/InstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/Instruction.html
+share/doc/ghc/html/libraries/${PKGNAME}/InteractiveEval.html
+share/doc/ghc/html/libraries/${PKGNAME}/Kind.html
+share/doc/ghc/html/libraries/${PKGNAME}/LICENSE
+share/doc/ghc/html/libraries/${PKGNAME}/LexCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/Lexer.html
+share/doc/ghc/html/libraries/${PKGNAME}/LibFFI.html
+share/doc/ghc/html/libraries/${PKGNAME}/LiberateCase.html
+share/doc/ghc/html/libraries/${PKGNAME}/Linker.html
+share/doc/ghc/html/libraries/${PKGNAME}/ListSetOps.html
+share/doc/ghc/html/libraries/${PKGNAME}/Literal.html
+share/doc/ghc/html/libraries/${PKGNAME}/Llvm-AbsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/Llvm-PpLlvm.html
+share/doc/ghc/html/libraries/${PKGNAME}/Llvm-Types.html
+share/doc/ghc/html/libraries/${PKGNAME}/Llvm.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Data.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/LlvmMangler.html
+share/doc/ghc/html/libraries/${PKGNAME}/LoadIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/Match.html
+share/doc/ghc/html/libraries/${PKGNAME}/MatchCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/MatchLit.html
+share/doc/ghc/html/libraries/${PKGNAME}/Maybes.html
+share/doc/ghc/html/libraries/${PKGNAME}/MkCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/MkExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/MkGraph.html
+share/doc/ghc/html/libraries/${PKGNAME}/MkId.html
+share/doc/ghc/html/libraries/${PKGNAME}/MkIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/Module.html
+share/doc/ghc/html/libraries/${PKGNAME}/MonadUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/NCGMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/Name.html
+share/doc/ghc/html/libraries/${PKGNAME}/NameEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/NameSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/ObjLink.html
+share/doc/ghc/html/libraries/${PKGNAME}/OccName.html
+share/doc/ghc/html/libraries/${PKGNAME}/OccurAnal.html
+share/doc/ghc/html/libraries/${PKGNAME}/OldCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/OldCmmLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/OldCmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/OldPprCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/OptCoercion.html
+share/doc/ghc/html/libraries/${PKGNAME}/OrdList.html
+share/doc/ghc/html/libraries/${PKGNAME}/Outputable.html
+share/doc/ghc/html/libraries/${PKGNAME}/PIC.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-RegInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/PPC-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/PackageConfig.html
+share/doc/ghc/html/libraries/${PKGNAME}/Packages.html
+share/doc/ghc/html/libraries/${PKGNAME}/Pair.html
+share/doc/ghc/html/libraries/${PKGNAME}/Panic.html
+share/doc/ghc/html/libraries/${PKGNAME}/Parser.html
+share/doc/ghc/html/libraries/${PKGNAME}/ParserCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/ParserCoreUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Platform.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprC.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprCmmDecl.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprCmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/PprTyThing.html
+share/doc/ghc/html/libraries/${PKGNAME}/PrelInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/PrelNames.html
+share/doc/ghc/html/libraries/${PKGNAME}/PrelRules.html
+share/doc/ghc/html/libraries/${PKGNAME}/Pretty.html
+share/doc/ghc/html/libraries/${PKGNAME}/PrimOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/ProfInit.html
+share/doc/ghc/html/libraries/${PKGNAME}/RdrHsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/RdrName.html
+share/doc/ghc/html/libraries/${PKGNAME}/Reg.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-ArchBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-ArchX86.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Coalesce.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Main.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Spill.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-SpillClean.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-SpillCost.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-Stats.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Graph-TrivColorable.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-JoinToTargets.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Main.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-PPC-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-SPARC-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-StackMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-State.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-Stats.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Linear-X86-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegAlloc-Liveness.html
+share/doc/ghc/html/libraries/${PKGNAME}/RegClass.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnHsDoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnNames.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnSource.html
+share/doc/ghc/html/libraries/${PKGNAME}/RnTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/RtClosureInspect.html
+share/doc/ghc/html/libraries/${PKGNAME}/Rules.html
+share/doc/ghc/html/libraries/${PKGNAME}/SAT.html
+share/doc/ghc/html/libraries/${PKGNAME}/SCCfinal.html
+share/doc/ghc/html/libraries/${PKGNAME}/SMRep.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-AddrMode.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Amode.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-CondCode.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Expand.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Gen32.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Gen64.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen-Sanity.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Imm.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-RegPlate.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-ShortcutJump.html
+share/doc/ghc/html/libraries/${PKGNAME}/SPARC-Stack.html
+share/doc/ghc/html/libraries/${PKGNAME}/SRT.html
+share/doc/ghc/html/libraries/${PKGNAME}/Serialized.html
+share/doc/ghc/html/libraries/${PKGNAME}/SetLevels.html
+share/doc/ghc/html/libraries/${PKGNAME}/SimplCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/SimplEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/SimplMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/SimplStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/SimplUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Simplify.html
+share/doc/ghc/html/libraries/${PKGNAME}/Size.html
+share/doc/ghc/html/libraries/${PKGNAME}/SpecConstr.html
+share/doc/ghc/html/libraries/${PKGNAME}/Specialise.html
+share/doc/ghc/html/libraries/${PKGNAME}/SrcLoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/State.html
+share/doc/ghc/html/libraries/${PKGNAME}/StaticFlagParser.html
+share/doc/ghc/html/libraries/${PKGNAME}/StaticFlags.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmBind.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmClosure.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmGran.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmHeap.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmHpc.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmLayout.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmProf.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmTicky.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgCmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgStats.html
+share/doc/ghc/html/libraries/${PKGNAME}/StgSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/Stream.html
+share/doc/ghc/html/libraries/${PKGNAME}/StringBuffer.html
+share/doc/ghc/html/libraries/${PKGNAME}/SysTools.html
+share/doc/ghc/html/libraries/${PKGNAME}/TargetReg.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcAnnotations.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcArrows.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcCanonical.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcClassDcl.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcDefaults.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcDeriv.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcErrors.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcEvidence.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcGenDeriv.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcGenGenerics.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcHsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcHsType.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcInstDcls.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcInteract.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcMType.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcMatches.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcRnDriver.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcRnMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcRnTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcRules.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcSMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcSimplify.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcSplice.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcTyClsDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcTyDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcType.html
+share/doc/ghc/html/libraries/${PKGNAME}/TcUnify.html
+share/doc/ghc/html/libraries/${PKGNAME}/TidyPgm.html
+share/doc/ghc/html/libraries/${PKGNAME}/TrieMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/TyCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/Type.html
+share/doc/ghc/html/libraries/${PKGNAME}/TysPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/TysWiredIn.html
+share/doc/ghc/html/libraries/${PKGNAME}/UnariseStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/Unify.html
+share/doc/ghc/html/libraries/${PKGNAME}/UniqFM.html
+share/doc/ghc/html/libraries/${PKGNAME}/UniqSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/UniqSupply.html
+share/doc/ghc/html/libraries/${PKGNAME}/Unique.html
+share/doc/ghc/html/libraries/${PKGNAME}/Util.html
+share/doc/ghc/html/libraries/${PKGNAME}/Var.html
+share/doc/ghc/html/libraries/${PKGNAME}/VarEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/VarSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins-Initialise.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Builtins.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Convert.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Env.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Exp.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-Description.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PADict.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PAMethods.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Generic-PData.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Global.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-InstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Local.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad-Naming.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Monad.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Classify.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Env.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-TyConDecl.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Type-Type.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Closure.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Hoisting.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-PADict.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils-Poly.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Utils.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Var.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise-Vect.html
+share/doc/ghc/html/libraries/${PKGNAME}/Vectorise.html
+share/doc/ghc/html/libraries/${PKGNAME}/WorkWrap.html
+share/doc/ghc/html/libraries/${PKGNAME}/WwLib.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-RegInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/X86-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-124.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-36.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-42.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-43.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-45.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-47.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-60.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-61.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-62.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-95.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-A.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-All.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-B.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-C.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-D.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-E.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-F.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-G.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-H.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-I.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-J.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-K.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-L.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-M.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-N.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-O.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-P.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Q.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-R.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-S.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-T.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-U.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-V.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-W.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-X.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Y.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index-Z.html
+share/doc/ghc/html/libraries/${PKGNAME}/doc-index.html
+share/doc/ghc/html/libraries/${PKGNAME}/frames.html
+share/doc/ghc/html/libraries/${PKGNAME}/ghc.haddock
+share/doc/ghc/html/libraries/${PKGNAME}/ghc.haddock.t
+share/doc/ghc/html/libraries/${PKGNAME}/ghc.txt
+share/doc/ghc/html/libraries/${PKGNAME}/haddock-util.js
+share/doc/ghc/html/libraries/${PKGNAME}/hslogo-16.png
+share/doc/ghc/html/libraries/${PKGNAME}/index-frames.html
+share/doc/ghc/html/libraries/${PKGNAME}/index.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Annotations.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_AsmCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Avail.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Bag.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BasicTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BinIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Binary.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Bitmap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BlockId.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BreakArray.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BufWrite.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_BuildTyCl.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeAsm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeInstr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeItbls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ByteCodeLink.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CLabel.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CSE.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgBindery.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCallConv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCase.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgClosure.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgExtCode.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgForeignCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgHeapery.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgHpc.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgInfoTbls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgLetNoEscape.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgParallel.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgPrimOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgProf.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgStackery.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgTailCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgTicky.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CgUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Check.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Class.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ClosureInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmdLineParser.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Cmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmBuildInfoTables.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCallConv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCommonBlockElim.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmContFlowOpt.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmCvt.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLayoutStack.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLex.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmLive.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmMachOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmNode.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmOpt.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmParse.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmPipeline.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmProcPoint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmRewriteAssignments.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmSink.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmType.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CodeOutput.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Coercion.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Config.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Constants.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Convert.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreArity.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreFVs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CorePrep.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreSubst.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreTidy.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreToStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreUnfold.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CoreUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_CostCentre.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Coverage.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Ctype.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DataCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Debugger.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DebuggerUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Demand.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Desugar.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Digraph.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DmdAnal.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverMkDepend.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverPhases.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DriverPipeline.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsArrows.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsCCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsGRHSs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsListComp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsMeta.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DsUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DynFlags.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_DynamicLoading.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Encoding.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ErrUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Exception.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FamInst.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FamInstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FastBool.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FastFunctions.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FastMutInt.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FastString.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FastTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Finder.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Fingerprint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FiniteMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FlagChecker.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FloatIn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FloatOut.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ForeignCall.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_FunDeps.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GHC.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcMake.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GhcPlugins.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphColor.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphOps.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_GraphPpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HaddockUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HeaderInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Hoopl-Dataflow.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Hoopl.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsDoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsImpExp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsLit.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HsUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HscMain.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HscStats.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_HscTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_IOEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Id.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_IdInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_IfaceType.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Inst.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_InstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Instruction.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_InteractiveEval.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Kind.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LexCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Lexer.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LibFFI.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LiberateCase.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Linker.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ListSetOps.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Literal.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-AbsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-PpLlvm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm-Types.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Llvm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Data.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmCodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LlvmMangler.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_LoadIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Match.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MatchCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MatchLit.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Maybes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MkCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MkExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MkGraph.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MkId.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MkIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Module.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_MonadUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_NCGMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Name.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_NameEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_NameSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ObjLink.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OccName.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OccurAnal.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmmLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OldCmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OldPprCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OptCoercion.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_OrdList.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Outputable.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PIC.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-RegInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PPC-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PackageConfig.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Packages.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Pair.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Panic.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Parser.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ParserCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ParserCoreUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Platform.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprC.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmmDecl.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprExternalCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PprTyThing.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelNames.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PrelRules.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Pretty.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_PrimOp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_ProfInit.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RdrHsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RdrName.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Reg.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-ArchBase.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-ArchX86.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Coalesce.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Main.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Spill.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-SpillClean.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-SpillCost.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-Stats.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Graph-TrivColorable.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-JoinToTargets.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Main.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-PPC-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-SPARC-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-StackMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-State.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-Stats.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Linear-X86-FreeRegs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegAlloc-Liveness.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RegClass.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnHsDoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnNames.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnSource.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RnTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_RtClosureInspect.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Rules.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SAT.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SCCfinal.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SMRep.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-AddrMode.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Amode.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-CondCode.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Expand.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Gen32.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Gen64.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen-Sanity.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Imm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-RegPlate.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-ShortcutJump.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SPARC-Stack.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SRT.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Serialized.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SetLevels.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplCore.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SimplUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Simplify.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Size.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SpecConstr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Specialise.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SrcLoc.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_State.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StaticFlagParser.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StaticFlags.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmBind.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmClosure.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmGran.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmHeap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmHpc.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmLayout.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmProf.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmTicky.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgCmmUtils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgLint.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgStats.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StgSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Stream.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_StringBuffer.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_SysTools.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TargetReg.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcAnnotations.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcArrows.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcBinds.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcCanonical.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcClassDcl.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcDefaults.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcDeriv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcErrors.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcEvidence.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcExpr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcForeign.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcGenDeriv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcGenGenerics.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcHsSyn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcHsType.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcIface.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcInstDcls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcInteract.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcMType.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcMatches.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcPat.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnDriver.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRnTypes.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcRules.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSMonad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSimplify.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcSplice.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcTyClsDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcTyDecls.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcType.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TcUnify.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TidyPgm.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TrieMap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TyCon.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Type.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TysPrim.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_TysWiredIn.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_UnariseStg.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Unify.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqFM.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_UniqSupply.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Unique.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Util.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Var.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_VarEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_VarSet.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins-Initialise.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Builtins.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Convert.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Env.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Exp.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-Description.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PADict.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PAMethods.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Generic-PData.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Global.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-InstEnv.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Local.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad-Naming.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Monad.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Classify.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Env.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-TyConDecl.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Type-Type.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Base.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Closure.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Hoisting.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-PADict.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils-Poly.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Utils.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Var.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise-Vect.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_Vectorise.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_WorkWrap.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_WwLib.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-CodeGen.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Cond.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Instr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Ppr.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-RegInfo.html
+share/doc/ghc/html/libraries/${PKGNAME}/mini_X86-Regs.html
+share/doc/ghc/html/libraries/${PKGNAME}/minus.gif
+share/doc/ghc/html/libraries/${PKGNAME}/ocean.css
+share/doc/ghc/html/libraries/${PKGNAME}/plus.gif
+share/doc/ghc/html/libraries/${PKGNAME}/synopsis.png
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-CString.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Debug.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Magic.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Prim.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-PrimopWrappers.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Tuple.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/GHC-Types.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/LICENSE
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-42.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-43.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-45.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-47.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-60.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-61.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-62.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-A.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-All.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-B.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-C.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-D.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-E.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-F.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-G.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-I.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-K.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-L.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-M.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-N.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-O.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-P.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-Q.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-R.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-S.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-T.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-U.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-W.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-X.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index-Y.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/doc-index.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/frames.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.haddock
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.haddock.t
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ghc-prim.txt
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/haddock-util.js
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/index-frames.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/index.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-CString.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Debug.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Magic.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Prim.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-PrimopWrappers.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Tuple.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/mini_GHC-Types.html
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/minus.gif
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/ocean.css
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/plus.gif
+share/doc/ghc/html/libraries/ghc-prim-0.3.0.0/synopsis.png
+share/doc/ghc/html/libraries/haddock-util.js
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Control-Monad.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Array.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Bits.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Char.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Complex.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Int.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Ix.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-List.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Maybe.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Ratio.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Data-Word.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-String.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C-Types.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-C.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-ForeignPtr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Alloc.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Array.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal-Utils.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Marshal.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Ptr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-StablePtr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign-Storable.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Foreign.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/LICENSE
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Numeric.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/Prelude.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-Environment.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-Exit.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-IO-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/System-IO.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-124.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-33.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-36.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-37.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-38.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-42.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-43.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-45.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-46.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-47.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-58.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-60.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-61.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-62.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-92.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-94.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-A.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-All.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-B.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-C.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-D.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-E.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-F.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-G.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-H.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-I.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-J.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-L.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-M.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-N.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-O.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-P.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-Q.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-R.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-S.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-T.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-U.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-V.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-W.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-X.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index-Z.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/doc-index.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/frames.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haddock-util.js
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.haddock
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.haddock.t
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/haskell2010.txt
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/hslogo-16.png
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/index-frames.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/index.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Control-Monad.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Array.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Bits.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Char.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Complex.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Int.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Ix.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-List.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Maybe.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Ratio.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Data-Word.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-String.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C-Types.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-C.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-ForeignPtr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Alloc.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Array.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal-Utils.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Marshal.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Ptr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-StablePtr.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign-Storable.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Foreign.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Numeric.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_Prelude.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-Environment.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-Exit.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-IO-Error.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/mini_System-IO.html
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/minus.gif
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/ocean.css
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/plus.gif
+share/doc/ghc/html/libraries/haskell2010-1.1.1.0/synopsis.png
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Array.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Bits.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/CError.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/CForeign.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/CPUTime.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/CString.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/CTypes.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Char.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Complex.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Directory.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/ForeignPtr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/IO.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Int.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ix.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/LICENSE
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/List.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Locale.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalAlloc.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalArray.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalError.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/MarshalUtils.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Maybe.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Monad.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Numeric.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Prelude.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ptr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Random.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Ratio.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/StablePtr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Storable.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/System.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Time.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/Word.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-124.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-33.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-36.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-37.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-38.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-42.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-43.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-45.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-46.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-47.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-58.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-60.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-61.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-62.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-92.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-94.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-A.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-All.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-B.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-C.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-D.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-E.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-F.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-G.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-H.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-I.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-J.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-L.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-M.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-N.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-O.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-P.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-Q.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-R.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-S.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-T.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-U.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-V.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-W.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-X.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index-Z.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/doc-index.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/frames.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/haddock-util.js
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.haddock
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.haddock.t
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/haskell98.txt
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/hslogo-16.png
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/index-frames.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/index.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Array.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Bits.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CError.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CForeign.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CPUTime.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CString.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_CTypes.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Char.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Complex.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Directory.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_ForeignPtr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_IO.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Int.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ix.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_List.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Locale.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalAlloc.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalArray.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalError.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_MarshalUtils.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Maybe.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Monad.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Numeric.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Prelude.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ptr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Random.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Ratio.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_StablePtr.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Storable.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_System.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Time.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/mini_Word.html
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/minus.gif
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/ocean.css
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/plus.gif
+share/doc/ghc/html/libraries/haskell98-2.0.0.2/synopsis.png
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Internals.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Passes-DList.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Passes-Dominator.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl-Wrappers.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/Compiler-Hoopl.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/LICENSE
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-124.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-60.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-A.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-All.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-B.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-C.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-D.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-E.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-F.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-G.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-H.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-I.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-J.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-K.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-L.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-M.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-N.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-O.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-P.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-R.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-S.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-T.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-U.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index-W.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/doc-index.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/frames.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/haddock-util.js
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.haddock
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.haddock.t
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/hoopl.txt
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/index-frames.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/index.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Internals.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Passes-DList.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Passes-Dominator.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl-Wrappers.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/mini_Compiler-Hoopl.html
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/minus.gif
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/ocean.css
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/plus.gif
+share/doc/ghc/html/libraries/hoopl-3.9.0.0/synopsis.png
+share/doc/ghc/html/libraries/hpc-0.6.0.0/LICENSE
+share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Mix.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Reflect.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Tix.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/Trace-Hpc-Util.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/doc-index.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/frames.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/haddock-util.js
+share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.haddock
+share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.haddock.t
+share/doc/ghc/html/libraries/hpc-0.6.0.0/hpc.txt
+share/doc/ghc/html/libraries/hpc-0.6.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/hpc-0.6.0.0/index-frames.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/index.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Mix.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Reflect.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Tix.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/mini_Trace-Hpc-Util.html
+share/doc/ghc/html/libraries/hpc-0.6.0.0/minus.gif
+share/doc/ghc/html/libraries/hpc-0.6.0.0/ocean.css
+share/doc/ghc/html/libraries/hpc-0.6.0.0/plus.gif
+share/doc/ghc/html/libraries/hpc-0.6.0.0/synopsis.png
+share/doc/ghc/html/libraries/hslogo-16.png
+share/doc/ghc/html/libraries/index-frames.html
+share/doc/ghc/html/libraries/index.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/GHC-Integer-GMP-Internals.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/GHC-Integer-Logarithms.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/LICENSE
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/doc-index.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/frames.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/haddock-util.js
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/index-frames.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/index.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.haddock
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.haddock.t
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/integer-gmp.txt
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/mini_GHC-Integer-GMP-Internals.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/mini_GHC-Integer-Logarithms.html
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/minus.gif
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/ocean.css
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/plus.gif
+share/doc/ghc/html/libraries/integer-gmp-0.5.0.0/synopsis.png
+share/doc/ghc/html/libraries/minus.gif
+share/doc/ghc/html/libraries/ocean.css
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/LICENSE
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/System-Locale.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/doc-index.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/frames.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/haddock-util.js
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/hslogo-16.png
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/index-frames.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/index.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/mini_System-Locale.html
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/minus.gif
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/ocean.css
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.haddock
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.haddock.t
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/old-locale.txt
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/plus.gif
+share/doc/ghc/html/libraries/old-locale-1.0.0.5/synopsis.png
+share/doc/ghc/html/libraries/old-time-1.1.0.1/LICENSE
+share/doc/ghc/html/libraries/old-time-1.1.0.1/System-Time.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/doc-index.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/frames.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/haddock-util.js
+share/doc/ghc/html/libraries/old-time-1.1.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/old-time-1.1.0.1/index-frames.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/index.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/mini_System-Time.html
+share/doc/ghc/html/libraries/old-time-1.1.0.1/minus.gif
+share/doc/ghc/html/libraries/old-time-1.1.0.1/ocean.css
+share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.haddock
+share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.haddock.t
+share/doc/ghc/html/libraries/old-time-1.1.0.1/old-time.txt
+share/doc/ghc/html/libraries/old-time-1.1.0.1/plus.gif
+share/doc/ghc/html/libraries/old-time-1.1.0.1/synopsis.png
+share/doc/ghc/html/libraries/plus.gif
+share/doc/ghc/html/libraries/pretty-1.1.1.0/LICENSE
+share/doc/ghc/html/libraries/pretty-1.1.1.0/Text-PrettyPrint-HughesPJ.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/Text-PrettyPrint.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/doc-index.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/frames.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/haddock-util.js
+share/doc/ghc/html/libraries/pretty-1.1.1.0/hslogo-16.png
+share/doc/ghc/html/libraries/pretty-1.1.1.0/index-frames.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/index.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/mini_Text-PrettyPrint-HughesPJ.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/mini_Text-PrettyPrint.html
+share/doc/ghc/html/libraries/pretty-1.1.1.0/minus.gif
+share/doc/ghc/html/libraries/pretty-1.1.1.0/ocean.css
+share/doc/ghc/html/libraries/pretty-1.1.1.0/plus.gif
+share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.haddock
+share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.haddock.t
+share/doc/ghc/html/libraries/pretty-1.1.1.0/pretty.txt
+share/doc/ghc/html/libraries/pretty-1.1.1.0/synopsis.png
+share/doc/ghc/html/libraries/process-1.1.0.2/LICENSE
+share/doc/ghc/html/libraries/process-1.1.0.2/System-Cmd.html
+share/doc/ghc/html/libraries/process-1.1.0.2/System-Process.html
+share/doc/ghc/html/libraries/process-1.1.0.2/doc-index.html
+share/doc/ghc/html/libraries/process-1.1.0.2/frames.html
+share/doc/ghc/html/libraries/process-1.1.0.2/haddock-util.js
+share/doc/ghc/html/libraries/process-1.1.0.2/hslogo-16.png
+share/doc/ghc/html/libraries/process-1.1.0.2/index-frames.html
+share/doc/ghc/html/libraries/process-1.1.0.2/index.html
+share/doc/ghc/html/libraries/process-1.1.0.2/mini_System-Cmd.html
+share/doc/ghc/html/libraries/process-1.1.0.2/mini_System-Process.html
+share/doc/ghc/html/libraries/process-1.1.0.2/minus.gif
+share/doc/ghc/html/libraries/process-1.1.0.2/ocean.css
+share/doc/ghc/html/libraries/process-1.1.0.2/plus.gif
+share/doc/ghc/html/libraries/process-1.1.0.2/process.haddock
+share/doc/ghc/html/libraries/process-1.1.0.2/process.haddock.t
+share/doc/ghc/html/libraries/process-1.1.0.2/process.txt
+share/doc/ghc/html/libraries/process-1.1.0.2/synopsis.png
+share/doc/ghc/html/libraries/prologue.txt
+share/doc/ghc/html/libraries/synopsis.png
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/LICENSE
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Lib.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Ppr.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-PprLib.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Quote.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH-Syntax.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/Language-Haskell-TH.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-36.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-60.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-A.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-All.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-B.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-C.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-D.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-E.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-F.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-G.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-H.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-I.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-J.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-K.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-L.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-M.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-N.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-O.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-P.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-Q.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-R.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-S.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-T.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-U.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-V.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index-W.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/doc-index.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/frames.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/haddock-util.js
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/hslogo-16.png
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/index-frames.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/index.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Lib.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Ppr.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-PprLib.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Quote.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH-Syntax.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/mini_Language-Haskell-TH.html
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/minus.gif
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/ocean.css
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/plus.gif
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/synopsis.png
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.haddock
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.haddock.t
+share/doc/ghc/html/libraries/template-haskell-2.8.0.0/template-haskell.txt
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-Easter.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-Julian.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-MonthDay.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-OrdinalDate.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar-WeekDate.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Calendar.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock-POSIX.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock-TAI.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Clock.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-Format.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time-LocalTime.html
+share/doc/ghc/html/libraries/time-1.4.0.1/Data-Time.html
+share/doc/ghc/html/libraries/time-1.4.0.1/LICENSE
+share/doc/ghc/html/libraries/time-1.4.0.1/doc-index.html
+share/doc/ghc/html/libraries/time-1.4.0.1/frames.html
+share/doc/ghc/html/libraries/time-1.4.0.1/haddock-util.js
+share/doc/ghc/html/libraries/time-1.4.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/time-1.4.0.1/index-frames.html
+share/doc/ghc/html/libraries/time-1.4.0.1/index.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-Easter.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-Julian.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-MonthDay.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-OrdinalDate.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar-WeekDate.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Calendar.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock-POSIX.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock-TAI.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Clock.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-Format.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time-LocalTime.html
+share/doc/ghc/html/libraries/time-1.4.0.1/mini_Data-Time.html
+share/doc/ghc/html/libraries/time-1.4.0.1/minus.gif
+share/doc/ghc/html/libraries/time-1.4.0.1/ocean.css
+share/doc/ghc/html/libraries/time-1.4.0.1/plus.gif
+share/doc/ghc/html/libraries/time-1.4.0.1/synopsis.png
+share/doc/ghc/html/libraries/time-1.4.0.1/time.haddock
+share/doc/ghc/html/libraries/time-1.4.0.1/time.haddock.t
+share/doc/ghc/html/libraries/time-1.4.0.1/time.txt
+share/doc/ghc/html/libraries/unix-2.6.0.1/LICENSE
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-ByteString-FilePath.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Directory-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Directory.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Module-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Module.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker-Prim.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-DynamicLinker.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Env-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Env.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Error.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Files-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Files.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-IO-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-IO.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process-Internals.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Process.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Resource.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Semaphore.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-SharedMem.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Signals-Exts.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Signals.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Temp-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Temp.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Terminal-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Terminal.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Time.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-Unistd.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix-User.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/System-Posix.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-A.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-All.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-B.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-C.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-D.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-E.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-F.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-G.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-H.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-I.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-J.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-K.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-L.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-M.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-N.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-O.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-P.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-Q.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-R.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-S.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-T.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-U.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-V.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index-W.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/doc-index.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/frames.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/haddock-util.js
+share/doc/ghc/html/libraries/unix-2.6.0.1/hslogo-16.png
+share/doc/ghc/html/libraries/unix-2.6.0.1/index-frames.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/index.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-ByteString-FilePath.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Directory-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Directory.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Module-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Module.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker-Prim.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-DynamicLinker.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Env-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Env.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Error.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Files-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Files.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-IO-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-IO.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process-Internals.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Process.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Resource.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Semaphore.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-SharedMem.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Signals-Exts.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Signals.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Temp-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Temp.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Terminal-ByteString.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Terminal.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Time.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-Unistd.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix-User.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/mini_System-Posix.html
+share/doc/ghc/html/libraries/unix-2.6.0.1/minus.gif
+share/doc/ghc/html/libraries/unix-2.6.0.1/ocean.css
+share/doc/ghc/html/libraries/unix-2.6.0.1/plus.gif
+share/doc/ghc/html/libraries/unix-2.6.0.1/synopsis.png
+share/doc/ghc/html/libraries/unix-2.6.0.1/unix.haddock
+share/doc/ghc/html/libraries/unix-2.6.0.1/unix.haddock.t
+share/doc/ghc/html/libraries/unix-2.6.0.1/unix.txt
+share/doc/ghc/html/users_guide/License.html
+share/doc/ghc/html/users_guide/an-external-representation-for-the-ghc-core-language-for-ghc-6.10.html
+share/doc/ghc/html/users_guide/arrow-notation.html
+share/doc/ghc/html/users_guide/assertions.html
+share/doc/ghc/html/users_guide/bang-patterns.html
+share/doc/ghc/html/users_guide/bug-reporting.html
+share/doc/ghc/html/users_guide/bugs-and-infelicities.html
+share/doc/ghc/html/users_guide/bugs.html
+share/doc/ghc/html/users_guide/ch04s02.html
+share/doc/ghc/html/users_guide/code-generators.html
+share/doc/ghc/html/users_guide/compiler-plugins.html
+share/doc/ghc/html/users_guide/constraint-kind.html
+share/doc/ghc/html/users_guide/data-type-extensions.html
+share/doc/ghc/html/users_guide/defer-type-errors.html
+share/doc/ghc/html/users_guide/deriving.html
+share/doc/ghc/html/users_guide/equality-constraints.html
+share/doc/ghc/html/users_guide/ext-core.html
+share/doc/ghc/html/users_guide/extending-ghc.html
+share/doc/ghc/html/users_guide/external-grammar-of-core.html
+share/doc/ghc/html/users_guide/faster.html
+share/doc/ghc/html/users_guide/ffi-ghc.html
+share/doc/ghc/html/users_guide/ffi.html
+share/doc/ghc/html/users_guide/file-suffixes.html
+share/doc/ghc/html/users_guide/flag-reference.html
+share/doc/ghc/html/users_guide/fptools.css
+share/doc/ghc/html/users_guide/generic-classes.html
+share/doc/ghc/html/users_guide/generic-programming.html
+share/doc/ghc/html/users_guide/ghc-as-a-library.html
+share/doc/ghc/html/users_guide/ghc-language-features.html
+share/doc/ghc/html/users_guide/ghci-commands.html
+share/doc/ghc/html/users_guide/ghci-compiled.html
+share/doc/ghc/html/users_guide/ghci-cygwin.html
+share/doc/ghc/html/users_guide/ghci-debugger.html
+share/doc/ghc/html/users_guide/ghci-dot-files.html
+share/doc/ghc/html/users_guide/ghci-faq.html
+share/doc/ghc/html/users_guide/ghci-invocation.html
+share/doc/ghc/html/users_guide/ghci-obj.html
+share/doc/ghc/html/users_guide/ghci-set.html
+share/doc/ghc/html/users_guide/ghci-windows.html
+share/doc/ghc/html/users_guide/ghci.html
+share/doc/ghc/html/users_guide/hp2ps.html
+share/doc/ghc/html/users_guide/hpc.html
+share/doc/ghc/html/users_guide/hsc2hs.html
+share/doc/ghc/html/users_guide/index.html
+share/doc/ghc/html/users_guide/informal-semantics.html
+share/doc/ghc/html/users_guide/interactive-evaluation.html
+share/doc/ghc/html/users_guide/introduction-GHC.html
+share/doc/ghc/html/users_guide/ix01.html
+share/doc/ghc/html/users_guide/kind-polymorphism.html
+share/doc/ghc/html/users_guide/lang-parallel.html
+share/doc/ghc/html/users_guide/library-differences.html
+share/doc/ghc/html/users_guide/loading-source-files.html
+share/doc/ghc/html/users_guide/mailing-lists-GHC.html
+share/doc/ghc/html/users_guide/modes.html
+share/doc/ghc/html/users_guide/monomorphism.html
+share/doc/ghc/html/users_guide/options-debugging.html
+share/doc/ghc/html/users_guide/options-help.html
+share/doc/ghc/html/users_guide/options-optimise.html
+share/doc/ghc/html/users_guide/options-phases.html
+share/doc/ghc/html/users_guide/options-platform.html
+share/doc/ghc/html/users_guide/options-sanity.html
+share/doc/ghc/html/users_guide/other-type-extensions.html
+share/doc/ghc/html/users_guide/packages.html
+share/doc/ghc/html/users_guide/pragmas.html
+share/doc/ghc/html/users_guide/primitive-module.html
+share/doc/ghc/html/users_guide/primitives.html
+share/doc/ghc/html/users_guide/prof-compiler-options.html
+share/doc/ghc/html/users_guide/prof-heap.html
+share/doc/ghc/html/users_guide/prof-threaded.html
+share/doc/ghc/html/users_guide/prof-time-options.html
+share/doc/ghc/html/users_guide/prof_scc.png
+share/doc/ghc/html/users_guide/profiling.html
+share/doc/ghc/html/users_guide/promotion.html
+share/doc/ghc/html/users_guide/release-7-6-1.html
+share/doc/ghc/html/users_guide/release-7-6-2.html
+share/doc/ghc/html/users_guide/release-7-6-3.html
+share/doc/ghc/html/users_guide/rewrite-rules.html
+share/doc/ghc/html/users_guide/runghc.html
+share/doc/ghc/html/users_guide/runtime-control.html
+share/doc/ghc/html/users_guide/safe-haskell.html
+share/doc/ghc/html/users_guide/separate-compilation.html
+share/doc/ghc/html/users_guide/smaller.html
+share/doc/ghc/html/users_guide/sooner-faster-quicker.html
+share/doc/ghc/html/users_guide/special-ids.html
+share/doc/ghc/html/users_guide/static-dynamic-flags.html
+share/doc/ghc/html/users_guide/syntax-extns.html
+share/doc/ghc/html/users_guide/template-haskell.html
+share/doc/ghc/html/users_guide/terminal-interaction.html
+share/doc/ghc/html/users_guide/thriftier.html
+share/doc/ghc/html/users_guide/ticky-ticky.html
+share/doc/ghc/html/users_guide/type-class-extensions.html
+share/doc/ghc/html/users_guide/type-families.html
+share/doc/ghc/html/users_guide/using-concurrent.html
+share/doc/ghc/html/users_guide/using-ghc.html
+share/doc/ghc/html/users_guide/using-shared-libs.html
+share/doc/ghc/html/users_guide/using-smp.html
+share/doc/ghc/html/users_guide/utils.html
+share/doc/ghc/html/users_guide/version-numbering.html
+share/doc/ghc/html/users_guide/win32-dlls.html
+share/doc/ghc/html/users_guide/win32.html
+share/doc/ghc/html/users_guide/wrong-compilee.html
+share/doc/ghc/html/users_guide/wrong.html
diff --git a/lang/ghc7/TODO b/lang/ghc7/TODO
new file mode 100644
index 00000000000..31d0f86838b
--- /dev/null
+++ b/lang/ghc7/TODO
@@ -0,0 +1,30 @@
+.. -*- rst -*-
+
+wip/ghc TODO
+============
+
+* Modify configure.ac and rules/build-package-data.mk to allow
+ ``--with-curses-{includes,libraries}`` to be passed to the top-level
+ ``configure``, and send a patch to the upstream.
+* Add the following ``./configure`` flags to eliminate
+ ``patch-Makefile`` and ``patch-ghc.mk``:
+
+ * ``--with-dist-archiver={bzip2,xz} [default=bzip2]``
+ * ``BZIP2FLAGS``
+ * ``XZFLAGS``
+
+* Let ``./configure`` check for broken binutils and provide a better
+ fix for ``patch-rts_StgCRun.c``.
+* Build more bootstrapping compilers to support more platforms.
+
+
+How to build a bootstrapping compiler
+-------------------------------------
+
+You need a working compiler to build one. If you think there are no
+bindists for your platform, you may need to cross-build a compiler
+yourself: `Cross-compiling GHC
+<http://hackage.haskell.org/trac/ghc/wiki/Building/CrossCompiling>`_
+
+Assuming you have a working ghc in your PATH, just run ``bmake patch
+&& bmake bootstrap`` and see if you are lucky enough.
diff --git a/lang/ghc7/bootstrap.mk b/lang/ghc7/bootstrap.mk
new file mode 100644
index 00000000000..a7b7cc1ea38
--- /dev/null
+++ b/lang/ghc7/bootstrap.mk
@@ -0,0 +1,138 @@
+# $NetBSD: bootstrap.mk,v 1.1 2013/12/12 12:47:17 obache Exp $
+# -----------------------------------------------------------------------------
+# Select a bindist of bootstrapping compiler based on a per-platform
+# basis.
+#
+# BOOT_ARCHIVE
+# This variable is set to the name of compressed archive file of a
+# bootstrapping compiler for the current platform.
+#
+# BOOT_TARBALL
+# Similar to BOOT_ARCHIVE, but "*.tar" not "*.tar.xz".
+#
+.include "../../mk/bsd.prefs.mk"
+.if ${MACHINE_ARCH} == "i386" && ${OPSYS} == "FreeBSD"
+BOOT_ARCHIVE= ${DISTNAME}-boot-i386-unknown-freebsd.tar.xz
+
+.elif ${MACHINE_ARCH} == "i386" && ${OPSYS} == "NetBSD"
+BOOT_ARCHIVE= ${DISTNAME}-boot-i386-unknown-netbsd.tar.xz
+
+.elif ${MACHINE_ARCH} == "powerpc" && ${OPSYS} == "Darwin"
+BOOT_ARCHIVE= ${DISTNAME}-boot-powerpc-apple-darwin.tar.xz
+# Existence of libelf makes LeadingUnderscore being "NO", which is
+# incorrect for this platform. See ${WRKSRC}/aclocal.m4
+# (FP_LEADING_UNDERSCORE)
+CONFLICTS+= libelf-[0-9]*
+
+.elif ${MACHINE_ARCH} == "x86_64" && ${OPSYS} == "Linux"
+BOOT_ARCHIVE= ${DISTNAME}-boot-x86_64-unknown-linux.tar.xz
+
+.elif ${MACHINE_ARCH} == "x86_64" && ${OPSYS} == "NetBSD"
+BOOT_ARCHIVE= ${DISTNAME}-boot-x86_64-unknown-netbsd.tar.xz
+
+.elif !empty(MACHINE_PLATFORM:MSunOS-5.11-i386)
+BOOT_ARCHIVE= ${DISTNAME}-boot-i386-unknown-solaris2.tar.gz
+
+.elif !empty(MACHINE_PLATFORM:MSunOS-5.11-x86_64)
+BOOT_ARCHIVE= ${DISTNAME}-boot-x86_64-unknown-solaris2.tar.xz
+
+.else
+PKG_FAIL_REASON+= "internal error: unsupported platform"
+.endif
+
+BOOT_TARBALL= ${BOOT_ARCHIVE:C/\.xz$//}
+
+
+# -----------------------------------------------------------------------------
+# The "pre-configure" hook
+#
+# Install a bootstrapping compiler directly into TOOLS_DIR so that
+# ./configure can find it.
+#
+USE_TOOLS+= gmake xzcat xz
+
+pre-configure:
+ @${PHASE_MSG} "Extracting bootstrapping compiler for ${PKGNAME}"
+ ${RUN} ${MKDIR} ${WRKDIR:Q}/build-extract
+ ${RUN} cd ${WRKDIR:Q}/build-extract && \
+ ${EXTRACT_CMD_DEFAULT} ${DISTDIR:Q}/${DIST_SUBDIR:Q}/${BOOT_ARCHIVE}
+
+ @${PHASE_MSG} "Preparing bootstrapping compiler for ${PKGNAME}"
+ ${RUN} cd ${WRKDIR:Q}/build-extract/${DISTNAME}-boot && \
+ ${SH} ./configure \
+ --prefix=${TOOLS_DIR:Q} && \
+ ${MAKE_PROGRAM} install
+
+
+# -----------------------------------------------------------------------------
+# An unusual target "bootstrap"
+#
+# Build a bootstrapping compiler using an already installed GHC. This
+# can certainly impossible if you don't have one. It's absolutely
+# important to build it with the fewest possible run-time
+# dependencies, otherwise the resulting binary can easily get
+# unusable.
+#
+.PHONY: bootstrap
+
+#BUILDLINK_PASSTHRU_DIRS= ${PREFIX}/lib/${DISTNAME}
+
+.if exists(${WRKDIR}/${DISTNAME}/mk/config.mk)
+bootstrap:
+ @${ERROR_MSG} "You have already configured the package in a way\
+ that building bootstrapping compiler is impossible."
+ @${FAIL_MSG} "Please run \"${MAKE} clean patch\" first."
+
+.elif !exists(${WRKDIR}/${DISTNAME}/rts/ghc.mk.orig)
+bootstrap:
+ @${FAIL_MSG} "Please run \"${MAKE} patch\" first."
+
+.else
+bootstrap: ${WRKDIR}/${BOOT_ARCHIVE}
+ @${PHASE_MSG} "Done creating" ${WRKDIR}/${BOOT_ARCHIVE}
+
+${WRKDIR}/lndir:
+ @${PHASE_MSG} "Building lndir(1) to duplicate the source tree."
+ cd ${WRKSRC:Q}/utils/lndir && \
+ ${CC:Q} lndir.c -o ${.TARGET}
+
+${WRKDIR}/stamp-lndir-boot: ${WRKDIR}/lndir
+ @${PHASE_MSG} "Duplicating the source tree for bootstrapping ${DISTNAME}"
+ ${MKDIR} ${WRKDIR:Q}/build-boot
+ cd ${WRKDIR:Q}/build-boot && \
+ ${WRKDIR}/lndir -silent ../${DISTNAME:Q}
+ ${TOUCH} ${.TARGET}
+
+${WRKDIR}/stamp-configure-boot: ${WRKDIR}/stamp-lndir-boot
+ @${PHASE_MSG} "Configuring bootstrapping compiler ${DISTNAME}"
+ ${MKDIR} ${WRKDIR:Q}/build-boot
+ cd ${WRKDIR:Q}/build-boot && \
+ ${PKGSRC_SETENV} PATH=${PATH} \
+ CONF_CC_OPTS_STAGE0=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE0="-L${PREFIX}/lib ${COMPILER_RPATH_FLAG}${PREFIX}/lib" \
+ CONF_LD_LINKER_OPTS_STAGE0="-L${PREFIX}/lib ${LINKER_RPATH_FLAG}${PREFIX}/lib" \
+ CONF_CC_OPTS_STAGE1=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE1="-L${PREFIX}/lib ${COMPILER_RPATH_FLAG}${PREFIX}/lib" \
+ CONF_LD_LINKER_OPTS_STAGE1="-L${PREFIX}/lib ${LINKER_RPATH_FLAG}${PREFIX}/lib" \
+ CONF_CC_OPTS_STAGE2=${CFLAGS:Q} \
+ CONF_GCC_LINKER_OPTS_STAGE2="-L${PREFIX}/lib ${COMPILER_RPATH_FLAG}${PREFIX}/lib" \
+ CONF_LD_LINKER_OPTS_STAGE2="-L${PREFIX}/lib ${LINKER_RPATH_FLAG}${PREFIX}/lib" \
+ ${SH} ./configure && \
+ ${SED} -e "s,@NCURSES_PREFIX@,${BUILDLINK_PREFIX.ncurses:Q},g" /${FILESDIR:Q}/bootstrap.build.mk > mk/build.mk
+ ${TOUCH} ${.TARGET}
+
+${WRKDIR}/stamp-build-boot: ${WRKDIR}/stamp-configure-boot
+ @${PHASE_MSG} "Building bootstrapping compiler ${DISTNAME}"
+ ${RUN} cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD}
+ ${TOUCH} ${.TARGET}
+
+${WRKDIR}/${BOOT_TARBALL}: ${WRKDIR}/stamp-build-boot
+ @${PHASE_MSG} "Creating binary distribution of bootstrapping ${DISTNAME}"
+ ${RUN} cd ${WRKDIR:Q}/build-boot && ${BUILD_MAKE_CMD} binary-dist
+ ${MV} -f ${WRKDIR:Q}/build-boot/${BOOT_TARBALL} ${.TARGET}
+
+# This can take up half an hour. Memory usage is also very high, about 680 MiB.
+${WRKDIR}/${BOOT_ARCHIVE}: ${WRKDIR}/${BOOT_TARBALL}
+ @${PHASE_MSG} "Compressing binary distribution of bootstrapping ${DISTNAME}"
+ ${XZ} --verbose -9 --extreme ${WRKDIR:Q}/${BOOT_TARBALL}
+.endif
diff --git a/lang/ghc7/buildlink3.mk b/lang/ghc7/buildlink3.mk
new file mode 100644
index 00000000000..a66022b9e76
--- /dev/null
+++ b/lang/ghc7/buildlink3.mk
@@ -0,0 +1,16 @@
+# $NetBSD: buildlink3.mk,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+BUILDLINK_TREE+= ghc
+
+.if !defined(GHC_BUILDLINK3_MK)
+GHC_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.ghc+= ghc>=7.6.3
+BUILDLINK_PKGSRCDIR.ghc?= ../../lang/ghc7
+
+.include "../../converters/libiconv/buildlink3.mk"
+.include "../../devel/gmp/buildlink3.mk"
+.include "../../devel/ncurses/buildlink3.mk"
+.endif # GHC_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -ghc
diff --git a/lang/ghc7/distinfo b/lang/ghc7/distinfo
new file mode 100644
index 00000000000..a41059d378e
--- /dev/null
+++ b/lang/ghc7/distinfo
@@ -0,0 +1,19 @@
+$NetBSD: distinfo,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+SHA1 (ghc-7.6.3-boot-i386-unknown-netbsd.tar.xz) = 9fc2f538da69ede96f0754e0cf5d376280c5f2ee
+RMD160 (ghc-7.6.3-boot-i386-unknown-netbsd.tar.xz) = 4f188f1b7ba992cc1a1436aac68d11ef78f7714c
+Size (ghc-7.6.3-boot-i386-unknown-netbsd.tar.xz) = 28258276 bytes
+SHA1 (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = 0d6da7f192a25d154f46554777909f19002a48a3
+RMD160 (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = 9995bf052e5737074692a107d5210663759d796c
+Size (ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz) = 28766012 bytes
+SHA1 (ghc-7.6.3-src.tar.bz2) = 8938e1ef08b37a4caa071fa169e79a3001d065ff
+RMD160 (ghc-7.6.3-src.tar.bz2) = 82a673ed38b7cf9a59afeb01057625fc761a822b
+Size (ghc-7.6.3-src.tar.bz2) = 110763823 bytes
+SHA1 (patch-Makefile) = a6692a4a90b8003a8719c51d82d15f5af0ba1907
+SHA1 (patch-ghc.mk) = c4210aaa3e2b4a319b0b70da375ac89fddde5cb7
+SHA1 (patch-libraries_integer-gmp_configure.ac) = bc5ce3a6c39d681c413eb08b66e7287e39406fe0
+SHA1 (patch-libraries_integer-simple_GHC_Integer.hs) = f079285bc489c194959b9bee2aa5c977ec77ae1e
+SHA1 (patch-libraries_integer-simple_GHC_Integer_Type.hs) = b3140e169726f78f6d3b4edcd4cc119b6f767bfa
+SHA1 (patch-rts_Linker.c) = 86c080636fd9b983baeb05f26a90282ffa6eec34
+SHA1 (patch-rts_StgCRun.c) = dcbc883cb4826aeccac0be09647b7889c7809271
+SHA1 (patch-rts_ghc.mk) = 4dd33c5ac593736a9fa0fdbdd65df90549fac771
diff --git a/lang/ghc7/files/bootstrap.build.mk b/lang/ghc7/files/bootstrap.build.mk
new file mode 100644
index 00000000000..c1cbdb73f21
--- /dev/null
+++ b/lang/ghc7/files/bootstrap.build.mk
@@ -0,0 +1,35 @@
+# -*- makefile-gmake -*-
+#
+# This is a build conf for bootstrapping compilers.
+#
+
+# We don't want any docs.
+HADDOCK_DOCS = NO
+BUILD_DOCBOOK_HTML = NO
+BUILD_DOCBOOK_PS = NO
+BUILD_DOCBOOK_PDF = NO
+BUILD_MAN = NO
+
+# Enabling evil-splitter reduces bindist size, which is good. However
+# it introduces a run-time dependency on perl, which is unacceptable.
+SplitObjs = NO
+
+# We only want vanilla libraries and rts. No profiling, no shared
+# libraries, no debugging, no event logging.
+GhcLibWays = v
+GhcRTSWays =
+
+# I'm not sure disabling GHCi significantly reduces the bindist size,
+# but we don't need it anyway.
+GhcWithInterpreter = NO
+
+# We don't want in-place GMP to be statically linked as it increases
+# the bindist size. Dynamic linkage is even worse.
+INTEGER_LIBRARY = integer-simple
+
+# We'd like to distinguish bootstrapping bindists from normal ones.
+BIN_DIST_NAME = ghc-$(ProjectVersion)-boot
+
+libraries/terminfo_CONFIGURE_OPTS += \
+ --configure-option=--with-curses-includes=@NCURSES_PREFIX@/include \
+ --configure-option=--with-curses-libraries=@NCURSES_PREFIX@/lib
diff --git a/lang/ghc7/patches/patch-Makefile b/lang/ghc7/patches/patch-Makefile
new file mode 100644
index 00000000000..9fdb73006b4
--- /dev/null
+++ b/lang/ghc7/patches/patch-Makefile
@@ -0,0 +1,16 @@
+$NetBSD: patch-Makefile,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+Required by patches/patch-ghc.mk
+
+
+--- Makefile.orig 2013-02-14 02:53:07.000000000 +0000
++++ Makefile
+@@ -75,7 +75,7 @@ binary-dist: binary-dist-prep
+ ifeq "$(mingw32_TARGET_OS)" "1"
+ mv bindistprep/*.exe .
+ endif
+- mv bindistprep/*.tar.bz2 .
++ mv bindistprep/*.tar .
+
+ binary-dist-prep:
+ ifeq "$(mingw32_TARGET_OS)" "1"
diff --git a/lang/ghc7/patches/patch-ghc.mk b/lang/ghc7/patches/patch-ghc.mk
new file mode 100644
index 00000000000..4872592dd68
--- /dev/null
+++ b/lang/ghc7/patches/patch-ghc.mk
@@ -0,0 +1,23 @@
+$NetBSD: patch-ghc.mk,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+We want bootstrapping bindists to be as small as possible, and bzip2
+is not enough:
+
+ % du -sh ghc-*.tar*
+ 291M ghc-7.6.2-boot-powerpc-apple-darwin.tar
+ 60M ghc-7.6.2-boot-powerpc-apple-darwin.tar.bz2
+ 32M ghc-7.6.2-boot-powerpc-apple-darwin.tar.xz
+
+
+--- ghc.mk.orig 2013-02-14 02:24:35.000000000 +0000
++++ ghc.mk
+@@ -1009,7 +1009,8 @@ unix-binary-dist-prep:
+ $(call removeFiles,$(BIN_DIST_PREP_TAR))
+ # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
+ # tree then we want to include the real file, not a symlink to it
+- cd bindistprep && "$(TAR_CMD)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
++ "$(MKDIRHIER)" compiler/stage2/doc # Workaround needed when building no docs.
++ cd bindistprep && "$(TAR_CMD)" hcf ../$(BIN_DIST_PREP_TAR) -T ../$(BIN_DIST_LIST)
+
+ windows-binary-dist-prep:
+ $(call removeTrees,bindistprep/)
diff --git a/lang/ghc7/patches/patch-libraries_integer-gmp_configure.ac b/lang/ghc7/patches/patch-libraries_integer-gmp_configure.ac
new file mode 100644
index 00000000000..27ec8402414
--- /dev/null
+++ b/lang/ghc7/patches/patch-libraries_integer-gmp_configure.ac
@@ -0,0 +1,42 @@
+$NetBSD: patch-libraries_integer-gmp_configure.ac,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+In Darwin, integer-gmp prefers GMP.framework when it happens to be
+installed somewhere in the system, even though it doesn't come with
+Darwin. Let it stop that. (Already fixed in the upstream.)
+
+
+--- libraries/integer-gmp/configure.ac.orig 2013-01-27 13:36:41.000000000 +0000
++++ libraries/integer-gmp/configure.ac
+@@ -45,18 +45,20 @@ dnl-------------------------------------
+ dnl * Mac OS X only: check for GMP.framework
+ dnl--------------------------------------------------------------------
+
+-case $target_os in
+- darwin*)
+- AC_MSG_CHECKING([for GMP.framework])
+- save_libs="$LIBS"
+- LIBS="-framework GMP"
+- AC_TRY_LINK_FUNC(__gmpz_fdiv_qr,
+- [HaveFrameworkGMP=YES; GMP_FRAMEWORK=GMP; GMP_LIBS=],
+- [HaveFrameworkGMP=NO])
+- LIBS="$save_libs"
+- AC_MSG_RESULT([$HaveFrameworkGMP])
+- ;;
+-esac
++if test "$HaveLibGmp" = "NO"; then
++ case $target_os in
++ darwin*)
++ AC_MSG_CHECKING([for GMP.framework])
++ save_libs="$LIBS"
++ LIBS="-framework GMP"
++ AC_TRY_LINK_FUNC(__gmpz_fdiv_qr,
++ [HaveFrameworkGMP=YES; GMP_FRAMEWORK=GMP],
++ [HaveFrameworkGMP=NO])
++ LIBS="$save_libs"
++ AC_MSG_RESULT([$HaveFrameworkGMP])
++ ;;
++ esac
++fi
+
+ AC_CHECK_HEADER([gmp.h], , [HaveFrameworkGMP=NO; HaveLibGmp=NO; GMP_LIBS=])
+
diff --git a/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer.hs b/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer.hs
new file mode 100644
index 00000000000..4dd1fa1b09f
--- /dev/null
+++ b/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer.hs
@@ -0,0 +1,15 @@
+$NetBSD: patch-libraries_integer-simple_GHC_Integer.hs,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+Missing functions: already fixed in the upstream.
+
+
+--- libraries/integer-simple/GHC/Integer.hs.orig 2013-02-13 18:50:32.000000000 +0000
++++ libraries/integer-simple/GHC/Integer.hs
+@@ -27,6 +27,7 @@ module GHC.Integer (
+ plusInteger, minusInteger, timesInteger, negateInteger,
+ eqInteger, neqInteger, absInteger, signumInteger,
+ leInteger, gtInteger, ltInteger, geInteger, compareInteger,
++ divInteger, modInteger,
+ divModInteger, quotRemInteger, quotInteger, remInteger,
+ encodeFloatInteger, decodeFloatInteger, floatFromInteger,
+ encodeDoubleInteger, decodeDoubleInteger, doubleFromInteger,
diff --git a/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer_Type.hs b/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer_Type.hs
new file mode 100644
index 00000000000..08f1bba08f3
--- /dev/null
+++ b/lang/ghc7/patches/patch-libraries_integer-simple_GHC_Integer_Type.hs
@@ -0,0 +1,24 @@
+$NetBSD: patch-libraries_integer-simple_GHC_Integer_Type.hs,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+Missing functions: already fixed in the upstream.
+
+
+--- libraries/integer-simple/GHC/Integer/Type.hs.orig 2013-02-13 18:45:55.000000000 +0000
++++ libraries/integer-simple/GHC/Integer/Type.hs
+@@ -370,6 +370,16 @@ n `divModInteger` d =
+ then (# q `minusInteger` oneInteger, r `plusInteger` d #)
+ else (# q, r #)
+
++{-# NOINLINE divInteger #-}
++divInteger :: Integer -> Integer -> Integer
++n `divInteger` d = quotient
++ where (# quotient, _ #) = n `divModInteger` d
++
++{-# NOINLINE modInteger #-}
++modInteger :: Integer -> Integer -> Integer
++n `modInteger` d = modulus
++ where (# _, modulus #) = n `divModInteger` d
++
+ {-# NOINLINE quotRemInteger #-}
+ quotRemInteger :: Integer -> Integer -> (# Integer, Integer #)
+ Naught `quotRemInteger` (!_) = (# Naught, Naught #)
diff --git a/lang/ghc7/patches/patch-rts_Linker.c b/lang/ghc7/patches/patch-rts_Linker.c
new file mode 100644
index 00000000000..d8551d8f5af
--- /dev/null
+++ b/lang/ghc7/patches/patch-rts_Linker.c
@@ -0,0 +1,26 @@
+$NetBSD: patch-rts_Linker.c,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+Support 64-bit x86 SunOS.
+
+--- rts/Linker.c.orig 2013-04-18 21:22:46.000000000 +0000
++++ rts/Linker.c
+@@ -75,7 +75,8 @@
+ ( defined(linux_HOST_OS) || defined(freebsd_HOST_OS) || \
+ defined(dragonfly_HOST_OS) || defined(netbsd_HOST_OS ) || \
+ defined(openbsd_HOST_OS ) || defined(darwin_HOST_OS ) || \
+- defined(kfreebsdgnu_HOST_OS) || defined(gnu_HOST_OS)))
++ defined(kfreebsdgnu_HOST_OS) || defined(gnu_HOST_OS) || \
++ defined(solari2_HOST_OS)))
+ /* Don't use mmap on powerpc_HOST_ARCH as mmap doesn't support
+ * reallocating but we need to allocate jump islands just after each
+ * object images. Otherwise relative branches to jump islands can fail
+@@ -4014,6 +4015,9 @@ ocResolve_PEi386 ( ObjectCode* oc )
+ # define ELF_TARGET_386 /* Used inside <elf.h> */
+ #elif defined(x86_64_HOST_ARCH)
+ # define ELF_TARGET_X64_64
++# if defined(solaris2_HOST_OS)
++# define ELF_TARGET_AMD64
++# endif
+ # define ELF_64BIT
+ #endif
+
diff --git a/lang/ghc7/patches/patch-rts_StgCRun.c b/lang/ghc7/patches/patch-rts_StgCRun.c
new file mode 100644
index 00000000000..849971ca85b
--- /dev/null
+++ b/lang/ghc7/patches/patch-rts_StgCRun.c
@@ -0,0 +1,31 @@
+$NetBSD: patch-rts_StgCRun.c,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+We have to make the visiblity of StgRun and StgReturn to "hidden" not
+to trigger a bug in old binutils which results in:
+
+ ld: rts/dist/build/RtsStartup.dyn_o: relocation R_X86_64_PC32
+ against `StgRun' can not be used when making a shared object;
+ recompile with -fPIC
+
+With this workaround we can no longer override those two symbols using
+LD_PRELOAD, but I think there is no reason to do so anyway.
+
+
+--- rts/StgCRun.c.orig 2013-01-27 13:21:52.000000000 +0000
++++ rts/StgCRun.c
+@@ -246,6 +246,7 @@ StgRunIsImplementedInAssembler(void)
+ * save callee-saves registers on behalf of the STG code.
+ */
+ ".globl " STG_RUN "\n"
++ ".hidden " STG_RUN "\n"
+ STG_RUN ":\n\t"
+ "subq %1, %%rsp\n\t"
+ "movq %%rsp, %%rax\n\t"
+@@ -280,6 +281,7 @@ StgRunIsImplementedInAssembler(void)
+ "jmp *%%rax\n\t"
+
+ ".globl " STG_RETURN "\n"
++ ".hidden " STG_RETURN "\n"
+ STG_RETURN ":\n\t"
+
+ "movq %%rbx, %%rax\n\t" /* Return value in R1 */
diff --git a/lang/ghc7/patches/patch-rts_ghc.mk b/lang/ghc7/patches/patch-rts_ghc.mk
new file mode 100644
index 00000000000..674058840ed
--- /dev/null
+++ b/lang/ghc7/patches/patch-rts_ghc.mk
@@ -0,0 +1,22 @@
+$NetBSD: patch-rts_ghc.mk,v 1.1 2013/12/12 12:47:17 obache Exp $
+
+This is pkgsrc specific: dtrace(1) gets confused when we have gcc
+wrappers in the PATH so we have to hide them:
+
+ gcc: installation problem, cannot exec '/usr/pkgsrc/wip/ghc/work/.gcc/bin/p
+ owerpc-apple-darwin9-gcc-4.0.1': No such file or directory
+ dtrace: failed to compile script rts/RtsProbes.d: Preprocessor failed to pr
+ ocess input program
+
+
+--- rts/ghc.mk.orig 2013-01-27 13:21:52.000000000 +0000
++++ rts/ghc.mk
+@@ -484,7 +484,7 @@ endif
+
+ DTRACEPROBES_SRC = rts/RtsProbes.d
+ $(DTRACEPROBES_H): $(DTRACEPROBES_SRC) includes/ghcplatform.h | $$(dir $$@)/.
+- "$(DTRACE)" $(filter -I%,$(rts_CC_OPTS)) -C $(DTRACE_FLAGS) -h -o $@ -s $<
++ env PATH="/usr/bin" "$(DTRACE)" $(filter -I%,$(rts_CC_OPTS)) -C $(DTRACE_FLAGS) -h -o $@ -s $<
+ endif
+
+ # -----------------------------------------------------------------------------