From 8d62316b124f3dabf6e3ae342add8e8335e1fbdf Mon Sep 17 00:00:00 2001
From: Ian Lynagh <igloo@earth.li>
Date: Fri, 18 Jul 2008 17:00:47 +0000
Subject: [PATCH] Build hpc with Cabal

---
 Makefile      | 33 ++-------------------------------
 hpc-bin.cabal | 30 ++++++++++++++++++++++++++++++
 2 files changed, 32 insertions(+), 31 deletions(-)
 create mode 100644 hpc-bin.cabal

diff --git a/Makefile b/Makefile
index ac1bf22..0f34de9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,34 +1,5 @@
+
 TOP=../..
 include $(TOP)/mk/boilerplate.mk
+include $(TOP)/mk/cabal.mk
 
-# Beyond stage 1, honour any Mac OS X depolyment target options.  If we use 
-# these options in stage 1 we get a linker error if the bootstrap compiler is
-#  for a more recent OS version
-ifeq "$(stage)" "2"
-SRC_CC_OPTS += $(MACOSX_DEPLOYMENT_CC_OPTS)
-SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS))
-SRC_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS))
-endif
-
-# We have two version: the inplace version compiled by the bootstrap compiler
-#   and the install version compiled by the stage 1 compiler
-ifeq "$(stage)" "2"
-HS_PROG		= hpc$(exeext)
-else
-HS_PROG		= hpc-inplace$(exeext)
-endif
-INSTALL_PROGS  += $(HS_PROG)
-HPC_LIB         = $(TOP)/libraries/hpc
-
-SRC_HC_OPTS += -package hpc -cpp 
-
-ifeq "$(ghc_ge_607)" "YES"
-SRC_HC_OPTS += -package containers
-endif
-
-binary-dist:
-	$(INSTALL_DIR)                $(BIN_DIST_DIR)/utils/hpc
-	$(INSTALL_DATA)    Makefile   $(BIN_DIST_DIR)/utils/hpc/
-	$(INSTALL_PROGRAM) $(HS_PROG) $(BIN_DIST_DIR)/utils/hpc/
-
-include $(TOP)/mk/target.mk
diff --git a/hpc-bin.cabal b/hpc-bin.cabal
new file mode 100644
index 0000000..f980e4d
--- /dev/null
+++ b/hpc-bin.cabal
@@ -0,0 +1,30 @@
+Name: hpc-bin
+-- XXX version number:
+Version: 0.67
+Copyright: XXX
+License: BSD3
+-- XXX License-File: LICENSE
+Author: XXX
+Maintainer: XXX
+Synopsis: XXX
+Description:
+	XXX
+Category: Development
+build-type: Simple
+cabal-version: >=1.2
+
+Flag base3
+    Description: Choose the new smaller, split-up base package.
+
+Executable hpc
+    Main-Is: Hpc.hs
+    if flag(base3)
+        Build-Depends: base       >= 3   && < 4,
+                       directory  >= 1   && < 1.1,
+                       containers >= 0.1 && < 0.2,
+                       array      >= 0.1 && < 0.2
+    else
+        Build-Depends: base < 3
+    Build-Depends: haskell98, hpc
+    Extensions: CPP
+
-- 
GitLab