| 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.1.1 2005/11/30 09:59:22 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.30 2012/04/14 19:30:53 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 |
| 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 | # |
28 | # bin -- the package installs binaries |
| 28 | # Dependencies on other cabal packages have to be specified |
29 | # lib -- the package installs libraries |
| 29 | # correctly. |
30 | # nocabaldep -- don't add dependency on cabal. |
| 30 | # |
31 | # only used for packages that _must_ not pull the dependency |
| 31 | # Cabal libraries should usually be SLOTted with "${PV}". |
32 | # on cabal, but still use this eclass (e.g. haskell-updater). |
| 32 | # |
|
|
| 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 | |
33 | |
| 38 | inherit ghc-package |
34 | inherit ghc-package multilib |
| 39 | |
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:=} |
|
|
55 | |
|
|
56 | HASKELL_CABAL_EXPF="pkg_setup src_compile src_test src_install" |
|
|
57 | |
|
|
58 | case "${EAPI:-0}" in |
|
|
59 | 2|3|4) HASKELL_CABAL_EXPF+=" src_configure" ;; |
|
|
60 | *) ;; |
|
|
61 | esac |
|
|
62 | |
|
|
63 | EXPORT_FUNCTIONS ${HASKELL_CABAL_EXPF} |
| 40 | |
64 | |
| 41 | for feature in ${CABAL_FEATURES}; do |
65 | for feature in ${CABAL_FEATURES}; do |
| 42 | case ${feature} in |
66 | case ${feature} in |
| 43 | haddock) CABAL_USE_HADDOCK=yes;; |
67 | haddock) CABAL_USE_HADDOCK=yes;; |
|
|
68 | hscolour) CABAL_USE_HSCOLOUR=yes;; |
|
|
69 | hoogle) CABAL_USE_HOOGLE=yes;; |
| 44 | alex) CABAL_USE_ALEX=yes;; |
70 | alex) CABAL_USE_ALEX=yes;; |
| 45 | happy) CABAL_USE_HAPPY=yes;; |
71 | happy) CABAL_USE_HAPPY=yes;; |
| 46 | c2hs) CABAL_USE_C2HS=yes;; |
72 | c2hs) CABAL_USE_C2HS=yes;; |
| 47 | cpphs) CABAL_USE_CPPHS=yes;; |
73 | cpphs) CABAL_USE_CPPHS=yes;; |
| 48 | profile) CABAL_USE_PROFILE=yes;; |
74 | profile) CABAL_USE_PROFILE=yes;; |
| 49 | bootstrap) CABAL_BOOTSTRAP=yes;; |
75 | bootstrap) CABAL_BOOTSTRAP=yes;; |
| 50 | *) ewarn "Unknown entry in CABAL_FEATURES: ${feature}";; |
76 | bin) CABAL_HAS_BINARIES=yes;; |
|
|
77 | lib) CABAL_HAS_LIBRARIES=yes;; |
|
|
78 | nocabaldep) CABAL_FROM_GHC=yes;; |
|
|
79 | *) CABAL_UNKNOWN="${CABAL_UNKNOWN} ${feature}";; |
| 51 | esac |
80 | esac |
| 52 | done |
81 | done |
| 53 | |
82 | |
| 54 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
83 | if [[ -n "${CABAL_USE_HADDOCK}" ]]; then |
| 55 | IUSE="${IUSE} doc" |
84 | IUSE="${IUSE} doc" |
|
|
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 )" |
|
|
88 | fi |
|
|
89 | |
|
|
90 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]]; then |
|
|
91 | IUSE="${IUSE} hscolour" |
| 56 | DEPEND="${DEPEND} doc? ( dev-haskell/haddock )" |
92 | DEPEND="${DEPEND} hscolour? ( dev-haskell/hscolour )" |
| 57 | cabalconf="${cabalconf} --with-haddock=/usr/bin/haddock" |
|
|
| 58 | fi |
93 | fi |
| 59 | |
94 | |
| 60 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
95 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
| 61 | DEPEND="${DEPEND} dev-haskell/alex" |
96 | DEPEND="${DEPEND} dev-haskell/alex" |
| 62 | cabalconf="${cabalconf} --with-alex=/usr/bin/alex" |
|
|
| 63 | fi |
97 | fi |
| 64 | |
98 | |
| 65 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
99 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
| 66 | DEPEND="${DEPEND} dev-haskell/happy" |
100 | DEPEND="${DEPEND} dev-haskell/happy" |
| 67 | cabalconf="${cabalconf} --with-happy=/usr/bin/happy" |
|
|
| 68 | fi |
101 | fi |
| 69 | |
102 | |
| 70 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
103 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
| 71 | DEPEND="${DEPEND} dev-haskell/c2hs" |
104 | DEPEND="${DEPEND} dev-haskell/c2hs" |
| 72 | cabalconf="${cabalconf} --with-c2hs=/usr/bin/c2hs" |
|
|
| 73 | fi |
105 | fi |
| 74 | |
106 | |
| 75 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
107 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
| 76 | DEPEND="${DEPEND} dev-haskell/cpphs" |
108 | DEPEND="${DEPEND} dev-haskell/cpphs" |
| 77 | cabalconf="${cabalconf} --with-cpphs=/usr/bin/cpphs" |
|
|
| 78 | fi |
109 | fi |
| 79 | |
110 | |
| 80 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
111 | if [[ -n "${CABAL_USE_PROFILE}" ]]; then |
| 81 | IUSE="${IUSE} profile" |
112 | IUSE="${IUSE} profile" |
| 82 | fi |
113 | fi |
| 83 | |
114 | |
| 84 | # We always use a standalone version of Cabal, rather than the one that comes |
115 | # 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. |
116 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
|
|
117 | if [[ -z ${CABAL_MIN_VERSION} ]]; then |
|
|
118 | CABAL_MIN_VERSION=1.1.4 |
|
|
119 | fi |
|
|
120 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]]; then |
|
|
121 | DEPEND="${DEPEND} >=dev-haskell/cabal-${CABAL_MIN_VERSION}" |
|
|
122 | fi |
|
|
123 | |
|
|
124 | # Libraries require GHC to be installed. |
|
|
125 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
|
|
126 | RDEPEND="${RDEPEND} dev-lang/ghc" |
|
|
127 | fi |
|
|
128 | |
|
|
129 | # returns the version of cabal currently in use |
|
|
130 | _CABAL_VERSION_CACHE="" |
|
|
131 | cabal-version() { |
|
|
132 | if [[ -z "${_CABAL_VERSION_CACHE}" ]]; then |
| 86 | if [[ -z "${CABAL_BOOTSTRAP}" ]]; then |
133 | if [[ "${CABAL_BOOTSTRAP}" ]]; then |
| 87 | DEPEND="${DEPEND} >=dev-haskell/cabal-1.1.3" |
134 | # We're bootstrapping cabal, so the cabal version is the version |
|
|
135 | # of this package itself. |
|
|
136 | _CABAL_VERSION_CACHE="${PV}" |
|
|
137 | elif [[ "${CABAL_FROM_GHC}" ]]; then |
|
|
138 | local cabal_package=$(echo "$(ghc-libdir)"/Cabal-*) |
|
|
139 | # /path/to/ghc/Cabal-${VER} -> ${VER} |
|
|
140 | _CABAL_VERSION_CACHE="${cabal_package/*Cabal-/}" |
|
|
141 | else |
|
|
142 | # We ask portage, not ghc, so that we only pick up |
|
|
143 | # portage-installed cabal versions. |
|
|
144 | _CABAL_VERSION_CACHE="$(ghc-extractportageversion dev-haskell/cabal)" |
|
|
145 | fi |
| 88 | fi |
146 | fi |
| 89 | |
147 | echo "${_CABAL_VERSION_CACHE}" |
|
|
148 | } |
| 90 | |
149 | |
| 91 | cabal-bootstrap() { |
150 | cabal-bootstrap() { |
| 92 | local setupmodule |
151 | local setupmodule |
| 93 | local cabalversion |
152 | local cabalpackage |
| 94 | if [[ -f "${S}/Setup.lhs" ]]; then |
153 | if [[ -f "${S}/Setup.lhs" ]]; then |
| 95 | setupmodule="${S}/Setup.lhs" |
154 | setupmodule="${S}/Setup.lhs" |
| 96 | else |
|
|
| 97 | if [[ -f "${S}/Setup.hs" ]]; then |
155 | elif [[ -f "${S}/Setup.hs" ]]; then |
| 98 | setupmodule="${S}/Setup.hs" |
156 | setupmodule="${S}/Setup.hs" |
| 99 | else |
157 | else |
| 100 | die "No Setup.lhs or Setup.hs found" |
158 | die "No Setup.lhs or Setup.hs found" |
| 101 | fi |
|
|
| 102 | fi |
159 | fi |
| 103 | |
160 | |
| 104 | # We build the setup program using the latest version of |
161 | # We build the setup program using the latest version of |
| 105 | # cabal that we have installed |
162 | # cabal that we have installed |
| 106 | cabalversion=$(ghc-bestcabalversion) |
163 | cabalpackage=Cabal-$(cabal-version) |
| 107 | einfo "Using ${cabalversion}." |
164 | einfo "Using cabal-$(cabal-version)." |
| 108 | $(ghc-getghc) -package "${cabalversion}" --make "${setupmodule}" -o setup \ |
165 | |
|
|
166 | make_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 | # Disabled '-dynamic' as ghc does not embed RPATH to used extra-libraries: |
|
|
178 | # bug #411789, http://hackage.haskell.org/trac/ghc/ticket/5743#comment:3 |
|
|
179 | # make_setup -dynamic "$@" || |
| 109 | || die "compiling ${setupmodule} failed" |
180 | make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
181 | else |
|
|
182 | make_setup "$@" || die "compiling ${setupmodule} failed" |
|
|
183 | fi |
|
|
184 | } |
|
|
185 | |
|
|
186 | cabal-mksetup() { |
|
|
187 | local setupdir |
|
|
188 | |
|
|
189 | if [[ -n $1 ]]; then |
|
|
190 | setupdir=$1 |
|
|
191 | else |
|
|
192 | setupdir=${S} |
|
|
193 | fi |
|
|
194 | |
|
|
195 | rm -f "${setupdir}"/Setup.{lhs,hs} |
|
|
196 | |
|
|
197 | echo 'import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks' \ |
|
|
198 | > $setupdir/Setup.hs || die "failed to create default Setup.hs" |
|
|
199 | } |
|
|
200 | |
|
|
201 | cabal-hscolour() { |
|
|
202 | set -- hscolour "$@" |
|
|
203 | echo ./setup "$@" |
|
|
204 | ./setup "$@" || die "setup hscolour failed" |
| 110 | } |
205 | } |
| 111 | |
206 | |
| 112 | cabal-haddock() { |
207 | cabal-haddock() { |
| 113 | ./setup haddock || die "setup haddock failed" |
208 | set -- haddock "$@" |
|
|
209 | echo ./setup "$@" |
|
|
210 | ./setup "$@" || die "setup haddock failed" |
|
|
211 | } |
|
|
212 | |
|
|
213 | cabal-hscolour-haddock() { |
|
|
214 | # --hyperlink-source implies calling 'setup hscolour' |
|
|
215 | set -- haddock --hyperlink-source |
|
|
216 | echo ./setup "$@" |
|
|
217 | ./setup "$@" --hyperlink-source || die "setup haddock --hyperlink-source failed" |
| 114 | } |
218 | } |
| 115 | |
219 | |
| 116 | cabal-configure() { |
220 | cabal-configure() { |
|
|
221 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
222 | |
|
|
223 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
224 | cabalconf="${cabalconf} --with-haddock=${EPREFIX}/usr/bin/haddock" |
|
|
225 | fi |
| 117 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
226 | if [[ -n "${CABAL_USE_PROFILE}" ]] && use profile; then |
| 118 | cabalconf="${cabalconf} --enable-executable-profiling" |
227 | cabalconf="${cabalconf} --enable-library-profiling" |
| 119 | fi |
228 | fi |
|
|
229 | if [[ -n "${CABAL_USE_ALEX}" ]]; then |
|
|
230 | cabalconf="${cabalconf} --with-alex=${EPREFIX}/usr/bin/alex" |
|
|
231 | fi |
| 120 | |
232 | |
|
|
233 | if [[ -n "${CABAL_USE_HAPPY}" ]]; then |
|
|
234 | cabalconf="${cabalconf} --with-happy=${EPREFIX}/usr/bin/happy" |
|
|
235 | fi |
|
|
236 | |
|
|
237 | if [[ -n "${CABAL_USE_C2HS}" ]]; then |
|
|
238 | cabalconf="${cabalconf} --with-c2hs=${EPREFIX}/usr/bin/c2hs" |
|
|
239 | fi |
|
|
240 | if [[ -n "${CABAL_USE_CPPHS}" ]]; then |
|
|
241 | cabalconf="${cabalconf} --with-cpphs=${EPREFIX}/usr/bin/cpphs" |
|
|
242 | fi |
|
|
243 | |
|
|
244 | local option |
|
|
245 | for option in ${HCFLAGS} |
|
|
246 | do |
|
|
247 | cabalconf+=" --ghc-option=$option" |
|
|
248 | done |
|
|
249 | |
|
|
250 | # Building GHCi libs on ppc64 causes "TOC overflow". |
|
|
251 | if use ppc64; then |
|
|
252 | cabalconf="${cabalconf} --disable-library-for-ghci" |
|
|
253 | fi |
|
|
254 | |
|
|
255 | # currently cabal does not respect CFLAGS and LDFLAGS on it's own (bug #333217) |
|
|
256 | # so translate LDFLAGS to ghc parameters (without filtering) |
|
|
257 | local flag |
|
|
258 | for flag in $LDFLAGS; do cabalconf="${cabalconf} --ghc-option=-optl$flag"; done |
|
|
259 | |
|
|
260 | # disable executable stripping for the executables, as portage will |
|
|
261 | # strip by itself, and pre-stripping gives a QA warning. |
|
|
262 | # cabal versions previous to 1.4 does not strip executables, and does |
|
|
263 | # not accept the flag. |
|
|
264 | # this fixes numerous bugs, amongst them; |
|
|
265 | # bug #251881, bug #251882, bug #251884, bug #251886, bug #299494 |
|
|
266 | cabalconf="${cabalconf} --disable-executable-stripping" |
|
|
267 | |
|
|
268 | cabalconf="${cabalconf} --docdir=${EPREFIX}/usr/share/doc/${PF}" |
|
|
269 | # As of Cabal 1.2, configure is quite quiet. For diagnostic purposes |
|
|
270 | # it's better if the configure chatter is in the build logs: |
|
|
271 | cabalconf="${cabalconf} --verbose" |
|
|
272 | |
|
|
273 | # We build shared version of our Cabal where ghc ships it's shared |
|
|
274 | # version of it. We will link ./setup as dynamic binary againt Cabal later. |
|
|
275 | [[ ${CATEGORY}/${PN} == "dev-haskell/cabal" ]] && \ |
|
|
276 | $(ghc-supports-shared-libraries) && \ |
|
|
277 | cabalconf="${cabalconf} --enable-shared" |
|
|
278 | |
| 121 | ./setup configure \ |
279 | set -- configure \ |
| 122 | --ghc --prefix=/usr \ |
280 | --ghc --prefix="${EPREFIX}"/usr \ |
| 123 | --with-compiler="$(ghc-getghc)" \ |
281 | --with-compiler="$(ghc-getghc)" \ |
| 124 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
282 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
|
|
283 | --prefix="${EPREFIX}"/usr \ |
|
|
284 | --libdir="${EPREFIX}"/usr/$(get_libdir) \ |
|
|
285 | --libsubdir=${P}/ghc-$(ghc-version) \ |
|
|
286 | --datadir="${EPREFIX}"/usr/share/ \ |
|
|
287 | --datasubdir=${P}/ghc-$(ghc-version) \ |
| 125 | ${cabalconf} \ |
288 | ${cabalconf} \ |
|
|
289 | ${CABAL_CONFIGURE_FLAGS} \ |
|
|
290 | ${CABAL_EXTRA_CONFIGURE_FLAGS} \ |
|
|
291 | "$@" |
|
|
292 | echo ./setup "$@" |
| 126 | "$@" || die "setup configure failed" |
293 | ./setup "$@" || die "setup configure failed" |
| 127 | } |
294 | } |
| 128 | |
295 | |
| 129 | cabal-build() { |
296 | cabal-build() { |
| 130 | ./setup build \ |
297 | unset LANG LC_ALL LC_MESSAGES |
|
|
298 | set -- build ${CABAL_EXTRA_BUILD_FLAGS} "$@" |
|
|
299 | echo ./setup "$@" |
|
|
300 | ./setup "$@" \ |
| 131 | || die "setup build failed" |
301 | || die "setup build failed" |
| 132 | } |
302 | } |
| 133 | |
303 | |
| 134 | cabal-copy() { |
304 | cabal-copy() { |
| 135 | ./setup copy \ |
305 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED=${D} |
| 136 | --copy-prefix="${D}/usr" \ |
306 | |
|
|
307 | set -- copy --destdir="${D}" "$@" |
|
|
308 | echo ./setup "$@" |
| 137 | || die "setup copy failed" |
309 | ./setup "$@" || die "setup copy failed" |
| 138 | |
310 | |
| 139 | # cabal is a bit eager about creating dirs, |
311 | # cabal is a bit eager about creating dirs, |
| 140 | # so remove them if they are empty |
312 | # so remove them if they are empty |
| 141 | rmdir "${D}/usr/bin" 2> /dev/null |
313 | 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 | } |
314 | } |
| 150 | |
315 | |
| 151 | cabal-pkg() { |
316 | cabal-pkg() { |
| 152 | # This does not actually register since we're using /usr/bin/true instead |
317 | # 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 |
318 | # of ghc-pkg. So it just leaves the .conf file and we can |
| 154 | # register that ourselves (if it exists). |
319 | # register that ourselves (if it exists). |
| 155 | sed -i 's:ghc-pkg:/usr/bin/true:' .setup-config |
320 | |
| 156 | ./setup register || die "setup register failed" |
321 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
| 157 | if [[ -f .installed-pkg-config ]]; then |
322 | # Newer cabal can generate a package conf for us: |
| 158 | ghc-setup-pkg .installed-pkg-config |
323 | ./setup register --gen-pkg-config="${T}/${P}.conf" |
|
|
324 | ghc-setup-pkg "${T}/${P}.conf" |
| 159 | ghc-install-pkg |
325 | ghc-install-pkg |
| 160 | fi |
326 | fi |
|
|
327 | } |
|
|
328 | |
|
|
329 | # Some cabal libs are bundled along with some versions of ghc |
|
|
330 | # eg filepath-1.0 comes with ghc-6.6.1 |
|
|
331 | # by putting CABAL_CORE_LIB_GHC_PV="6.6.1" in an ebuild we are declaring that |
|
|
332 | # when building with this version of ghc, the ebuild is a dummy that is it will |
|
|
333 | # install no files since the package is already included with ghc. |
|
|
334 | # However portage still records the dependency and we can upgrade the package |
|
|
335 | # to a later one that's not included with ghc. |
|
|
336 | # You can also put a space separated list, eg CABAL_CORE_LIB_GHC_PV="6.6 6.6.1". |
|
|
337 | cabal-is-dummy-lib() { |
|
|
338 | for version in ${CABAL_CORE_LIB_GHC_PV[*]}; do |
|
|
339 | [[ "$(ghc-version)" == "$version" ]] && return 0 |
|
|
340 | done |
|
|
341 | return 1 |
| 161 | } |
342 | } |
| 162 | |
343 | |
| 163 | # exported function: check if cabal is correctly installed for |
344 | # exported function: check if cabal is correctly installed for |
| 164 | # the currently active ghc (we cannot guarantee this with portage) |
345 | # the currently active ghc (we cannot guarantee this with portage) |
| 165 | haskell-cabal_pkg_setup() { |
346 | haskell-cabal_pkg_setup() { |
| 166 | if [[ -z "${CABAL_BOOTSTRAP}" ]] && ! ghc-sanecabal "1.1.3"; then |
347 | if [[ -z "${CABAL_BOOTSTRAP}" && -z "${CABAL_FROM_GHC}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
| 167 | eerror "The package dev-haskell/cabal is not correctly installed for" |
348 | eerror "The package dev-haskell/cabal is not correctly installed for" |
| 168 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
349 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
| 169 | eerror "run ghc-updater or re-emerge dev-haskell/cabal." |
350 | eerror "run haskell-updater or re-build dev-haskell/cabal." |
| 170 | die "cabal is not correctly installed" |
351 | die "cabal is not correctly installed" |
| 171 | fi |
352 | fi |
|
|
353 | if [[ -z "${CABAL_HAS_BINARIES}" ]] && [[ -z "${CABAL_HAS_LIBRARIES}" ]]; then |
|
|
354 | eqawarn "QA Notice: Neither bin nor lib are in CABAL_FEATURES." |
|
|
355 | fi |
|
|
356 | if [[ -n "${CABAL_UNKNOWN}" ]]; then |
|
|
357 | eqawarn "QA Notice: Unknown entry in CABAL_FEATURES: ${CABAL_UNKNOWN}" |
|
|
358 | fi |
|
|
359 | if cabal-is-dummy-lib; then |
|
|
360 | einfo "${P} is included in ghc-${CABAL_CORE_LIB_GHC_PV}, nothing to install." |
|
|
361 | fi |
|
|
362 | } |
|
|
363 | |
|
|
364 | haskell-cabal_src_configure() { |
|
|
365 | cabal-is-dummy-lib && return |
|
|
366 | |
|
|
367 | pushd "${S}" > /dev/null |
|
|
368 | |
|
|
369 | cabal-bootstrap |
|
|
370 | |
|
|
371 | cabal-configure "$@" |
|
|
372 | |
|
|
373 | popd > /dev/null |
|
|
374 | } |
|
|
375 | |
|
|
376 | # exported function: nice alias |
|
|
377 | cabal_src_configure() { |
|
|
378 | haskell-cabal_src_configure "$@" |
| 172 | } |
379 | } |
| 173 | |
380 | |
| 174 | # exported function: cabal-style bootstrap configure and compile |
381 | # exported function: cabal-style bootstrap configure and compile |
| 175 | cabal_src_compile() { |
382 | cabal_src_compile() { |
| 176 | cabal-bootstrap |
383 | # it's a common mistake when one bumps ebuild to EAPI="2" (and upper) |
| 177 | cabal-configure |
384 | # and forgets to separate src_compile() to src_configure()/src_compile(). |
|
|
385 | # Such error leads to default src_configure and we lose all passed flags. |
|
|
386 | if ! has "${EAPI:-0}" 0 1; then |
|
|
387 | local passed_flag |
|
|
388 | for passed_flag in "$@"; do |
|
|
389 | [[ ${passed_flag} == --flags=* ]] && \ |
|
|
390 | eqawarn "QA Notice: Cabal option '${passed_flag}' has effect only in src_configure()" |
|
|
391 | done |
|
|
392 | fi |
|
|
393 | |
|
|
394 | cabal-is-dummy-lib && return |
|
|
395 | |
|
|
396 | has src_configure ${HASKELL_CABAL_EXPF} || haskell-cabal_src_configure "$@" |
| 178 | cabal-build |
397 | cabal-build |
| 179 | |
398 | |
| 180 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
399 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
400 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
401 | # hscolour and haddock |
|
|
402 | cabal-hscolour-haddock |
|
|
403 | else |
|
|
404 | # just haddock |
| 181 | cabal-haddock |
405 | cabal-haddock |
| 182 | fi |
406 | fi |
|
|
407 | else |
|
|
408 | if [[ -n "${CABAL_USE_HSCOLOUR}" ]] && use hscolour; then |
|
|
409 | # just hscolour |
|
|
410 | cabal-hscolour |
|
|
411 | fi |
|
|
412 | fi |
| 183 | } |
413 | } |
|
|
414 | |
| 184 | haskell-cabal_src_compile() { |
415 | haskell-cabal_src_compile() { |
|
|
416 | pushd "${S}" > /dev/null |
|
|
417 | |
| 185 | cabal_src_compile |
418 | cabal_src_compile "$@" |
|
|
419 | |
|
|
420 | popd > /dev/null |
|
|
421 | } |
|
|
422 | |
|
|
423 | haskell-cabal_src_test() { |
|
|
424 | pushd "${S}" > /dev/null |
|
|
425 | |
|
|
426 | if cabal-is-dummy-lib; then |
|
|
427 | einfo ">>> No tests for dummy library: ${CATEGORY}/${PF}" |
|
|
428 | else |
|
|
429 | einfo ">>> Test phase [cabal test]: ${CATEGORY}/${PF}" |
|
|
430 | set -- test "$@" |
|
|
431 | echo ./setup "$@" |
|
|
432 | ./setup "$@" || die "cabal test failed" |
|
|
433 | fi |
|
|
434 | |
|
|
435 | popd > /dev/null |
| 186 | } |
436 | } |
| 187 | |
437 | |
| 188 | # exported function: cabal-style copy and register |
438 | # exported function: cabal-style copy and register |
| 189 | cabal_src_install() { |
439 | cabal_src_install() { |
|
|
440 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
|
|
441 | |
|
|
442 | if ! cabal-is-dummy-lib; then |
| 190 | cabal-copy |
443 | cabal-copy |
| 191 | cabal-pkg |
444 | cabal-pkg |
| 192 | |
|
|
| 193 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
| 194 | dohtml dist/doc/html/* |
|
|
| 195 | fi |
445 | fi |
|
|
446 | |
|
|
447 | # create a dummy local package conf file for haskell-updater |
|
|
448 | # if it does not exist (dummy libraries and binaries w/o libraries) |
|
|
449 | local ghc_confdir_with_prefix="$(ghc-confdir)" |
|
|
450 | # remove EPREFIX |
|
|
451 | dodir ${ghc_confdir_with_prefix#${EPREFIX}} |
|
|
452 | local conf_file="${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
|
|
453 | [[ -e $conf_file ]] || echo '[]' > "$conf_file" || die |
| 196 | } |
454 | } |
|
|
455 | |
| 197 | haskell-cabal_src_install() { |
456 | haskell-cabal_src_install() { |
|
|
457 | pushd "${S}" > /dev/null |
|
|
458 | |
| 198 | cabal_src_install |
459 | cabal_src_install |
| 199 | } |
|
|
| 200 | |
460 | |
| 201 | EXPORT_FUNCTIONS pkg_setup src_compile src_install |
461 | popd > /dev/null |
|
|
462 | } |
|
|
463 | |
|
|
464 | # ebuild.sh:use_enable() taken as base |
|
|
465 | # |
|
|
466 | # Usage examples: |
|
|
467 | # |
|
|
468 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gui) |
|
|
469 | # leads to "--flags=gui" or "--flags=-gui" (useflag 'gui') |
|
|
470 | # |
|
|
471 | # CABAL_CONFIGURE_FLAGS=$(cabal_flag gtk gui) |
|
|
472 | # also leads to "--flags=gui" or " --flags=-gui" (useflag 'gtk') |
|
|
473 | # |
|
|
474 | cabal_flag() { |
|
|
475 | if [[ -z "$1" ]]; then |
|
|
476 | echo "!!! cabal_flag() called without a parameter." >&2 |
|
|
477 | echo "!!! cabal_flag() <USEFLAG> [<cabal_flagname>]" >&2 |
|
|
478 | return 1 |
|
|
479 | fi |
|
|
480 | |
|
|
481 | local UWORD=${2:-$1} |
|
|
482 | |
|
|
483 | if use "$1"; then |
|
|
484 | echo "--flags=${UWORD}" |
|
|
485 | else |
|
|
486 | echo "--flags=-${UWORD}" |
|
|
487 | fi |
|
|
488 | |
|
|
489 | return 0 |
|
|
490 | } |