| 1 | # Copyright 1999-2005 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.1 2005/09/13 12:53:34 kosmikus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.36 2012/11/19 20:35:16 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. |
| 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 |
|
|
22 | # hoogle -- generation of documentation search index |
| 21 | # alex -- lexer/scanner generator |
23 | # alex -- lexer/scanner generator |
| 22 | # happy -- parser generator |
24 | # happy -- parser generator |
| 23 | # c2hs -- C interface generator |
25 | # c2hs -- C interface generator |
| 24 | # cpphs -- C preprocessor clone written in Haskell |
26 | # cpphs -- C preprocessor clone written in Haskell |
| 25 | # profile -- if package supports to build profiling-enabled libraries |
27 | # profile -- if package supports to build profiling-enabled libraries |
| 26 | # bootstrap -- only used for the cabal package itself |
28 | # bootstrap -- only used for the cabal package itself |
| 27 | # |
29 | # bin -- the package installs binaries |
| 28 | # Dependencies on other cabal packages have to be specified |
30 | # lib -- the package installs libraries |
| 29 | # correctly. |
31 | # nocabaldep -- don't add dependency on cabal. |
| 30 | # |
32 | # only used for packages that _must_ not pull the dependency |
| 31 | # Cabal libraries should usually be SLOTted with "${PV}". |
33 | # on cabal, but still use this eclass (e.g. haskell-updater). |
| 32 | # |
34 | # test-suite -- add support for cabal test-suites (introduced in Cabal-1.8) |
| 33 | # Many Cabal packages require S to be manually set. |
|
|
| 34 | # |
|
|
| 35 | # Conforming Cabal packages don't require any function definitions |
|
|
| 36 | # in the ebuild. |
|
|
| 37 | |
35 | |
| 38 | inherit ghc-package |
36 | inherit ghc-package multilib |
| 39 | |
37 | |
|
|
38 | # @ECLASS-VARIABLE: CABAL_EXTRA_CONFIGURE_FLAGS |
|
|
39 | # @DESCRIPTION: |
|
|
40 | # User-specified additional parameters passed to 'setup configure'. |
|
|
41 | # example: /etc/make.conf: CABAL_EXTRA_CONFIGURE_FLAGS=--enable-shared |
|
|
42 | : ${CABAL_EXTRA_CONFIGURE_FLAGS:=} |
|
|
43 | |
|
|
44 | # @ECLASS-VARIABLE: CABAL_EXTRA_BUILD_FLAGS |
|
|
45 | # @DESCRIPTION: |
|
|
46 | # User-specified additional parameters passed to 'setup build'. |
|
|
47 | # example: /etc/make.conf: CABAL_EXTRA_BUILD_FLAGS=-v |
|
|
48 | : ${CABAL_EXTRA_BUILD_FLAGS:=} |
|
|
49 | |
|
|
50 | # @ECLASS-VARIABLE: GHC_BOOTSTRAP_FLAGS |
|
|
51 | # @DESCRIPTION: |
|
|
52 | # User-specified additional parameters for ghc when building |
|
|
53 | # _only_ 'setup' binary bootstrap. |
|
|
54 | # example: /etc/make.conf: GHC_BOOTSTRAP_FLAGS=-dynamic to make |
|
|
55 | # linking 'setup' faster. |
|
|
56 | : ${GHC_BOOTSTRAP_FLAGS:=} |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: CABAL_DEBUG_LOOSENING |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Show debug output for 'cabal_chdeps' function if set. |
|
|
61 | # Needs working 'diff'. |
|
|
62 | : ${CABAL_DEBUG_LOOSENING:=} |
|
|
63 | |
|
|
64 | HASKELL_CABAL_EXPF="pkg_setup src_compile src_test src_install" |
|
|
65 | |
|
|
66 | case "${EAPI:-0}" in |
|
|
67 | 2|3|4|5) HASKELL_CABAL_EXPF+=" src_configure" ;; |
|
|
68 | *) ;; |
|
|
69 | esac |
|
|
70 | |
|
|
71 | EXPORT_FUNCTIONS ${HASKELL_CABAL_EXPF} |
| 40 | |
72 | |
| 41 | for feature in ${CABAL_FEATURES}; do |
73 | for feature in ${CABAL_FEATURES}; do |
| 42 | case ${feature} in |
74 | case ${feature} in |
| 43 | haddock) CABAL_USE_HADDOCK=yes;; |
75 | haddock) CABAL_USE_HADDOCK=yes;; |
|
|
76 | hscolour) CABAL_USE_HSCOLOUR=yes;; |
|
|
77 | hoogle) CABAL_USE_HOOGLE=yes;; |
| 44 | alex) CABAL_USE_ALEX=yes;; |
78 | alex) CABAL_USE_ALEX=yes;; |
| 45 | happy) CABAL_USE_HAPPY=yes;; |
79 | happy) CABAL_USE_HAPPY=yes;; |
| 46 | c2hs) CABAL_USE_C2HS=yes;; |
80 | c2hs) CABAL_USE_C2HS=yes;; |
| 47 | cpphs) CABAL_USE_CPPHS=yes;; |
81 | cpphs) CABAL_USE_CPPHS=yes;; |
| 48 | profile) CABAL_USE_PROFILE=yes;; |
82 | profile) CABAL_USE_PROFILE=yes;; |
| 49 | bootstrap) CABAL_BOOTSTRAP=yes;; |
83 | bootstrap) CABAL_BOOTSTRAP=yes;; |
| 50 | *) ewarn "Unknown entry in CABAL_FEATURES: ${feature}";; |
84 | bin) CABAL_HAS_BINARIES=yes;; |
|
|
85 | lib) CABAL_HAS_LIBRARIES=yes;; |
|
|
86 | nocabaldep) CABAL_FROM_GHC=yes;; |
|
|
87 | test-suite) CABAL_TEST_SUITE=yes;; |
|
|
88 | *) CABAL_UNKNOWN="${CABAL_UNKNOWN} ${feature}";; |
| 51 | esac |
89 | esac |
| 52 | done |
90 | done |
| 53 | |
91 | |
| 54 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
92 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
| 55 | IUSE="${IUSE} doc" |
93 | IUSE="${IUSE} doc" |
|
|
94 | # don't require depend on itself to build docs. |
|
|
95 | # ebuild bootstraps docs from just built binary |
|
|
96 | [[ ${CATEGORY}/${PN} = "dev-haskell/haddock" ]] || DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
|
|
97 | fi |
|
|
98 | |
|
|
99 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then |
|
|
100 | IUSE="${IUSE} hscolour" |
| 56 | DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
101 | DEPEND="${DEPEND} hscolour? ( dev-haskell/hscolour )" |
| 57 | cabalconf="${cabalconf} --with-haddock=/usr/bin/haddock" |
|
|
| 58 | fi |
102 | fi |
| 59 | |
103 | |
| 60 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
104 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
| 61 | DEPEND="${DEPEND} dev-haskell/alex" |
105 | DEPEND="${DEPEND} dev-haskell/alex" |
| 62 | cabalconf="${cabalconf} --with-alex=/usr/bin/alex" |
|
|
| 63 | fi |
106 | fi |
| 64 | |
107 | |
| 65 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
108 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
| 66 | DEPEND="${DEPEND} dev-haskell/happy" |
109 | DEPEND="${DEPEND} dev-haskell/happy" |
| 67 | cabalconf="${cabalconf} --with-happy=/usr/bin/happy" |
|
|
| 68 | fi |
110 | fi |
| 69 | |
111 | |
| 70 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
112 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
| 71 | DEPEND="${DEPEND} dev-haskell/c2hs" |
113 | DEPEND="${DEPEND} dev-haskell/c2hs" |
| 72 | cabalconf="${cabalconf} --with-c2hs=/usr/bin/c2hs" |
|
|
| 73 | fi |
114 | fi |
| 74 | |
115 | |
| 75 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
116 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
| 76 | DEPEND="${DEPEND} dev-haskell/cpphs" |
117 | DEPEND="${DEPEND} dev-haskell/cpphs" |
| 77 | cabalconf="${cabalconf} --with-cpphs=/usr/bin/cpphs" |
|
|
| 78 | fi |
118 | fi |
| 79 | |
119 | |
| 80 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
120 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
| 81 | IUSE="${IUSE} profile" |
121 | IUSE="${IUSE} profile" |
| 82 | fi |
122 | fi |
| 83 | |
123 | |
|
|
124 | if [[ -n "${CABAL_TEST_SUITE}" ]]; then |
|
|
125 | IUSE="${IUSE} test" |
|
|
126 | fi |
|
|
127 | |
| 84 | # We always use a standalone version of Cabal, rather than the one that comes |
128 | # We always use a standalone version of Cabal, rather than the one that comes |
| 85 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
129 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
|
|
130 | if [[ -z ${CABAL_MIN_VERSION} ]]; then |
|
|
131 | CABAL_MIN_VERSION=1.1.4 |
|
|
132 | fi |
|
|
133 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]]; then |
|
|
134 | DEPEND="${DEPEND} >=dev-haskell/cabal-${CABAL_MIN_VERSION}" |
|
|
135 | fi |
|
|
136 | |
|
|
137 | # Libraries require GHC to be installed. |
|
|
138 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
|
|
139 | RDEPEND="${RDEPEND} dev-lang/ghc" |
|
|
140 | fi |
|
|
141 | |
|
|
142 | # returns the version of cabal currently in use |
|
|
143 | _CABAL_VERSION_CACHE="" |
|
|
144 | cabal-version() { |
|
|
145 | if [[ -z "${_CABAL_VERSION_CACHE}" ]]; then |
| 86 | if [[ -z "${CABAL_BOOTSTRAP}" ]]; then |
146 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
| 87 | DEPEND="${DEPEND} >=dev-haskell/cabal-1.1.3" |
147 | # We're bootstrapping cabal, so the cabal version is the version |
|
|
148 | # of this package itself. |
|
|
149 | _CABAL_VERSION_CACHE="${PV}" |
|
|
150 | elif [[ "${CABAL_FROM_GHC}" ]]; then |
|
|
151 | local cabal_package=$(echo "$(ghc-libdir)"/Cabal-*) |
|
|
152 | # /path/to/ghc/Cabal-${VER} -> ${VER} |
|
|
153 | _CABAL_VERSION_CACHE="${cabal_package/*Cabal-/}" |
|
|
154 | else |
|
|
155 | # We ask portage, not ghc, so that we only pick up |
|
|
156 | # portage-installed cabal versions. |
|
|
157 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
|
|
158 | fi |
| 88 | fi |
159 | fi |
| 89 | |
160 | echo "${_CABAL_VERSION_CACHE}" |
|
|
161 | } |
| 90 | |
162 | |
| 91 | cabal-bootstrap() { |
163 | cabal-bootstrap() { |
| 92 | local setupmodule |
164 | local setupmodule |
| 93 | local cabalversion |
165 | local cabalpackage |
| 94 | if [[ -f "${S}/Setup.lhs" ]]; then |
166 | if [[ -f "${S}/Setup.lhs" ]]; then |
| 95 | setupmodule="${S}/Setup.lhs" |
167 | setupmodule="${S}/Setup.lhs" |
|
|
168 | elif [[ -f "${S}/Setup.hs" ]]; then |
|
|
169 | setupmodule="${S}/Setup.hs" |
| 96 | else |
170 | else |
| 97 | if [[ -f "${S}/Setup.hs" ]]; then |
|
|
| 98 | setupmodule="${S}/Setup.hs" |
|
|
| 99 | else |
|
|
| 100 | die "No Setup.lhs or Setup.hs found" |
171 | die "No Setup.lhs or Setup.hs found" |
| 101 | fi |
172 | fi |
|
|
173 | |
|
|
174 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
|
|
175 | eerror "The package dev-haskell/cabal is not correctly installed for" |
|
|
176 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
|
|
177 | eerror "run haskell-updater or re-build dev-haskell/cabal." |
|
|
178 | die "cabal is not correctly installed" |
| 102 | fi |
179 | fi |
| 103 | |
180 | |
| 104 | # We build the setup program using the latest version of |
181 | # We build the setup program using the latest version of |
| 105 | # cabal that we have installed |
182 | # cabal that we have installed |
| 106 | cabalversion=$(ghc-bestcabalversion) |
183 | cabalpackage=Cabal-$(cabal-version) |
| 107 | einfo "Using ${cabalversion}." |
184 | einfo "Using cabal-$(cabal-version)." |
| 108 | $(ghc-getghc) -package "${cabalversion}" --make "${setupmodule}" -o setup \ |
185 | |
|
|
186 | make_setup() { |
|
|
187 | set -- -package "${cabalpackage}" --make "${setupmodule}" \ |
|
|
188 | ${GHC_BOOTSTRAP_FLAGS} \ |
|
|
189 | "$@" \ |
|
|
190 | -o setup |
|
|
191 | echo $(ghc-getghc) ${HCFLAGS} "$@" |
|
|
192 | $(ghc-getghc) "$@" |
|
|
193 | } |
|
|
194 | if $(ghc-supports-shared-libraries); then |
|
|
195 | # # some custom build systems might use external libraries, |
|
|
196 | # # for which we don't have shared libs, so keep static fallback |
|
|
197 | # bug #411789, http://hackage.haskell.org/trac/ghc/ticket/5743#comment:3 |
|
|
198 | # http://hackage.haskell.org/trac/ghc/ticket/7062 |
|
|
199 | # http://hackage.haskell.org/trac/ghc/ticket/3072 |
|
|
200 | # ghc does not set RPATH for extralibs, thus we do it ourselves by hands |
|
|
201 | einfo "Prepending $(ghc-libdir) to LD_LIBRARY_PATH" |
|
|
202 | if [[ ${CHOST} != *-darwin* ]]; then |
|
|
203 | LD_LIBRARY_PATH="$(ghc-libdir)${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" |
|
|
204 | export LD_LIBRARY_PATH |
|
|
205 | else |
|
|
206 | DYLD_LIBRARY_PATH="$(ghc-libdir)${DYLD_LIBRARY_PATH:+:}${DYLD_LIBRARY_PATH}" |
|
|
207 | export DYLD_LIBRARY_PATH |
|
|
208 | fi |
|
|
209 | { make_setup -dynamic "$@" && ./setup --help >/dev/null; } || |
| 109 | || die "compiling ${setupmodule} failed" |
210 | make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
211 | else |
|
|
212 | make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
213 | fi |
|
|
214 | } |
|
|
215 | |
|
|
216 | cabal-mksetup() { |
|
|
217 | local setupdir |
|
|
218 | |
|
|
219 | if [[ -n $1 ]]; then |
|
|
220 | setupdir=$1 |
|
|
221 | else |
|
|
222 | setupdir=${S} |
|
|
223 | fi |
|
|
224 | |
|
|
225 | rm -f "${setupdir}"/Setup.{lhs,hs} |
|
|
226 | |
|
|
227 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
|
|
228 | > $setupdir/Setup.hs || die "failed to create default Setup.hs" |
|
|
229 | } |
|
|
230 | |
|
|
231 | cabal-hscolour() { |
|
|
232 | set -- hscolour "$@" |
|
|
233 | echo ./setup "$@" |
|
|
234 | ./setup "$@" || die "setup hscolour failed" |
| 110 | } |
235 | } |
| 111 | |
236 | |
| 112 | cabal-haddock() { |
237 | cabal-haddock() { |
| 113 | ./setup haddock || die "setup haddock failed" |
238 | set -- haddock "$@" |
|
|
239 | echo ./setup "$@" |
|
|
240 | ./setup "$@" || die "setup haddock failed" |
|
|
241 | } |
|
|
242 | |
|
|
243 | cabal-hscolour-haddock() { |
|
|
244 | # --hyperlink-source implies calling 'setup hscolour' |
|
|
245 | set -- haddock --hyperlink-source |
|
|
246 | echo ./setup "$@" |
|
|
247 | ./setup "$@" --hyperlink-source || die "setup haddock --hyperlink-source failed" |
| 114 | } |
248 | } |
| 115 | |
249 | |
| 116 | cabal-configure() { |
250 | cabal-configure() { |
|
|
251 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
252 | |
|
|
253 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
254 | cabalconf="${cabalconf} --with-haddock=${EPREFIX}/usr/bin/haddock" |
|
|
255 | fi |
| 117 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
256 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
| 118 | cabalconf="${cabalconf} --enable-executable-profiling" |
257 | cabalconf="${cabalconf} --enable-library-profiling" |
|
|
258 | fi |
|
|
259 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
|
|
260 | cabalconf="${cabalconf} --with-alex=${EPREFIX}/usr/bin/alex" |
|
|
261 | fi |
|
|
262 | |
|
|
263 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
|
|
264 | cabalconf="${cabalconf} --with-happy=${EPREFIX}/usr/bin/happy" |
|
|
265 | fi |
|
|
266 | |
|
|
267 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
|
|
268 | cabalconf="${cabalconf} --with-c2hs=${EPREFIX}/usr/bin/c2hs" |
|
|
269 | fi |
|
|
270 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
|
|
271 | cabalconf="${cabalconf} --with-cpphs=${EPREFIX}/usr/bin/cpphs" |
|
|
272 | fi |
|
|
273 | if [[ -n "${CABAL_TEST_SUITE}" ]]; then |
|
|
274 | cabalconf="${cabalconf} $(use_enable test tests)" |
|
|
275 | fi |
|
|
276 | |
|
|
277 | local option |
|
|
278 | for option in ${HCFLAGS} |
|
|
279 | do |
|
|
280 | cabalconf+=" --ghc-option=$option" |
|
|
281 | done |
|
|
282 | |
|
|
283 | # Building GHCi libs on ppc64 causes "TOC overflow". |
|
|
284 | if use ppc64; then |
|
|
285 | cabalconf="${cabalconf} --disable-library-for-ghci" |
|
|
286 | fi |
|
|
287 | |
|
|
288 | # currently cabal does not respect CFLAGS and LDFLAGS on it's own (bug #333217) |
|
|
289 | # so translate LDFLAGS to ghc parameters (without filtering) |
|
|
290 | local flag |
|
|
291 | for flag in $LDFLAGS; do cabalconf="${cabalconf} --ghc-option=-optl$flag"; done |
|
|
292 | |
|
|
293 | # disable executable stripping for the executables, as portage will |
|
|
294 | # strip by itself, and pre-stripping gives a QA warning. |
|
|
295 | # cabal versions previous to 1.4 does not strip executables, and does |
|
|
296 | # not accept the flag. |
|
|
297 | # this fixes numerous bugs, amongst them; |
|
|
298 | # bug #251881, bug #251882, bug #251884, bug #251886, bug #299494 |
|
|
299 | cabalconf="${cabalconf} --disable-executable-stripping" |
|
|
300 | |
|
|
301 | cabalconf="${cabalconf} --docdir=${EPREFIX}/usr/share/doc/${PF}" |
|
|
302 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
|
|
303 | # it's better if the configure chatter is in the build logs: |
|
|
304 | cabalconf="${cabalconf} --verbose" |
|
|
305 | |
|
|
306 | # We build shared version of our Cabal where ghc ships it's shared |
|
|
307 | # version of it. We will link ./setup as dynamic binary againt Cabal later. |
|
|
308 | [[ ${CATEGORY}/${PN} == "dev-haskell/cabal" ]] && \ |
|
|
309 | $(ghc-supports-shared-libraries) && \ |
|
|
310 | cabalconf="${cabalconf} --enable-shared" |
|
|
311 | |
|
|
312 | if $(ghc-supports-shared-libraries); then |
|
|
313 | # maybe a bit lower |
|
|
314 | if version_is_at_least "7.7.20121114" "$(ghc-version)"; then |
|
|
315 | cabalconf="${cabalconf} --enable-shared" |
| 119 | fi |
316 | fi |
|
|
317 | fi |
| 120 | |
318 | |
| 121 | ./setup configure \ |
319 | set -- configure \ |
| 122 | --ghc --prefix=/usr \ |
320 | --ghc --prefix="${EPREFIX}"/usr \ |
| 123 | --with-compiler="$(ghc-getghc)" \ |
321 | --with-compiler="$(ghc-getghc)" \ |
| 124 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
322 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
|
|
323 | --prefix="${EPREFIX}"/usr \ |
|
|
324 | --libdir="${EPREFIX}"/usr/$(get_libdir) \ |
|
|
325 | --libsubdir=${P}/ghc-$(ghc-version) \ |
|
|
326 | --datadir="${EPREFIX}"/usr/share/ \ |
|
|
327 | --datasubdir=${P}/ghc-$(ghc-version) \ |
| 125 | ${cabalconf} \ |
328 | ${cabalconf} \ |
|
|
329 | ${CABAL_CONFIGURE_FLAGS} \ |
|
|
330 | ${CABAL_EXTRA_CONFIGURE_FLAGS} \ |
|
|
331 | "$@" |
|
|
332 | echo ./setup "$@" |
| 126 | "$@" || die "setup configure failed" |
333 | ./setup "$@" || die "setup configure failed" |
| 127 | } |
334 | } |
| 128 | |
335 | |
| 129 | cabal-build() { |
336 | cabal-build() { |
| 130 | ./setup build \ |
337 | unset LANG LC_ALL LC_MESSAGES |
|
|
338 | set -- build ${CABAL_EXTRA_BUILD_FLAGS} "$@" |
|
|
339 | echo ./setup "$@" |
|
|
340 | ./setup "$@" \ |
| 131 | || die "setup build failed" |
341 | || die "setup build failed" |
| 132 | } |
342 | } |
| 133 | |
343 | |
| 134 | cabal-copy() { |
344 | cabal-copy() { |
| 135 | ./setup copy \ |
345 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED=${D} |
| 136 | --copy-prefix="${D}/usr" \ |
346 | |
|
|
347 | set -- copy --destdir="${D}" "$@" |
|
|
348 | echo ./setup "$@" |
| 137 | || die "setup copy failed" |
349 | ./setup "$@" || die "setup copy failed" |
| 138 | |
350 | |
| 139 | # cabal is a bit eager about creating dirs, |
351 | # cabal is a bit eager about creating dirs, |
| 140 | # so remove them if they are empty |
352 | # so remove them if they are empty |
| 141 | rmdir "${D}/usr/bin" 2> /dev/null |
353 | rmdir "${ED}/usr/bin" 2> /dev/null |
| 142 | |
|
|
| 143 | # GHC 6.4 has a bug in get/setPermission and Cabal 1.1.1 has |
|
|
| 144 | # no workaround. |
|
|
| 145 | # set the +x permission on executables |
|
|
| 146 | if [[ -d "${D}/usr/bin" ]] ; then |
|
|
| 147 | chmod +x "${D}/usr/bin/"* |
|
|
| 148 | fi |
|
|
| 149 | } |
354 | } |
| 150 | |
355 | |
| 151 | cabal-pkg() { |
356 | cabal-pkg() { |
| 152 | # This does not actually register since we're using /usr/bin/true instead |
357 | # This does not actually register since we're using true instead |
| 153 | # of ghc-pkg. So it just leaves the .installed-pkg-config and we can |
358 | # of ghc-pkg. So it just leaves the .conf file and we can |
| 154 | # register that ourselves (if it exists). |
359 | # register that ourselves (if it exists). |
| 155 | sed -i 's:ghc-pkg:/usr/bin/true:' .setup-config |
360 | |
| 156 | ./setup register || die "setup register failed" |
361 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
| 157 | if [[ -f .installed-pkg-config ]]; then |
362 | # Newer cabal can generate a package conf for us: |
| 158 | ghc-setup-pkg .installed-pkg-config |
363 | ./setup register --gen-pkg-config="${T}/${P}.conf" |
|
|
364 | ghc-setup-pkg "${T}/${P}.conf" |
| 159 | ghc-install-pkg |
365 | ghc-install-pkg |
| 160 | fi |
366 | fi |
|
|
367 | } |
|
|
368 | |
|
|
369 | # Some cabal libs are bundled along with some versions of ghc |
|
|
370 | # eg filepath-1.0 comes with ghc-6.6.1 |
|
|
371 | # by putting CABAL_CORE_LIB_GHC_PV="6.6.1" in an ebuild we are declaring that |
|
|
372 | # when building with this version of ghc, the ebuild is a dummy that is it will |
|
|
373 | # install no files since the package is already included with ghc. |
|
|
374 | # However portage still records the dependency and we can upgrade the package |
|
|
375 | # to a later one that's not included with ghc. |
|
|
376 | # You can also put a space separated list, eg CABAL_CORE_LIB_GHC_PV="6.6 6.6.1". |
|
|
377 | cabal-is-dummy-lib() { |
|
|
378 | for version in ${CABAL_CORE_LIB_GHC_PV[*]}; do |
|
|
379 | [[ "$(ghc-version)" == ${version} ]] && return 0 |
|
|
380 | done |
|
|
381 | return 1 |
| 161 | } |
382 | } |
| 162 | |
383 | |
| 163 | # exported function: check if cabal is correctly installed for |
384 | # exported function: check if cabal is correctly installed for |
| 164 | # the currently active ghc (we cannot guarantee this with portage) |
385 | # the currently active ghc (we cannot guarantee this with portage) |
| 165 | haskell-cabal_pkg_setup() { |
386 | haskell-cabal_pkg_setup() { |
| 166 | if [[ -z "${CABAL_BOOTSTRAP}" ]] && ! ghc-sanecabal "1.1.3"; then |
387 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
| 167 | eerror "The package dev-haskell/cabal is not correctly installed for" |
388 | eqawarn "QA Notice: Neither bin nor lib are in CABAL_FEATURES." |
| 168 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
|
|
| 169 | eerror "run ghc-updater or re-emerge dev-haskell/cabal." |
|
|
| 170 | die "cabal is not correctly installed" |
|
|
| 171 | fi |
389 | fi |
|
|
390 | if [[ -n "${CABAL_UNKNOWN}" ]]; then |
|
|
391 | eqawarn "QA Notice: Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
|
|
392 | fi |
|
|
393 | if cabal-is-dummy-lib; then |
|
|
394 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
|
|
395 | fi |
|
|
396 | } |
|
|
397 | |
|
|
398 | haskell-cabal_src_configure() { |
|
|
399 | cabal-is-dummy-lib && return |
|
|
400 | |
|
|
401 | pushd "${S}" > /dev/null |
|
|
402 | |
|
|
403 | cabal-bootstrap |
|
|
404 | |
|
|
405 | cabal-configure "$@" |
|
|
406 | |
|
|
407 | popd > /dev/null |
|
|
408 | } |
|
|
409 | |
|
|
410 | # exported function: nice alias |
|
|
411 | cabal_src_configure() { |
|
|
412 | haskell-cabal_src_configure "$@" |
| 172 | } |
413 | } |
| 173 | |
414 | |
| 174 | # exported function: cabal-style bootstrap configure and compile |
415 | # exported function: cabal-style bootstrap configure and compile |
| 175 | cabal_src_compile() { |
416 | cabal_src_compile() { |
| 176 | cabal-bootstrap |
417 | # it's a common mistake when one bumps ebuild to EAPI="2" (and upper) |
| 177 | cabal-configure |
418 | # and forgets to separate src_compile() to src_configure()/src_compile(). |
|
|
419 | # Such error leads to default src_configure and we lose all passed flags. |
|
|
420 | if ! has "${EAPI:-0}" 0 1; then |
|
|
421 | local passed_flag |
|
|
422 | for passed_flag in "$@"; do |
|
|
423 | [[ ${passed_flag} == --flags=* ]] && \ |
|
|
424 | eqawarn "QA Notice: Cabal option '${passed_flag}' has effect only in src_configure()" |
|
|
425 | done |
|
|
426 | fi |
|
|
427 | |
|
|
428 | cabal-is-dummy-lib && return |
|
|
429 | |
|
|
430 | has src_configure ${HASKELL_CABAL_EXPF} || haskell-cabal_src_configure "$@" |
| 178 | cabal-build |
431 | cabal-build |
| 179 | |
432 | |
| 180 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
433 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
434 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
435 | # hscolour and haddock |
|
|
436 | cabal-hscolour-haddock |
|
|
437 | else |
|
|
438 | # just haddock |
| 181 | cabal-haddock |
439 | cabal-haddock |
| 182 | fi |
440 | fi |
|
|
441 | else |
|
|
442 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
443 | # just hscolour |
|
|
444 | cabal-hscolour |
|
|
445 | fi |
|
|
446 | fi |
| 183 | } |
447 | } |
|
|
448 | |
| 184 | haskell-cabal_src_compile() { |
449 | haskell-cabal_src_compile() { |
|
|
450 | pushd "${S}" > /dev/null |
|
|
451 | |
| 185 | cabal_src_compile |
452 | cabal_src_compile "$@" |
|
|
453 | |
|
|
454 | popd > /dev/null |
|
|
455 | } |
|
|
456 | |
|
|
457 | haskell-cabal_src_test() { |
|
|
458 | pushd "${S}" > /dev/null |
|
|
459 | |
|
|
460 | if cabal-is-dummy-lib; then |
|
|
461 | einfo ">>> No tests for dummy library: ${CATEGORY}/${PF}" |
|
|
462 | else |
|
|
463 | einfo ">>> Test phase [cabal test]: ${CATEGORY}/${PF}" |
|
|
464 | set -- test "$@" |
|
|
465 | echo ./setup "$@" |
|
|
466 | ./setup "$@" || die "cabal test failed" |
|
|
467 | fi |
|
|
468 | |
|
|
469 | popd > /dev/null |
| 186 | } |
470 | } |
| 187 | |
471 | |
| 188 | # exported function: cabal-style copy and register |
472 | # exported function: cabal-style copy and register |
| 189 | cabal_src_install() { |
473 | cabal_src_install() { |
|
|
474 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
475 | |
|
|
476 | if ! cabal-is-dummy-lib; then |
| 190 | cabal-copy |
477 | cabal-copy |
| 191 | cabal-pkg |
478 | cabal-pkg |
| 192 | |
|
|
| 193 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
| 194 | dohtml dist/doc/html/* |
|
|
| 195 | fi |
479 | fi |
|
|
480 | |
|
|
481 | # create a dummy local package conf file for haskell-updater |
|
|
482 | # if it does not exist (dummy libraries and binaries w/o libraries) |
|
|
483 | local ghc_confdir_with_prefix="$(ghc-confdir)" |
|
|
484 | # remove EPREFIX |
|
|
485 | dodir ${ghc_confdir_with_prefix#${EPREFIX}} |
|
|
486 | local conf_file="${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
|
|
487 | [[ -e $conf_file ]] || echo '[]' > "$conf_file" || die |
|
|
488 | |
|
|
489 | # make sure installed packages do not destroy ghc's |
|
|
490 | # bundled packages |
|
|
491 | local initial_pkg_db=${ROOT}/$(ghc-libdir)/package.conf.d.initial |
|
|
492 | if [[ -e ${initial_pkg_db} ]]; then |
|
|
493 | local checked_pkg |
|
|
494 | for checked_pkg in $(ghc-listpkg "${conf_file}") |
|
|
495 | do |
|
|
496 | local initial_pkg |
|
|
497 | for initial_pkg in $(ghc-listpkg "${initial_pkg_db}"); do |
|
|
498 | if [[ ${checked_pkg} = ${initial_pkg} ]]; then |
|
|
499 | eerror "Package ${checked_pkg} is shipped with $(ghc-version)." |
|
|
500 | eerror "Ebuild author forgot CABAL_CORE_LIB_GHC_PV entry." |
|
|
501 | eerror "Found in ${initial_pkg_db}." |
|
|
502 | die |
|
|
503 | fi |
|
|
504 | done |
|
|
505 | done |
|
|
506 | fi |
| 196 | } |
507 | } |
|
|
508 | |
| 197 | haskell-cabal_src_install() { |
509 | haskell-cabal_src_install() { |
|
|
510 | pushd "${S}" > /dev/null |
|
|
511 | |
| 198 | cabal_src_install |
512 | cabal_src_install |
| 199 | } |
|
|
| 200 | |
513 | |
| 201 | EXPORT_FUNCTIONS pkg_setup src_compile src_install |
514 | popd > /dev/null |
|
|
515 | } |
|
|
516 | |
|
|
517 | # ebuild.sh:use_enable() taken as base |
|
|
518 | # |
|
|
519 | # Usage examples: |
|
|
520 | # |
|
|
521 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gui) |
|
|
522 | # leads to "--flags=gui" or "--flags=-gui" (useflag 'gui') |
|
|
523 | # |
|
|
524 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gtk gui) |
|
|
525 | # also leads to "--flags=gui" or " --flags=-gui" (useflag 'gtk') |
|
|
526 | # |
|
|
527 | cabal_flag() { |
|
|
528 | if [[ -z "$1" ]]; then |
|
|
529 | echo "!!! cabal_flag() called without a parameter." >&2 |
|
|
530 | echo "!!! cabal_flag() <USEFLAG> [<cabal_flagname>]" >&2 |
|
|
531 | return 1 |
|
|
532 | fi |
|
|
533 | |
|
|
534 | local UWORD=${2:-$1} |
|
|
535 | |
|
|
536 | if use "$1"; then |
|
|
537 | echo "--flags=${UWORD}" |
|
|
538 | else |
|
|
539 | echo "--flags=-${UWORD}" |
|
|
540 | fi |
|
|
541 | |
|
|
542 | return 0 |
|
|
543 | } |
|
|
544 | |
|
|
545 | # @FUNCTION: cabal_chdeps |
|
|
546 | # @DESCRIPTION: |
|
|
547 | # Allows easier patching of $CABAL_FILE (${S}/${PN}.cabal by default) |
|
|
548 | # depends |
|
|
549 | # |
|
|
550 | # Accepts argument list as pairs of substitutions: <from-string> <to-string>... |
|
|
551 | # |
|
|
552 | # Dies on error. |
|
|
553 | # |
|
|
554 | # Usage examples: |
|
|
555 | # |
|
|
556 | # src_prepare() { |
|
|
557 | # cabal_chdeps \ |
|
|
558 | # 'base >= 4.2 && < 4.6' 'base >= 4.2 && < 4.7' \ |
|
|
559 | # 'containers ==0.4.*' 'containers >= 0.4 && < 0.6' |
|
|
560 | #} |
|
|
561 | # or |
|
|
562 | # src_prepare() { |
|
|
563 | # CABAL_FILE=${S}/${MY_PN}.cabal cabal_chdeps \ |
|
|
564 | # 'base >= 4.2 && < 4.6' 'base >= 4.2 && < 4.7' |
|
|
565 | # CABAL_FILE=${S}/${MY_PN}-tools.cabal cabal_chdeps \ |
|
|
566 | # 'base == 3.*' 'base >= 4.2 && < 4.7' |
|
|
567 | #} |
|
|
568 | # |
|
|
569 | cabal_chdeps() { |
|
|
570 | local cf=${CABAL_FILE:-${S}/${PN}.cabal} |
|
|
571 | local from_ss # ss - substring |
|
|
572 | local to_ss |
|
|
573 | local orig_c # c - contents |
|
|
574 | local new_c |
|
|
575 | |
|
|
576 | [[ -f $cf ]] || die "cabal file '$cf' does not exist" |
|
|
577 | |
|
|
578 | orig_c=$(< "$cf") |
|
|
579 | |
|
|
580 | while :; do |
|
|
581 | from_pat=$1 |
|
|
582 | to_str=$2 |
|
|
583 | einfo "CHDEP: '${from_pat}' -> '${to_str}'" |
|
|
584 | |
|
|
585 | [[ -n ${from_pat} ]] || break |
|
|
586 | [[ -n ${to_str} ]] || die "'${from_str}' does not have 'to' part" |
|
|
587 | |
|
|
588 | # escape pattern-like symbols |
|
|
589 | from_pat=${from_pat//\*/\\*} |
|
|
590 | from_pat=${from_pat//\[/\\[} |
|
|
591 | |
|
|
592 | new_c=${orig_c//${from_pat}/${to_str}} |
|
|
593 | |
|
|
594 | if [[ -n $CABAL_DEBUG_LOOSENING ]]; then |
|
|
595 | echo "${orig_c}" >"${T}/${cf}".pre |
|
|
596 | echo "${new_c}" >"${T}/${cf}".post |
|
|
597 | diff -u "${T}/${cf}".{pre,post} |
|
|
598 | fi |
|
|
599 | |
|
|
600 | [[ "${orig_c}" == "${new_c}" ]] && die "no trigger for '${from_ss}'" |
|
|
601 | orig_c=${new_c} |
|
|
602 | shift |
|
|
603 | shift |
|
|
604 | done |
|
|
605 | |
|
|
606 | echo "${new_c}" > "$cf" || |
|
|
607 | die "failed to update" |
|
|
608 | } |