| 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.10 2007/03/13 12:02:04 kosmikus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/haskell-cabal.eclass,v 1.11 2007/07/25 18:07:02 dcoutts 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 | # |
| … | |
… | |
| 38 | # in the ebuild. |
38 | # in the ebuild. |
| 39 | # |
39 | # |
| 40 | # Special flags to Cabal Configure can now be set by using |
40 | # Special flags to Cabal Configure can now be set by using |
| 41 | # CABAL_CONFIGURE_FLAGS |
41 | # CABAL_CONFIGURE_FLAGS |
| 42 | |
42 | |
| 43 | inherit ghc-package |
43 | inherit ghc-package multilib |
| 44 | |
44 | |
| 45 | |
45 | |
| 46 | for feature in ${CABAL_FEATURES}; do |
46 | for feature in ${CABAL_FEATURES}; do |
| 47 | case ${feature} in |
47 | case ${feature} in |
| 48 | haddock) CABAL_USE_HADDOCK=yes;; |
48 | haddock) CABAL_USE_HADDOCK=yes;; |
| … | |
… | |
| 88 | IUSE="${IUSE} profile" |
88 | IUSE="${IUSE} profile" |
| 89 | fi |
89 | fi |
| 90 | |
90 | |
| 91 | # We always use a standalone version of Cabal, rather than the one that comes |
91 | # We always use a standalone version of Cabal, rather than the one that comes |
| 92 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
92 | # with GHC. But of course we can't depend on cabal when building cabal itself. |
|
|
93 | CABAL_MIN_VERSION=1.1.4 |
| 93 | if [[ -z "${CABAL_BOOTSTRAP}" ]]; then |
94 | if [[ -z "${CABAL_BOOTSTRAP}" ]]; then |
| 94 | DEPEND="${DEPEND} >=dev-haskell/cabal-1.1.3" |
95 | DEPEND="${DEPEND} >=dev-haskell/cabal-${CABAL_MIN_VERSION}" |
| 95 | fi |
96 | fi |
| 96 | |
97 | |
| 97 | # Libraries require GHC to be installed. |
98 | # Libraries require GHC to be installed. |
| 98 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
99 | if [[ -n "${CABAL_HAS_LIBRARIES}" ]]; then |
| 99 | RDEPEND="${RDEPEND} virtual/ghc" |
100 | RDEPEND="${RDEPEND} dev-lang/ghc" |
| 100 | fi |
101 | fi |
| 101 | |
102 | |
| 102 | cabal-bootstrap() { |
103 | cabal-bootstrap() { |
| 103 | local setupmodule |
104 | local setupmodule |
| 104 | local cabalversion |
105 | local cabalversion |
| … | |
… | |
| 132 | # Building GHCi libs on ppc64 causes "TOC overflow". |
133 | # Building GHCi libs on ppc64 causes "TOC overflow". |
| 133 | if use ppc64; then |
134 | if use ppc64; then |
| 134 | cabalconf="${cabalconf} --disable-library-for-ghci" |
135 | cabalconf="${cabalconf} --disable-library-for-ghci" |
| 135 | fi |
136 | fi |
| 136 | |
137 | |
|
|
138 | # Note: with Cabal-1.1.6.x we still do not have enough control |
|
|
139 | # to put the docs into the right place. They're currently going |
|
|
140 | # into /usr/share/${P}/ghc-x.y/doc/ |
|
|
141 | # rather than /usr/share/doc/${PF}/ |
|
|
142 | # Because we can only set the datadir, not the docdir. |
|
|
143 | |
| 137 | ./setup configure \ |
144 | ./setup configure \ |
| 138 | --ghc --prefix=/usr \ |
145 | --ghc --prefix=/usr \ |
| 139 | --with-compiler="$(ghc-getghc)" \ |
146 | --with-compiler="$(ghc-getghc)" \ |
| 140 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
147 | --with-hc-pkg="$(ghc-getghcpkg)" \ |
|
|
148 | --prefix=/usr \ |
|
|
149 | --libdir=/usr/$(get_libdir) \ |
|
|
150 | --libsubdir=${P}/ghc-$(ghc-version) \ |
|
|
151 | --datadir=/usr/share/ \ |
|
|
152 | --datasubdir=${P}/ghc-$(ghc-version) \ |
| 141 | ${cabalconf} \ |
153 | ${cabalconf} \ |
| 142 | ${CABAL_CONFIGURE_FLAGS} \ |
154 | ${CABAL_CONFIGURE_FLAGS} \ |
| 143 | "$@" || die "setup configure failed" |
155 | "$@" || die "setup configure failed" |
| 144 | } |
156 | } |
| 145 | |
157 | |
| … | |
… | |
| 148 | || die "setup build failed" |
160 | || die "setup build failed" |
| 149 | } |
161 | } |
| 150 | |
162 | |
| 151 | cabal-copy() { |
163 | cabal-copy() { |
| 152 | ./setup copy \ |
164 | ./setup copy \ |
| 153 | --copy-prefix="${D}/usr" \ |
165 | --destdir="${D}" \ |
| 154 | || die "setup copy failed" |
166 | || die "setup copy failed" |
| 155 | |
167 | |
| 156 | # cabal is a bit eager about creating dirs, |
168 | # cabal is a bit eager about creating dirs, |
| 157 | # so remove them if they are empty |
169 | # so remove them if they are empty |
| 158 | rmdir "${D}/usr/bin" 2> /dev/null |
170 | rmdir "${D}/usr/bin" 2> /dev/null |
| … | |
… | |
| 161 | # no workaround. |
173 | # no workaround. |
| 162 | # set the +x permission on executables |
174 | # set the +x permission on executables |
| 163 | if [[ -d "${D}/usr/bin" ]] ; then |
175 | if [[ -d "${D}/usr/bin" ]] ; then |
| 164 | chmod +x "${D}/usr/bin/"* |
176 | chmod +x "${D}/usr/bin/"* |
| 165 | fi |
177 | fi |
|
|
178 | # TODO: do we still need this? |
| 166 | } |
179 | } |
| 167 | |
180 | |
| 168 | cabal-pkg() { |
181 | cabal-pkg() { |
| 169 | # This does not actually register since we're using true instead |
182 | # This does not actually register since we're using true instead |
| 170 | # of ghc-pkg. So it just leaves the .installed-pkg-config and we can |
183 | # of ghc-pkg. So it just leaves the .installed-pkg-config and we can |
| 171 | # register that ourselves (if it exists). |
184 | # register that ourselves (if it exists). |
| 172 | local result |
185 | local result |
| 173 | local err |
186 | local err |
| 174 | |
187 | |
| 175 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
188 | if [[ -n ${CABAL_HAS_LIBRARIES} ]]; then |
| 176 | sed -i "s|$(ghc-getghcpkg)|$(type -P true)|" .setup-config |
189 | sed -i "s|$(ghc-getghcpkg)|$(which true)|" .setup-config |
| 177 | ./setup register || die "setup register failed" |
190 | ./setup register || die "setup register failed" |
| 178 | if [[ -f .installed-pkg-config ]]; then |
191 | if [[ -f .installed-pkg-config ]]; then |
| 179 | ghc-setup-pkg .installed-pkg-config |
192 | ghc-setup-pkg .installed-pkg-config |
| 180 | ghc-install-pkg |
193 | ghc-install-pkg |
| 181 | else |
194 | else |
| … | |
… | |
| 185 | } |
198 | } |
| 186 | |
199 | |
| 187 | # exported function: check if cabal is correctly installed for |
200 | # exported function: check if cabal is correctly installed for |
| 188 | # the currently active ghc (we cannot guarantee this with portage) |
201 | # the currently active ghc (we cannot guarantee this with portage) |
| 189 | haskell-cabal_pkg_setup() { |
202 | haskell-cabal_pkg_setup() { |
| 190 | ghc-package_pkg_setup |
203 | ghc-package_pkg_setup |
| 191 | if [[ -z "${CABAL_BOOTSTRAP}" ]] && ! ghc-sanecabal "1.1.3"; then |
204 | if [[ -z "${CABAL_BOOTSTRAP}" ]] && ! ghc-sanecabal "${CABAL_MIN_VERSION}"; then |
| 192 | eerror "The package dev-haskell/cabal is not correctly installed for" |
205 | eerror "The package dev-haskell/cabal is not correctly installed for" |
| 193 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
206 | eerror "the currently active version of ghc ($(ghc-version)). Please" |
| 194 | eerror "run ghc-updater or re-emerge dev-haskell/cabal." |
207 | eerror "run ghc-updater or re-emerge dev-haskell/cabal." |
| 195 | die "cabal is not correctly installed" |
208 | die "cabal is not correctly installed" |
| 196 | fi |
209 | fi |
| … | |
… | |
| 220 | cabal_src_install() { |
233 | cabal_src_install() { |
| 221 | cabal-copy |
234 | cabal-copy |
| 222 | cabal-pkg |
235 | cabal-pkg |
| 223 | |
236 | |
| 224 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
237 | if [[ -n "${CABAL_USE_HADDOCK}" ]] && use doc; then |
|
|
238 | local cabalversion=$(ghc-extractportageversion dev-haskell/cabal) |
|
|
239 | if ! version_is_at_least "1.1.6" "${cabalversion}"; then |
| 225 | dohtml -r dist/doc/html/* |
240 | dohtml -r dist/doc/html/* |
|
|
241 | fi |
| 226 | fi |
242 | fi |
| 227 | } |
243 | } |
| 228 | haskell-cabal_src_install() { |
244 | haskell-cabal_src_install() { |
| 229 | cabal_src_install |
245 | cabal_src_install |
| 230 | } |
246 | } |