| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.21 2010/08/07 12:06:27 kolmodin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.29 2012/04/09 18:08:45 slyfox Exp $ |
| 4 | # |
4 | |
|
|
5 | # @ECLASS: haskell-cabal.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Haskell herd <haskell@gentoo.org> |
|
|
8 | # @AUTHOR: |
| 5 | # Original authors: Andres Loeh <kosmikus@gentoo.org> |
9 | # Original author: Andres Loeh <kosmikus@gentoo.org> |
| 6 | # Duncan Coutts <dcoutts@gentoo.org> |
10 | # Original author: Duncan Coutts <dcoutts@gentoo.org> |
| 7 | # Maintained by: Haskell herd <haskell@gentoo.org> |
11 | # @BLURB: for packages that make use of the Haskell Common Architecture for Building Applications and Libraries (cabal) |
| 8 | # |
12 | # @DESCRIPTION: |
| 9 | # This eclass is for packages that make use of the |
|
|
| 10 | # Haskell Common Architecture for Building Applications |
|
|
| 11 | # and Libraries (cabal). |
|
|
| 12 | # |
|
|
| 13 | # Basic instructions: |
13 | # Basic instructions: |
| 14 | # |
14 | # |
| 15 | # Before inheriting the eclass, set CABAL_FEATURES to |
15 | # Before inheriting the eclass, set CABAL_FEATURES to |
| 16 | # reflect the tools and features that the package makes |
16 | # reflect the tools and features that the package makes |
| 17 | # use of. |
17 | # use of. |
| … | |
… | |
| 26 | # profile -- if package supports to build profiling-enabled libraries |
26 | # profile -- if package supports to build profiling-enabled libraries |
| 27 | # bootstrap -- only used for the cabal package itself |
27 | # bootstrap -- only used for the cabal package itself |
| 28 | # bin -- the package installs binaries |
28 | # bin -- the package installs binaries |
| 29 | # lib -- the package installs libraries |
29 | # lib -- the package installs libraries |
| 30 | # nocabaldep -- don't add dependency on cabal. |
30 | # nocabaldep -- don't add dependency on cabal. |
| 31 | # only used for packages that _must_ not pull the dependency |
31 | # only used for packages that _must_ not pull the dependency |
| 32 | # on cabal, but still use this eclass (e.g. haskell-updater). |
32 | # on cabal, but still use this eclass (e.g. haskell-updater). |
| 33 | # |
|
|
| 34 | # Dependencies on other cabal packages have to be specified |
|
|
| 35 | # correctly. |
|
|
| 36 | # |
|
|
| 37 | # Cabal libraries should usually be SLOTted with "${PV}". |
|
|
| 38 | # |
|
|
| 39 | # Many Cabal packages require S to be manually set. |
|
|
| 40 | # |
|
|
| 41 | # Conforming Cabal packages don't require any function definitions |
|
|
| 42 | # in the ebuild. |
|
|
| 43 | # |
|
|
| 44 | # Special flags to Cabal Configure can now be set by using |
|
|
| 45 | # CABAL_CONFIGURE_FLAGS |
|
|
| 46 | |
33 | |
| 47 | inherit ghc-package multilib |
34 | inherit ghc-package multilib |
|
|
35 | |
|
|
36 | # @ECLASS-VARIABLE: CABAL_EXTRA_CONFIGURE_FLAGS |
|
|
37 | # @DESCRIPTION: |
|
|
38 | # User-specified additional parameters passed to 'setup configure'. |
|
|
39 | # example: /etc/make.conf: CABAL_EXTRA_CONFIGURE_FLAGS=--enable-shared |
|
|
40 | : ${CABAL_EXTRA_CONFIGURE_FLAGS:=} |
|
|
41 | |
|
|
42 | # @ECLASS-VARIABLE: CABAL_EXTRA_BUILD_FLAGS |
|
|
43 | # @DESCRIPTION: |
|
|
44 | # User-specified additional parameters passed to 'setup build'. |
|
|
45 | # example: /etc/make.conf: CABAL_EXTRA_BUILD_FLAGS=-v |
|
|
46 | : ${CABAL_EXTRA_BUILD_FLAGS:=} |
|
|
47 | |
|
|
48 | # @ECLASS-VARIABLE: GHC_BOOTSTRAP_FLAGS |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # User-specified additional parameters for ghc when building |
|
|
51 | # _only_ 'setup' binary bootstrap. |
|
|
52 | # example: /etc/make.conf: GHC_BOOTSTRAP_FLAGS=-dynamic to make |
|
|
53 | # linking 'setup' faster. |
|
|
54 | : ${GHC_BOOTSTRAP_FLAGS:=} |
| 48 | |
55 | |
| 49 | HASKELL_CABAL_EXPF="pkg_setup src_compile src_test src_install" |
56 | HASKELL_CABAL_EXPF="pkg_setup src_compile src_test src_install" |
| 50 | |
57 | |
| 51 | case "${EAPI:-0}" in |
58 | case "${EAPI:-0}" in |
| 52 | 2|3|4) HASKELL_CABAL_EXPF+=" src_configure" ;; |
59 | 2|3|4) HASKELL_CABAL_EXPF+=" src_configure" ;; |
| … | |
… | |
| 57 | |
64 | |
| 58 | for feature in ${CABAL_FEATURES}; do |
65 | for feature in ${CABAL_FEATURES}; do |
| 59 | case ${feature} in |
66 | case ${feature} in |
| 60 | haddock) CABAL_USE_HADDOCK=yes;; |
67 | haddock) CABAL_USE_HADDOCK=yes;; |
| 61 | hscolour) CABAL_USE_HSCOLOUR=yes;; |
68 | hscolour) CABAL_USE_HSCOLOUR=yes;; |
|
|
69 | hoogle) CABAL_USE_HOOGLE=yes;; |
| 62 | alex) CABAL_USE_ALEX=yes;; |
70 | alex) CABAL_USE_ALEX=yes;; |
| 63 | happy) CABAL_USE_HAPPY=yes;; |
71 | happy) CABAL_USE_HAPPY=yes;; |
| 64 | c2hs) CABAL_USE_C2HS=yes;; |
72 | c2hs) CABAL_USE_C2HS=yes;; |
| 65 | cpphs) CABAL_USE_CPPHS=yes;; |
73 | cpphs) CABAL_USE_CPPHS=yes;; |
| 66 | profile) CABAL_USE_PROFILE=yes;; |
74 | profile) CABAL_USE_PROFILE=yes;; |
| … | |
… | |
| 72 | esac |
80 | esac |
| 73 | done |
81 | done |
| 74 | |
82 | |
| 75 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
83 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
| 76 | IUSE="${IUSE} doc" |
84 | IUSE="${IUSE} doc" |
| 77 | DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
85 | # don't require depend on itself to build docs. |
|
|
86 | # ebuild bootstraps docs from just built binary |
|
|
87 | [[ ${CATEGORY}/${PN} = "dev-haskell/haddock" ]] || DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
| 78 | fi |
88 | fi |
| 79 | |
89 | |
| 80 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then |
90 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then |
| 81 | IUSE="${IUSE} hscolour" |
91 | IUSE="${IUSE} hscolour" |
| 82 | DEPEND="${DEPEND} hscolour? ( dev-haskell/hscolour )" |
92 | DEPEND="${DEPEND} hscolour? ( dev-haskell/hscolour )" |
| 83 | fi |
93 | fi |
| 84 | |
94 | |
| 85 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
95 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
| 86 | DEPEND="${DEPEND} dev-haskell/alex" |
96 | DEPEND="${DEPEND} dev-haskell/alex" |
| 87 | cabalconf="${cabalconf} --with-alex=/usr/bin/alex" |
|
|
| 88 | fi |
97 | fi |
| 89 | |
98 | |
| 90 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
99 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
| 91 | DEPEND="${DEPEND} dev-haskell/happy" |
100 | DEPEND="${DEPEND} dev-haskell/happy" |
| 92 | cabalconf="${cabalconf} --with-happy=/usr/bin/happy" |
|
|
| 93 | fi |
101 | fi |
| 94 | |
102 | |
| 95 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
103 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
| 96 | DEPEND="${DEPEND} dev-haskell/c2hs" |
104 | DEPEND="${DEPEND} dev-haskell/c2hs" |
| 97 | cabalconf="${cabalconf} --with-c2hs=/usr/bin/c2hs" |
|
|
| 98 | fi |
105 | fi |
| 99 | |
106 | |
| 100 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
107 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
| 101 | DEPEND="${DEPEND} dev-haskell/cpphs" |
108 | DEPEND="${DEPEND} dev-haskell/cpphs" |
| 102 | cabalconf="${cabalconf} --with-cpphs=/usr/bin/cpphs" |
|
|
| 103 | fi |
109 | fi |
| 104 | |
110 | |
| 105 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
111 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
| 106 | IUSE="${IUSE} profile" |
112 | IUSE="${IUSE} profile" |
| 107 | fi |
113 | fi |
| … | |
… | |
| 127 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
133 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
| 128 | # We're bootstrapping cabal, so the cabal version is the version |
134 | # We're bootstrapping cabal, so the cabal version is the version |
| 129 | # of this package itself. |
135 | # of this package itself. |
| 130 | _CABAL_VERSION_CACHE="${PV}" |
136 | _CABAL_VERSION_CACHE="${PV}" |
| 131 | elif [[ "${CABAL_FROM_GHC}" ]]; then |
137 | elif [[ "${CABAL_FROM_GHC}" ]]; then |
| 132 | # We can't assume there's a version of Cabal installed by ebuild as |
138 | local cabal_package=$(echo "$(ghc-libdir)"/Cabal-*) |
| 133 | # this might be a first time install of GHC (for packages that |
139 | # /path/to/ghc/Cabal-${VER} -> ${VER} |
| 134 | # use the shipped Cabal like haskell-updater). |
140 | _CABAL_VERSION_CACHE="${cabal_package/*Cabal-/}" |
| 135 | |
|
|
| 136 | # The user is likely to only have one version of Cabal, provided |
|
|
| 137 | # by GHC. Note that dev-haskell/cabal can be a dummy package, only |
|
|
| 138 | # using the version provided by GHC. If the user has another version |
|
|
| 139 | # of Cabal too (more recent than the one GHC provides through |
|
|
| 140 | # dev-haskell/cabal, or possibly older if he used an old |
|
|
| 141 | # Cabal package) the most recent is used (expected to be the last |
|
|
| 142 | # one in the ghc-pkg output). |
|
|
| 143 | _CABAL_VERSION_CACHE="$(ghc-pkg field Cabal version | tail -n 1)" |
|
|
| 144 | |
|
|
| 145 | # Strip out the "version: " prefix |
|
|
| 146 | _CABAL_VERSION_CACHE="${_CABAL_VERSION_CACHE#"version: "}" |
|
|
| 147 | else |
141 | else |
| 148 | # We ask portage, not ghc, so that we only pick up |
142 | # We ask portage, not ghc, so that we only pick up |
| 149 | # portage-installed cabal versions. |
143 | # portage-installed cabal versions. |
| 150 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
144 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
| 151 | fi |
145 | fi |
| … | |
… | |
| 156 | cabal-bootstrap() { |
150 | cabal-bootstrap() { |
| 157 | local setupmodule |
151 | local setupmodule |
| 158 | local cabalpackage |
152 | local cabalpackage |
| 159 | if [[ -f "${S}/Setup.lhs" ]]; then |
153 | if [[ -f "${S}/Setup.lhs" ]]; then |
| 160 | setupmodule="${S}/Setup.lhs" |
154 | setupmodule="${S}/Setup.lhs" |
| 161 | else |
|
|
| 162 | if [[ -f "${S}/Setup.hs" ]]; then |
155 | elif [[ -f "${S}/Setup.hs" ]]; then |
| 163 | setupmodule="${S}/Setup.hs" |
156 | setupmodule="${S}/Setup.hs" |
| 164 | else |
157 | else |
| 165 | die "No Setup.lhs or Setup.hs found" |
158 | die "No Setup.lhs or Setup.hs found" |
| 166 | fi |
|
|
| 167 | fi |
159 | fi |
| 168 | |
160 | |
| 169 | # We build the setup program using the latest version of |
161 | # We build the setup program using the latest version of |
| 170 | # cabal that we have installed |
162 | # cabal that we have installed |
| 171 | if version_is_at_least "6.4" "$(ghc-version)"; then |
|
|
| 172 | cabalpackage=Cabal-$(cabal-version) |
163 | cabalpackage=Cabal-$(cabal-version) |
| 173 | else |
|
|
| 174 | # older ghc's don't support package versioning |
|
|
| 175 | cabalpackage=Cabal |
|
|
| 176 | fi |
|
|
| 177 | einfo "Using cabal-$(cabal-version)." |
164 | einfo "Using cabal-$(cabal-version)." |
|
|
165 | |
|
|
166 | make_setup() { |
| 178 | $(ghc-getghc) -package "${cabalpackage}" --make "${setupmodule}" -o setup \ |
167 | set -- -package "${cabalpackage}" --make "${setupmodule}" \ |
|
|
168 | ${GHC_BOOTSTRAP_FLAGS} \ |
|
|
169 | "$@" \ |
|
|
170 | -o setup |
|
|
171 | echo $(ghc-getghc) ${HCFLAGS} "$@" |
|
|
172 | $(ghc-getghc) "$@" |
|
|
173 | } |
|
|
174 | if $(ghc-supports-shared-libraries); then |
|
|
175 | # some custom build systems might use external libraries, |
|
|
176 | # for which we don't have shared libs, so keep static fallback |
|
|
177 | make_setup -dynamic "$@" || make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
178 | else |
| 179 | || die "compiling ${setupmodule} failed" |
179 | make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
180 | fi |
| 180 | } |
181 | } |
| 181 | |
182 | |
| 182 | cabal-mksetup() { |
183 | cabal-mksetup() { |
| 183 | local setupdir |
184 | local setupdir |
| 184 | |
185 | |
| … | |
… | |
| 189 | fi |
190 | fi |
| 190 | |
191 | |
| 191 | rm -f "${setupdir}"/Setup.{lhs,hs} |
192 | rm -f "${setupdir}"/Setup.{lhs,hs} |
| 192 | |
193 | |
| 193 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
194 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
| 194 | > $setupdir/Setup.hs |
195 | > $setupdir/Setup.hs || die "failed to create default Setup.hs" |
| 195 | } |
196 | } |
| 196 | |
197 | |
| 197 | cabal-hscolour() { |
198 | cabal-hscolour() { |
| 198 | ./setup hscolour || die "setup hscolour failed" |
199 | set -- hscolour "$@" |
|
|
200 | echo ./setup "$@" |
|
|
201 | ./setup "$@" || die "setup hscolour failed" |
| 199 | } |
202 | } |
| 200 | |
203 | |
| 201 | cabal-haddock() { |
204 | cabal-haddock() { |
| 202 | ./setup haddock || die "setup haddock failed" |
205 | set -- haddock "$@" |
|
|
206 | echo ./setup "$@" |
|
|
207 | ./setup "$@" || die "setup haddock failed" |
| 203 | } |
208 | } |
| 204 | |
209 | |
| 205 | cabal-hscolour-haddock() { |
210 | cabal-hscolour-haddock() { |
| 206 | # --hyperlink-source implies calling 'setup hscolour' |
211 | # --hyperlink-source implies calling 'setup hscolour' |
|
|
212 | set -- haddock --hyperlink-source |
|
|
213 | echo ./setup "$@" |
| 207 | ./setup haddock --hyperlink-source || die "setup haddock failed" |
214 | ./setup "$@" --hyperlink-source || die "setup haddock --hyperlink-source failed" |
| 208 | } |
215 | } |
| 209 | |
216 | |
| 210 | cabal-configure() { |
217 | cabal-configure() { |
|
|
218 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
219 | |
| 211 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
220 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
| 212 | cabalconf="${cabalconf} --with-haddock=/usr/bin/haddock" |
221 | cabalconf="${cabalconf} --with-haddock=${EPREFIX}/usr/bin/haddock" |
| 213 | fi |
222 | fi |
| 214 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
223 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
| 215 | cabalconf="${cabalconf} --enable-library-profiling" |
224 | cabalconf="${cabalconf} --enable-library-profiling" |
| 216 | fi |
225 | fi |
|
|
226 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
|
|
227 | cabalconf="${cabalconf} --with-alex=${EPREFIX}/usr/bin/alex" |
|
|
228 | fi |
|
|
229 | |
|
|
230 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
|
|
231 | cabalconf="${cabalconf} --with-happy=${EPREFIX}/usr/bin/happy" |
|
|
232 | fi |
|
|
233 | |
|
|
234 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
|
|
235 | cabalconf="${cabalconf} --with-c2hs=${EPREFIX}/usr/bin/c2hs" |
|
|
236 | fi |
|
|
237 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
|
|
238 | cabalconf="${cabalconf} --with-cpphs=${EPREFIX}/usr/bin/cpphs" |
|
|
239 | fi |
|
|
240 | |
|
|
241 | local option |
|
|
242 | for option in ${HCFLAGS} |
|
|
243 | do |
|
|
244 | cabalconf+=" --ghc-option=$option" |
|
|
245 | done |
|
|
246 | |
| 217 | # Building GHCi libs on ppc64 causes "TOC overflow". |
247 | # Building GHCi libs on ppc64 causes "TOC overflow". |
| 218 | if use ppc64; then |
248 | if use ppc64; then |
| 219 | cabalconf="${cabalconf} --disable-library-for-ghci" |
249 | cabalconf="${cabalconf} --disable-library-for-ghci" |
| 220 | fi |
250 | fi |
| 221 | |
251 | |
| 222 | if version_is_at_least "1.4" "$(cabal-version)"; then |
252 | # currently cabal does not respect CFLAGS and LDFLAGS on it's own (bug #333217) |
|
|
253 | # so translate LDFLAGS to ghc parameters (without filtering) |
|
|
254 | local flag |
|
|
255 | for flag in $LDFLAGS; do cabalconf="${cabalconf} --ghc-option=-optl$flag"; done |
|
|
256 | |
| 223 | # disable executable stripping for the executables, as portage will |
257 | # disable executable stripping for the executables, as portage will |
| 224 | # strip by itself, and pre-stripping gives a QA warning. |
258 | # strip by itself, and pre-stripping gives a QA warning. |
| 225 | # cabal versions previous to 1.4 does not strip executables, and does |
259 | # cabal versions previous to 1.4 does not strip executables, and does |
| 226 | # not accept the flag. |
260 | # not accept the flag. |
| 227 | # this fixes numerous bugs, amongst them; |
261 | # this fixes numerous bugs, amongst them; |
| 228 | # bug #251881, bug #251882, bug #251884, bug #251886, bug #299494 |
262 | # bug #251881, bug #251882, bug #251884, bug #251886, bug #299494 |
| 229 | cabalconf="${cabalconf} --disable-executable-stripping" |
263 | cabalconf="${cabalconf} --disable-executable-stripping" |
| 230 | fi |
|
|
| 231 | |
264 | |
| 232 | if version_is_at_least "1.2.0" "$(cabal-version)"; then |
|
|
| 233 | cabalconf="${cabalconf} --docdir=/usr/share/doc/${PF}" |
265 | cabalconf="${cabalconf} --docdir=${EPREFIX}/usr/share/doc/${PF}" |
| 234 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
266 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
| 235 | # it's better if the configure chatter is in the build logs: |
267 | # it's better if the configure chatter is in the build logs: |
| 236 | cabalconf="${cabalconf} --verbose" |
268 | cabalconf="${cabalconf} --verbose" |
| 237 | fi |
|
|
| 238 | # Note: with Cabal-1.1.6.x we do not have enough control |
|
|
| 239 | # to put the docs into the right place. They're currently going |
|
|
| 240 | # into /usr/share/${P}/ghc-x.y/doc/ |
|
|
| 241 | # rather than /usr/share/doc/${PF}/ |
|
|
| 242 | # Because we can only set the datadir, not the docdir. |
|
|
| 243 | |
269 | |
|
|
270 | # We build shared version of our Cabal where ghc ships it's shared |
|
|
271 | # version of it. We will link ./setup as dynamic binary againt Cabal later. |
|
|
272 | [[ ${CATEGORY}/${PN} == "dev-haskell/cabal" ]] && \ |
|
|
273 | $(ghc-supports-shared-libraries) && \ |
|
|
274 | cabalconf="${cabalconf} --enable-shared" |
|
|
275 | |
| 244 | ./setup configure \ |
276 | set -- configure \ |
| 245 | --ghc --prefix=/usr \ |
277 | --ghc --prefix="${EPREFIX}"/usr \ |
| 246 | --with-compiler="$(ghc-getghc)" \ |
278 | --with-compiler="$(ghc-getghc)" \ |
| 247 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
279 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
| 248 | --prefix=/usr \ |
280 | --prefix="${EPREFIX}"/usr \ |
| 249 | --libdir=/usr/$(get_libdir) \ |
281 | --libdir="${EPREFIX}"/usr/$(get_libdir) \ |
| 250 | --libsubdir=${P}/ghc-$(ghc-version) \ |
282 | --libsubdir=${P}/ghc-$(ghc-version) \ |
| 251 | --datadir=/usr/share/ \ |
283 | --datadir="${EPREFIX}"/usr/share/ \ |
| 252 | --datasubdir=${P}/ghc-$(ghc-version) \ |
284 | --datasubdir=${P}/ghc-$(ghc-version) \ |
| 253 | ${cabalconf} \ |
285 | ${cabalconf} \ |
| 254 | ${CABAL_CONFIGURE_FLAGS} \ |
286 | ${CABAL_CONFIGURE_FLAGS} \ |
|
|
287 | ${CABAL_EXTRA_CONFIGURE_FLAGS} \ |
|
|
288 | "$@" |
|
|
289 | echo ./setup "$@" |
| 255 | "$@" || die "setup configure failed" |
290 | ./setup "$@" || die "setup configure failed" |
| 256 | } |
291 | } |
| 257 | |
292 | |
| 258 | cabal-build() { |
293 | cabal-build() { |
| 259 | unset LANG LC_ALL LC_MESSAGES |
294 | unset LANG LC_ALL LC_MESSAGES |
| 260 | ./setup build \ |
295 | set -- build ${CABAL_EXTRA_BUILD_FLAGS} "$@" |
|
|
296 | echo ./setup "$@" |
|
|
297 | ./setup "$@" \ |
| 261 | || die "setup build failed" |
298 | || die "setup build failed" |
| 262 | } |
299 | } |
| 263 | |
300 | |
| 264 | cabal-copy() { |
301 | cabal-copy() { |
| 265 | ./setup copy \ |
302 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED=${D} |
| 266 | --destdir="${D}" \ |
303 | |
|
|
304 | set -- copy --destdir="${D}" "$@" |
|
|
305 | echo ./setup "$@" |
| 267 | || die "setup copy failed" |
306 | ./setup "$@" || die "setup copy failed" |
| 268 | |
307 | |
| 269 | # cabal is a bit eager about creating dirs, |
308 | # cabal is a bit eager about creating dirs, |
| 270 | # so remove them if they are empty |
309 | # so remove them if they are empty |
| 271 | rmdir "${D}/usr/bin" 2> /dev/null |
310 | rmdir "${ED}/usr/bin" 2> /dev/null |
| 272 | |
|
|
| 273 | # GHC 6.4 has a bug in get/setPermission and Cabal 1.1.1 has |
|
|
| 274 | # no workaround. |
|
|
| 275 | # set the +x permission on executables |
|
|
| 276 | if [[ -d "${D}/usr/bin" ]] ; then |
|
|
| 277 | chmod +x "${D}/usr/bin/"* |
|
|
| 278 | fi |
|
|
| 279 | # TODO: do we still need this? |
|
|
| 280 | } |
311 | } |
| 281 | |
312 | |
| 282 | cabal-pkg() { |
313 | cabal-pkg() { |
| 283 | # This does not actually register since we're using true instead |
314 | # This does not actually register since we're using true instead |
| 284 | # of ghc-pkg. So it just leaves the .installed-pkg-config and we can |
315 | # of ghc-pkg. So it just leaves the .conf file and we can |
| 285 | # register that ourselves (if it exists). |
316 | # register that ourselves (if it exists). |
| 286 | local result |
|
|
| 287 | local err |
|
|
| 288 | |
317 | |
| 289 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
318 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
| 290 | if version_is_at_least "1.2.0" "$(cabal-version)"; then |
|
|
| 291 | # Newer cabal can generate a package conf for us: |
319 | # Newer cabal can generate a package conf for us: |
| 292 | ./setup register --gen-pkg-config="${T}/${P}.conf" |
320 | ./setup register --gen-pkg-config="${T}/${P}.conf" |
| 293 | ghc-setup-pkg "${T}/${P}.conf" |
321 | ghc-setup-pkg "${T}/${P}.conf" |
| 294 | ghc-install-pkg |
322 | ghc-install-pkg |
| 295 | else |
|
|
| 296 | # With older cabal we have to hack it by replacing its ghc-pkg |
|
|
| 297 | # with true and then just picking up the .installed-pkg-config |
|
|
| 298 | # file and registering that ourselves (if it exists). |
|
|
| 299 | sed -i "s|$(ghc-getghcpkg)|$(type -P true)|" .setup-config |
|
|
| 300 | ./setup register || die "setup register failed" |
|
|
| 301 | if [[ -f .installed-pkg-config ]]; then |
|
|
| 302 | ghc-setup-pkg .installed-pkg-config |
|
|
| 303 | ghc-install-pkg |
|
|
| 304 | else |
|
|
| 305 | die "setup register has not generated a package configuration file" |
|
|
| 306 | fi |
|
|
| 307 | fi |
|
|
| 308 | fi |
323 | fi |
| 309 | } |
324 | } |
| 310 | |
325 | |
| 311 | # Some cabal libs are bundled along with some versions of ghc |
326 | # Some cabal libs are bundled along with some versions of ghc |
| 312 | # eg filepath-1.0 comes with ghc-6.6.1 |
327 | # eg filepath-1.0 comes with ghc-6.6.1 |
| … | |
… | |
| 324 | } |
339 | } |
| 325 | |
340 | |
| 326 | # exported function: check if cabal is correctly installed for |
341 | # exported function: check if cabal is correctly installed for |
| 327 | # the currently active ghc (we cannot guarantee this with portage) |
342 | # the currently active ghc (we cannot guarantee this with portage) |
| 328 | haskell-cabal_pkg_setup() { |
343 | haskell-cabal_pkg_setup() { |
| 329 | ghc-package_pkg_setup |
|
|
| 330 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
344 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
| 331 | eerror "The package dev-haskell/cabal is not correctly installed for" |
345 | eerror "The package dev-haskell/cabal is not correctly installed for" |
| 332 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
346 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
| 333 | eerror "run ghc-updater or haskell-updater or re-build dev-haskell/cabal." |
347 | eerror "run haskell-updater or re-build dev-haskell/cabal." |
| 334 | die "cabal is not correctly installed" |
348 | die "cabal is not correctly installed" |
| 335 | fi |
349 | fi |
| 336 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
350 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
| 337 | eerror "QA: Neither bin nor lib are in CABAL_FEATURES." |
351 | eqawarn "QA Notice: Neither bin nor lib are in CABAL_FEATURES." |
| 338 | fi |
352 | fi |
| 339 | if [[ -n "${CABAL_UNKNOWN}" ]]; then |
353 | if [[ -n "${CABAL_UNKNOWN}" ]]; then |
| 340 | ewarn "Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
354 | eqawarn "QA Notice: Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
| 341 | fi |
355 | fi |
| 342 | if cabal-is-dummy-lib; then |
356 | if cabal-is-dummy-lib; then |
| 343 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
357 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
| 344 | fi |
358 | fi |
| 345 | } |
359 | } |
| 346 | |
360 | |
| 347 | haskell-cabal_src_configure() { |
361 | haskell-cabal_src_configure() { |
|
|
362 | cabal-is-dummy-lib && return |
|
|
363 | |
| 348 | pushd "${S}" > /dev/null |
364 | pushd "${S}" > /dev/null |
| 349 | |
365 | |
| 350 | cabal-bootstrap |
366 | cabal-bootstrap |
|
|
367 | |
| 351 | cabal-configure "$@" |
368 | cabal-configure "$@" |
| 352 | |
369 | |
| 353 | popd > /dev/null |
370 | popd > /dev/null |
| 354 | } |
371 | } |
| 355 | |
372 | |
| … | |
… | |
| 358 | haskell-cabal_src_configure "$@" |
375 | haskell-cabal_src_configure "$@" |
| 359 | } |
376 | } |
| 360 | |
377 | |
| 361 | # exported function: cabal-style bootstrap configure and compile |
378 | # exported function: cabal-style bootstrap configure and compile |
| 362 | cabal_src_compile() { |
379 | cabal_src_compile() { |
| 363 | if ! cabal-is-dummy-lib; then |
380 | # it's a common mistake when one bumps ebuild to EAPI="2" (and upper) |
|
|
381 | # and forgets to separate src_compile() to src_configure()/src_compile(). |
|
|
382 | # Such error leads to default src_configure and we lose all passed flags. |
|
|
383 | if ! has "${EAPI:-0}" 0 1; then |
|
|
384 | local passed_flag |
|
|
385 | for passed_flag in "$@"; do |
|
|
386 | [[ ${passed_flag} == --flags=* ]] && \ |
|
|
387 | eqawarn "QA Notice: Cabal option '${passed_flag}' has effect only in src_configure()" |
|
|
388 | done |
|
|
389 | fi |
|
|
390 | |
|
|
391 | cabal-is-dummy-lib && return |
|
|
392 | |
| 364 | has src_configure ${HASKELL_CABAL_EXPF} || haskell-cabal_src_configure "$@" |
393 | has src_configure ${HASKELL_CABAL_EXPF} || haskell-cabal_src_configure "$@" |
| 365 | cabal-build |
394 | cabal-build |
| 366 | |
395 | |
| 367 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
396 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
| 368 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
397 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
| 369 | # hscolour and haddock |
398 | # hscolour and haddock |
| 370 | cabal-hscolour-haddock |
399 | cabal-hscolour-haddock |
| 371 | else |
|
|
| 372 | # just haddock |
|
|
| 373 | cabal-haddock |
|
|
| 374 | fi |
|
|
| 375 | else |
400 | else |
|
|
401 | # just haddock |
|
|
402 | cabal-haddock |
|
|
403 | fi |
|
|
404 | else |
| 376 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
405 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
| 377 | # just hscolour |
406 | # just hscolour |
| 378 | cabal-hscolour |
407 | cabal-hscolour |
| 379 | fi |
|
|
| 380 | fi |
408 | fi |
| 381 | fi |
409 | fi |
| 382 | } |
410 | } |
| 383 | |
411 | |
| 384 | haskell-cabal_src_compile() { |
412 | haskell-cabal_src_compile() { |
| … | |
… | |
| 394 | |
422 | |
| 395 | if cabal-is-dummy-lib; then |
423 | if cabal-is-dummy-lib; then |
| 396 | einfo ">>> No tests for dummy library: ${CATEGORY}/${PF}" |
424 | einfo ">>> No tests for dummy library: ${CATEGORY}/${PF}" |
| 397 | else |
425 | else |
| 398 | einfo ">>> Test phase [cabal test]: ${CATEGORY}/${PF}" |
426 | einfo ">>> Test phase [cabal test]: ${CATEGORY}/${PF}" |
|
|
427 | set -- test "$@" |
|
|
428 | echo ./setup "$@" |
| 399 | ./setup test || die "cabal test failed" |
429 | ./setup "$@" || die "cabal test failed" |
| 400 | fi |
430 | fi |
| 401 | |
431 | |
| 402 | popd > /dev/null |
432 | popd > /dev/null |
| 403 | } |
433 | } |
| 404 | |
434 | |
| 405 | # exported function: cabal-style copy and register |
435 | # exported function: cabal-style copy and register |
| 406 | cabal_src_install() { |
436 | cabal_src_install() { |
|
|
437 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
438 | |
| 407 | if cabal-is-dummy-lib; then |
439 | if ! cabal-is-dummy-lib; then |
| 408 | # create a dummy local package conf file for the sake of ghc-updater |
|
|
| 409 | dodir "$(ghc-confdir)" |
|
|
| 410 | echo '[]' > "${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
|
|
| 411 | else |
|
|
| 412 | cabal-copy |
440 | cabal-copy |
| 413 | cabal-pkg |
441 | cabal-pkg |
| 414 | |
|
|
| 415 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
| 416 | if ! version_is_at_least "1.1.6" "$(cabal-version)"; then |
|
|
| 417 | dohtml -r dist/doc/html/* |
|
|
| 418 | fi |
|
|
| 419 | fi |
442 | fi |
| 420 | fi |
443 | |
|
|
444 | # create a dummy local package conf file for haskell-updater |
|
|
445 | # if it does not exist (dummy libraries and binaries w/o libraries) |
|
|
446 | local ghc_confdir_with_prefix="$(ghc-confdir)" |
|
|
447 | # remove EPREFIX |
|
|
448 | dodir ${ghc_confdir_with_prefix#${EPREFIX}} |
|
|
449 | local conf_file="${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
|
|
450 | [[ -e $conf_file ]] || echo '[]' > "$conf_file" || die |
| 421 | } |
451 | } |
| 422 | |
452 | |
| 423 | haskell-cabal_src_install() { |
453 | haskell-cabal_src_install() { |
| 424 | pushd "${S}" > /dev/null |
454 | pushd "${S}" > /dev/null |
| 425 | |
455 | |