| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 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.15 2009/07/27 19:03:20 kolmodin Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.21 2010/08/07 12:06:27 kolmodin Exp $ |
| 4 | # |
4 | # |
| 5 | # Original authors: Andres Loeh <kosmikus@gentoo.org> |
5 | # Original authors: Andres Loeh <kosmikus@gentoo.org> |
| 6 | # Duncan Coutts <dcoutts@gentoo.org> |
6 | # Duncan Coutts <dcoutts@gentoo.org> |
| 7 | # Maintained by: Haskell herd <haskell@gentoo.org> |
7 | # Maintained by: Haskell herd <haskell@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 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. |
| 18 | # |
18 | # |
| 19 | # Currently supported features: |
19 | # Currently supported features: |
| 20 | # haddock -- for documentation generation |
20 | # haddock -- for documentation generation |
|
|
21 | # hscolour -- generation of colourised sources |
| 21 | # alex -- lexer/scanner generator |
22 | # alex -- lexer/scanner generator |
| 22 | # happy -- parser generator |
23 | # happy -- parser generator |
| 23 | # c2hs -- C interface generator |
24 | # c2hs -- C interface generator |
| 24 | # cpphs -- C preprocessor clone written in Haskell |
25 | # cpphs -- C preprocessor clone written in Haskell |
| 25 | # profile -- if package supports to build profiling-enabled libraries |
26 | # profile -- if package supports to build profiling-enabled libraries |
| 26 | # bootstrap -- only used for the cabal package itself |
27 | # bootstrap -- only used for the cabal package itself |
| 27 | # bin -- the package installs binaries |
28 | # bin -- the package installs binaries |
| 28 | # lib -- the package installs libraries |
29 | # lib -- the package installs libraries |
|
|
30 | # nocabaldep -- don't add dependency on cabal. |
|
|
31 | # only used for packages that _must_ not pull the dependency |
|
|
32 | # on cabal, but still use this eclass (e.g. haskell-updater). |
| 29 | # |
33 | # |
| 30 | # Dependencies on other cabal packages have to be specified |
34 | # Dependencies on other cabal packages have to be specified |
| 31 | # correctly. |
35 | # correctly. |
| 32 | # |
36 | # |
| 33 | # Cabal libraries should usually be SLOTted with "${PV}". |
37 | # Cabal libraries should usually be SLOTted with "${PV}". |
| … | |
… | |
| 40 | # Special flags to Cabal Configure can now be set by using |
44 | # Special flags to Cabal Configure can now be set by using |
| 41 | # CABAL_CONFIGURE_FLAGS |
45 | # CABAL_CONFIGURE_FLAGS |
| 42 | |
46 | |
| 43 | inherit ghc-package multilib |
47 | inherit ghc-package multilib |
| 44 | |
48 | |
|
|
49 | HASKELL_CABAL_EXPF="pkg_setup src_compile src_test src_install" |
|
|
50 | |
|
|
51 | case "${EAPI:-0}" in |
|
|
52 | 2|3|4) HASKELL_CABAL_EXPF+=" src_configure" ;; |
|
|
53 | *) ;; |
|
|
54 | esac |
|
|
55 | |
|
|
56 | EXPORT_FUNCTIONS ${HASKELL_CABAL_EXPF} |
| 45 | |
57 | |
| 46 | for feature in ${CABAL_FEATURES}; do |
58 | for feature in ${CABAL_FEATURES}; do |
| 47 | case ${feature} in |
59 | case ${feature} in |
| 48 | haddock) CABAL_USE_HADDOCK=yes;; |
60 | haddock) CABAL_USE_HADDOCK=yes;; |
|
|
61 | hscolour) CABAL_USE_HSCOLOUR=yes;; |
| 49 | alex) CABAL_USE_ALEX=yes;; |
62 | alex) CABAL_USE_ALEX=yes;; |
| 50 | happy) CABAL_USE_HAPPY=yes;; |
63 | happy) CABAL_USE_HAPPY=yes;; |
| 51 | c2hs) CABAL_USE_C2HS=yes;; |
64 | c2hs) CABAL_USE_C2HS=yes;; |
| 52 | cpphs) CABAL_USE_CPPHS=yes;; |
65 | cpphs) CABAL_USE_CPPHS=yes;; |
| 53 | profile) CABAL_USE_PROFILE=yes;; |
66 | profile) CABAL_USE_PROFILE=yes;; |
| 54 | bootstrap) CABAL_BOOTSTRAP=yes;; |
67 | bootstrap) CABAL_BOOTSTRAP=yes;; |
| 55 | bin) CABAL_HAS_BINARIES=yes;; |
68 | bin) CABAL_HAS_BINARIES=yes;; |
| 56 | lib) CABAL_HAS_LIBRARIES=yes;; |
69 | lib) CABAL_HAS_LIBRARIES=yes;; |
|
|
70 | nocabaldep) CABAL_FROM_GHC=yes;; |
| 57 | *) CABAL_UNKNOWN="${CABAL_UNKNOWN} ${feature}";; |
71 | *) CABAL_UNKNOWN="${CABAL_UNKNOWN} ${feature}";; |
| 58 | esac |
72 | esac |
| 59 | done |
73 | done |
| 60 | |
74 | |
| 61 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
75 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
| 62 | IUSE="${IUSE} doc" |
76 | IUSE="${IUSE} doc" |
| 63 | DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
77 | DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
|
|
78 | fi |
|
|
79 | |
|
|
80 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then |
|
|
81 | IUSE="${IUSE} hscolour" |
|
|
82 | DEPEND="${DEPEND} hscolour? ( dev-haskell/hscolour )" |
| 64 | fi |
83 | fi |
| 65 | |
84 | |
| 66 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
85 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
| 67 | DEPEND="${DEPEND} dev-haskell/alex" |
86 | DEPEND="${DEPEND} dev-haskell/alex" |
| 68 | cabalconf="${cabalconf} --with-alex=/usr/bin/alex" |
87 | cabalconf="${cabalconf} --with-alex=/usr/bin/alex" |
| … | |
… | |
| 90 | # We always use a standalone version of Cabal, rather than the one that comes |
109 | # We always use a standalone version of Cabal, rather than the one that comes |
| 91 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
110 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
| 92 | if [[ -z ${CABAL_MIN_VERSION} ]]; then |
111 | if [[ -z ${CABAL_MIN_VERSION} ]]; then |
| 93 | CABAL_MIN_VERSION=1.1.4 |
112 | CABAL_MIN_VERSION=1.1.4 |
| 94 | fi |
113 | fi |
| 95 | if [[ -z "${CABAL_BOOTSTRAP}" ]]; then |
114 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]]; then |
| 96 | DEPEND="${DEPEND} >=dev-haskell/cabal-${CABAL_MIN_VERSION}" |
115 | DEPEND="${DEPEND} >=dev-haskell/cabal-${CABAL_MIN_VERSION}" |
| 97 | fi |
116 | fi |
| 98 | |
117 | |
| 99 | # Libraries require GHC to be installed. |
118 | # Libraries require GHC to be installed. |
| 100 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
119 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
| … | |
… | |
| 107 | if [[ -z "${_CABAL_VERSION_CACHE}" ]]; then |
126 | if [[ -z "${_CABAL_VERSION_CACHE}" ]]; then |
| 108 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
127 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
| 109 | # We're bootstrapping cabal, so the cabal version is the version |
128 | # We're bootstrapping cabal, so the cabal version is the version |
| 110 | # of this package itself. |
129 | # of this package itself. |
| 111 | _CABAL_VERSION_CACHE="${PV}" |
130 | _CABAL_VERSION_CACHE="${PV}" |
|
|
131 | elif [[ "${CABAL_FROM_GHC}" ]]; then |
|
|
132 | # We can't assume there's a version of Cabal installed by ebuild as |
|
|
133 | # this might be a first time install of GHC (for packages that |
|
|
134 | # use the shipped Cabal like haskell-updater). |
|
|
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: "}" |
| 112 | else |
147 | else |
| 113 | # We ask portage, not ghc, so that we only pick up |
148 | # We ask portage, not ghc, so that we only pick up |
| 114 | # portage-installed cabal versions. |
149 | # portage-installed cabal versions. |
| 115 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
150 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
| 116 | fi |
151 | fi |
| … | |
… | |
| 157 | |
192 | |
| 158 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
193 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
| 159 | > $setupdir/Setup.hs |
194 | > $setupdir/Setup.hs |
| 160 | } |
195 | } |
| 161 | |
196 | |
|
|
197 | cabal-hscolour() { |
|
|
198 | ./setup hscolour || die "setup hscolour failed" |
|
|
199 | } |
|
|
200 | |
| 162 | cabal-haddock() { |
201 | cabal-haddock() { |
| 163 | ./setup haddock || die "setup haddock failed" |
202 | ./setup haddock || die "setup haddock failed" |
|
|
203 | } |
|
|
204 | |
|
|
205 | cabal-hscolour-haddock() { |
|
|
206 | # --hyperlink-source implies calling 'setup hscolour' |
|
|
207 | ./setup haddock --hyperlink-source || die "setup haddock failed" |
| 164 | } |
208 | } |
| 165 | |
209 | |
| 166 | cabal-configure() { |
210 | cabal-configure() { |
| 167 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
211 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
| 168 | cabalconf="${cabalconf} --with-haddock=/usr/bin/haddock" |
212 | cabalconf="${cabalconf} --with-haddock=/usr/bin/haddock" |
| … | |
… | |
| 171 | cabalconf="${cabalconf} --enable-library-profiling" |
215 | cabalconf="${cabalconf} --enable-library-profiling" |
| 172 | fi |
216 | fi |
| 173 | # Building GHCi libs on ppc64 causes "TOC overflow". |
217 | # Building GHCi libs on ppc64 causes "TOC overflow". |
| 174 | if use ppc64; then |
218 | if use ppc64; then |
| 175 | cabalconf="${cabalconf} --disable-library-for-ghci" |
219 | cabalconf="${cabalconf} --disable-library-for-ghci" |
|
|
220 | fi |
|
|
221 | |
|
|
222 | if version_is_at_least "1.4" "$(cabal-version)"; then |
|
|
223 | # disable executable stripping for the executables, as portage will |
|
|
224 | # strip by itself, and pre-stripping gives a QA warning. |
|
|
225 | # cabal versions previous to 1.4 does not strip executables, and does |
|
|
226 | # not accept the flag. |
|
|
227 | # this fixes numerous bugs, amongst them; |
|
|
228 | # bug #251881, bug #251882, bug #251884, bug #251886, bug #299494 |
|
|
229 | cabalconf="${cabalconf} --disable-executable-stripping" |
| 176 | fi |
230 | fi |
| 177 | |
231 | |
| 178 | if version_is_at_least "1.2.0" "$(cabal-version)"; then |
232 | if version_is_at_least "1.2.0" "$(cabal-version)"; then |
| 179 | cabalconf="${cabalconf} --docdir=/usr/share/doc/${PF}" |
233 | cabalconf="${cabalconf} --docdir=/usr/share/doc/${PF}" |
| 180 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
234 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
| … | |
… | |
| 271 | |
325 | |
| 272 | # exported function: check if cabal is correctly installed for |
326 | # exported function: check if cabal is correctly installed for |
| 273 | # the currently active ghc (we cannot guarantee this with portage) |
327 | # the currently active ghc (we cannot guarantee this with portage) |
| 274 | haskell-cabal_pkg_setup() { |
328 | haskell-cabal_pkg_setup() { |
| 275 | ghc-package_pkg_setup |
329 | ghc-package_pkg_setup |
| 276 | if [[ -z "${CABAL_BOOTSTRAP}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
330 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
| 277 | eerror "The package dev-haskell/cabal is not correctly installed for" |
331 | eerror "The package dev-haskell/cabal is not correctly installed for" |
| 278 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
332 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
| 279 | eerror "run ghc-updater or re-emerge dev-haskell/cabal." |
333 | eerror "run ghc-updater or haskell-updater or re-build dev-haskell/cabal." |
| 280 | die "cabal is not correctly installed" |
334 | die "cabal is not correctly installed" |
| 281 | fi |
335 | fi |
| 282 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
336 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
| 283 | eerror "QA: Neither bin nor lib are in CABAL_FEATURES." |
337 | eerror "QA: Neither bin nor lib are in CABAL_FEATURES." |
| 284 | fi |
338 | fi |
| … | |
… | |
| 286 | ewarn "Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
340 | ewarn "Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
| 287 | fi |
341 | fi |
| 288 | if cabal-is-dummy-lib; then |
342 | if cabal-is-dummy-lib; then |
| 289 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
343 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
| 290 | fi |
344 | fi |
|
|
345 | } |
|
|
346 | |
|
|
347 | haskell-cabal_src_configure() { |
|
|
348 | pushd "${S}" > /dev/null |
|
|
349 | |
|
|
350 | cabal-bootstrap |
|
|
351 | cabal-configure "$@" |
|
|
352 | |
|
|
353 | popd > /dev/null |
|
|
354 | } |
|
|
355 | |
|
|
356 | # exported function: nice alias |
|
|
357 | cabal_src_configure() { |
|
|
358 | haskell-cabal_src_configure "$@" |
| 291 | } |
359 | } |
| 292 | |
360 | |
| 293 | # exported function: cabal-style bootstrap configure and compile |
361 | # exported function: cabal-style bootstrap configure and compile |
| 294 | cabal_src_compile() { |
362 | cabal_src_compile() { |
| 295 | if ! cabal-is-dummy-lib; then |
363 | if ! cabal-is-dummy-lib; then |
| 296 | cabal-bootstrap |
364 | has src_configure ${HASKELL_CABAL_EXPF} || haskell-cabal_src_configure "$@" |
| 297 | cabal-configure |
|
|
| 298 | cabal-build |
365 | cabal-build |
| 299 | |
366 | |
| 300 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
367 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
368 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
369 | # hscolour and haddock |
|
|
370 | cabal-hscolour-haddock |
|
|
371 | else |
|
|
372 | # just haddock |
| 301 | cabal-haddock |
373 | cabal-haddock |
|
|
374 | fi |
|
|
375 | else |
|
|
376 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
377 | # just hscolour |
|
|
378 | cabal-hscolour |
|
|
379 | fi |
| 302 | fi |
380 | fi |
| 303 | fi |
381 | fi |
| 304 | } |
382 | } |
|
|
383 | |
| 305 | haskell-cabal_src_compile() { |
384 | haskell-cabal_src_compile() { |
|
|
385 | pushd "${S}" > /dev/null |
|
|
386 | |
| 306 | cabal_src_compile |
387 | cabal_src_compile "$@" |
|
|
388 | |
|
|
389 | popd > /dev/null |
|
|
390 | } |
|
|
391 | |
|
|
392 | haskell-cabal_src_test() { |
|
|
393 | pushd "${S}" > /dev/null |
|
|
394 | |
|
|
395 | if cabal-is-dummy-lib; then |
|
|
396 | einfo ">>> No tests for dummy library: ${CATEGORY}/${PF}" |
|
|
397 | else |
|
|
398 | einfo ">>> Test phase [cabal test]: ${CATEGORY}/${PF}" |
|
|
399 | ./setup test || die "cabal test failed" |
|
|
400 | fi |
|
|
401 | |
|
|
402 | popd > /dev/null |
| 307 | } |
403 | } |
| 308 | |
404 | |
| 309 | # exported function: cabal-style copy and register |
405 | # exported function: cabal-style copy and register |
| 310 | cabal_src_install() { |
406 | cabal_src_install() { |
| 311 | if cabal-is-dummy-lib; then |
407 | if cabal-is-dummy-lib; then |
| … | |
… | |
| 321 | dohtml -r dist/doc/html/* |
417 | dohtml -r dist/doc/html/* |
| 322 | fi |
418 | fi |
| 323 | fi |
419 | fi |
| 324 | fi |
420 | fi |
| 325 | } |
421 | } |
|
|
422 | |
| 326 | haskell-cabal_src_install() { |
423 | haskell-cabal_src_install() { |
|
|
424 | pushd "${S}" > /dev/null |
|
|
425 | |
| 327 | cabal_src_install |
426 | cabal_src_install |
| 328 | } |
|
|
| 329 | |
427 | |
| 330 | EXPORT_FUNCTIONS pkg_setup src_compile src_install |
428 | popd > /dev/null |
|
|
429 | } |
|
|
430 | |
|
|
431 | # ebuild.sh:use_enable() taken as base |
|
|
432 | # |
|
|
433 | # Usage examples: |
|
|
434 | # |
|
|
435 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gui) |
|
|
436 | # leads to "--flags=gui" or "--flags=-gui" (useflag 'gui') |
|
|
437 | # |
|
|
438 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gtk gui) |
|
|
439 | # also leads to "--flags=gui" or " --flags=-gui" (useflag 'gtk') |
|
|
440 | # |
|
|
441 | cabal_flag() { |
|
|
442 | if [[ -z "$1" ]]; then |
|
|
443 | echo "!!! cabal_flag() called without a parameter." >&2 |
|
|
444 | echo "!!! cabal_flag() <USEFLAG> [<cabal_flagname>]" >&2 |
|
|
445 | return 1 |
|
|
446 | fi |
|
|
447 | |
|
|
448 | local UWORD=${2:-$1} |
|
|
449 | |
|
|
450 | if use "$1"; then |
|
|
451 | echo "--flags=${UWORD}" |
|
|
452 | else |
|
|
453 | echo "--flags=-${UWORD}" |
|
|
454 | fi |
|
|
455 | |
|
|
456 | return 0 |
|
|
457 | } |