| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 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/ghc-package.eclass,v 1.6 2005/03/18 23:31:48 kosmikus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.29 2011/03/13 20:12:13 slyfox Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Andres Loeh <kosmikus@gentoo.org> |
5 | # @ECLASS: ghc-package.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # "Gentoo's Haskell Language team" <haskell@gentoo.org> |
| 6 | # |
8 | # |
|
|
9 | # Original Author: Andres Loeh <kosmikus@gentoo.org> |
|
|
10 | # |
| 7 | # This eclass helps with the Glasgow Haskell Compiler's package |
11 | # @BLURB: This eclass helps with the Glasgow Haskell Compiler's package configuration utility. |
| 8 | # configuration utility. |
12 | # @DESCRIPTION: |
|
|
13 | # Helper eclass to handle ghc installation/upgrade/deinstallation process. |
| 9 | |
14 | |
| 10 | inherit versionator |
15 | inherit versionator |
| 11 | |
16 | |
| 12 | ECLASS="ghc-package" |
17 | # @FUNCTION: ghc-getghc |
| 13 | INHERITED="${INHERITED} ${ECLASS}" |
18 | # @DESCRIPTION: |
| 14 | |
|
|
| 15 | PATH="${PATH}:/opt/ghc/bin" |
|
|
| 16 | |
|
|
| 17 | # for later configuration using environment variables/ |
|
|
| 18 | # returns the name of the ghc executable |
19 | # returns the name of the ghc executable |
| 19 | ghc-getghc() { |
20 | ghc-getghc() { |
| 20 | echo "ghc" |
21 | type -P ghc |
| 21 | } |
22 | } |
| 22 | |
23 | |
|
|
24 | # @FUNCTION: ghc-getghcpkg |
|
|
25 | # @DESCRIPTION: |
| 23 | # returns the name of the ghc-pkg executable |
26 | # Internal function determines returns the name of the ghc-pkg executable |
| 24 | ghc-getghcpkg() { |
27 | ghc-getghcpkg() { |
| 25 | echo "ghc-pkg" |
28 | type -P ghc-pkg |
| 26 | } |
29 | } |
| 27 | |
30 | |
|
|
31 | # @FUNCTION: ghc-getghcpkgbin |
|
|
32 | # @DESCRIPTION: |
| 28 | # returns the name of the ghc-pkg binary (ghc-pkg |
33 | # returns the name of the ghc-pkg binary (ghc-pkg |
| 29 | # itself usually is a shell script, and we have to |
34 | # itself usually is a shell script, and we have to |
| 30 | # bypass the script under certain circumstances); |
35 | # bypass the script under certain circumstances); |
| 31 | # for Cabal, we add the global package config file, |
36 | # for Cabal, we add an empty global package config file, |
| 32 | # because for some reason that's required |
37 | # because for some reason the global package file |
|
|
38 | # must be specified |
| 33 | ghc-getghcpkgbin() { |
39 | ghc-getghcpkgbin() { |
|
|
40 | if version_is_at_least "6.10" "$(ghc-version)"; then |
|
|
41 | # the ghc-pkg executable changed name in ghc 6.10, as it no longer needs |
|
|
42 | # the wrapper script with the static flags |
|
|
43 | echo '[]' > "${T}/empty.conf" |
|
|
44 | echo "$(ghc-libdir)/ghc-pkg" "--global-conf=${T}/empty.conf" |
| 34 | if ghc-cabal; then |
45 | elif ghc-cabal; then |
|
|
46 | echo '[]' > "${T}/empty.conf" |
| 35 | echo $(ghc-libdir)/"ghc-pkg.bin" "--global-conf=$(ghc-libdir)/package.conf" |
47 | echo "$(ghc-libdir)/ghc-pkg.bin" "--global-conf=${T}/empty.conf" |
| 36 | else |
48 | else |
| 37 | echo $(ghc-libdir)/"ghc-pkg.bin" |
49 | echo "$(ghc-libdir)/ghc-pkg.bin" |
| 38 | fi |
50 | fi |
| 39 | } |
51 | } |
| 40 | |
52 | |
|
|
53 | # @FUNCTION: ghc-version |
|
|
54 | # @DESCRIPTION: |
| 41 | # returns the version of ghc |
55 | # returns the version of ghc |
| 42 | _GHC_VERSION_CACHE="" |
56 | _GHC_VERSION_CACHE="" |
| 43 | ghc-version() { |
57 | ghc-version() { |
| 44 | if [[ -z "${_GHC_VERSION_CACHE}" ]]; then |
58 | if [[ -z "${_GHC_VERSION_CACHE}" ]]; then |
| 45 | _GHC_VERSION_CACHE="$($(ghc-getghc) --version | sed 's:^.*version ::')" |
59 | _GHC_VERSION_CACHE="$($(ghc-getghc) --numeric-version)" |
| 46 | fi |
60 | fi |
| 47 | echo "${_GHC_VERSION_CACHE}" |
61 | echo "${_GHC_VERSION_CACHE}" |
| 48 | } |
62 | } |
| 49 | |
63 | |
| 50 | # returns true for ghc >= 6.4 |
64 | # @FUNCTION: ghc-cabal |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # this function can be used to determine if ghc itself |
|
|
67 | # uses the Cabal package format; it has nothing to do |
|
|
68 | # with the Cabal libraries ... ghc uses the Cabal package |
|
|
69 | # format since version 6.4 |
| 51 | ghc-cabal() { |
70 | ghc-cabal() { |
| 52 | version_is_at_least "6.4" "$(ghc-version)" |
71 | version_is_at_least "6.4" "$(ghc-version)" |
| 53 | } |
72 | } |
| 54 | |
73 | |
|
|
74 | # @FUNCTION: ghc-bestcabalversion |
|
|
75 | # @DESCRIPTION: |
|
|
76 | # return the best version of the Cabal library that is available |
|
|
77 | ghc-bestcabalversion() { |
|
|
78 | local cabalversion |
|
|
79 | if ghc-cabal; then |
|
|
80 | # We ask portage, not ghc, so that we only pick up |
|
|
81 | # portage-installed cabal versions. |
|
|
82 | cabalversion="$(ghc-extractportageversion dev-haskell/cabal)" |
|
|
83 | echo "Cabal-${cabalversion}" |
|
|
84 | else |
|
|
85 | # older ghc's don't support package versioning |
|
|
86 | echo Cabal |
|
|
87 | fi |
|
|
88 | } |
|
|
89 | |
|
|
90 | # @FUNCTION: ghc-sanecabal |
|
|
91 | # @DESCRIPTION: |
|
|
92 | # check if a standalone Cabal version is available for the |
|
|
93 | # currently used ghc; takes minimal version of Cabal as |
|
|
94 | # an optional argument |
|
|
95 | ghc-sanecabal() { |
|
|
96 | local f |
|
|
97 | local version |
|
|
98 | if [[ -z "$1" ]]; then version="1.0.1"; else version="$1"; fi |
|
|
99 | for f in $(ghc-confdir)/cabal-*; do |
|
|
100 | [[ -f "${f}" ]] && version_is_at_least "${version}" "${f#*cabal-}" && return |
|
|
101 | done |
|
|
102 | return 1 |
|
|
103 | } |
|
|
104 | |
|
|
105 | # @FUNCTION: ghc-saneghc |
|
|
106 | # @DESCRIPTION: |
|
|
107 | # checks if ghc and ghc-bin are installed in the same version |
|
|
108 | # (if they're both installed); if this is not the case, we |
|
|
109 | # unfortunately cannot trust portage's dependency resolution |
|
|
110 | ghc-saneghc() { |
|
|
111 | local ghcversion |
|
|
112 | local ghcbinversion |
|
|
113 | if [[ "${PN}" == "ghc" || "${PN}" == "ghc-bin" ]]; then |
|
|
114 | return |
|
|
115 | fi |
|
|
116 | if has_version dev-lang/ghc && has_version dev-lang/ghc-bin; then |
|
|
117 | ghcversion="$(ghc-extractportageversion dev-lang/ghc)" |
|
|
118 | ghcbinversion="$(ghc-extractportageversion dev-lang/ghc-bin)" |
|
|
119 | if [[ "${ghcversion}" != "${ghcbinversion}" ]]; then |
|
|
120 | return 1 |
|
|
121 | fi |
|
|
122 | fi |
|
|
123 | return |
|
|
124 | } |
|
|
125 | |
|
|
126 | # @FUNCTION: ghc-extractportageversion |
|
|
127 | # @DESCRIPTION: |
|
|
128 | # extract the version of a portage-installed package |
|
|
129 | ghc-extractportageversion() { |
|
|
130 | local pkg |
|
|
131 | local version |
|
|
132 | pkg="$(best_version $1)" |
|
|
133 | version="${pkg#$1-}" |
|
|
134 | version="${version%-r*}" |
|
|
135 | version="${version%_pre*}" |
|
|
136 | echo "${version}" |
|
|
137 | } |
|
|
138 | |
|
|
139 | # @FUNCTION: ghc-libdir |
|
|
140 | # @DESCRIPTION: |
| 55 | # returns the library directory |
141 | # returns the library directory |
| 56 | _GHC_LIBDIR_CACHE="" |
142 | _GHC_LIBDIR_CACHE="" |
| 57 | ghc-libdir() { |
143 | ghc-libdir() { |
| 58 | if [[ -z "${_GHC_LIBDIR_CACHE}" ]]; then |
144 | if [[ -z "${_GHC_LIBDIR_CACHE}" ]]; then |
| 59 | _GHC_LIBDIR_CACHE="$($(ghc-getghc) --print-libdir)" |
145 | _GHC_LIBDIR_CACHE="$($(ghc-getghc) --print-libdir)" |
| 60 | fi |
146 | fi |
| 61 | echo "${_GHC_LIBDIR_CACHE}" |
147 | echo "${_GHC_LIBDIR_CACHE}" |
| 62 | } |
148 | } |
| 63 | |
149 | |
|
|
150 | # @FUNCTION: ghc-confdir |
|
|
151 | # @DESCRIPTION: |
| 64 | # returns the (Gentoo) library configuration directory |
152 | # returns the (Gentoo) library configuration directory |
| 65 | ghc-confdir() { |
153 | ghc-confdir() { |
| 66 | echo $(ghc-libdir)/gentoo |
154 | echo "$(ghc-libdir)/gentoo" |
| 67 | } |
155 | } |
| 68 | |
156 | |
|
|
157 | # @FUNCTION: ghc-localpkgconf |
|
|
158 | # @DESCRIPTION: |
| 69 | # returns the name of the local (package-specific) |
159 | # returns the name of the local (package-specific) |
| 70 | # package configuration file |
160 | # package configuration file |
| 71 | ghc-localpkgconf() { |
161 | ghc-localpkgconf() { |
| 72 | echo "${PF}.conf" |
162 | echo "${PF}.conf" |
| 73 | } |
163 | } |
| 74 | |
164 | |
|
|
165 | # @FUNCTION: ghc-makeghcilib |
|
|
166 | # @DESCRIPTION: |
| 75 | # make a ghci foo.o file from a libfoo.a file |
167 | # make a ghci foo.o file from a libfoo.a file |
| 76 | ghc-makeghcilib() { |
168 | ghc-makeghcilib() { |
| 77 | local outfile |
169 | local outfile |
| 78 | outfile="$(dirname $1)/$(basename $1 | sed 's:^lib\?\(.*\)\.a$:\1.o:')" |
170 | outfile="$(dirname $1)/$(basename $1 | sed 's:^lib\?\(.*\)\.a$:\1.o:')" |
| 79 | ld --relocatable --discard-all --output="${outfile}" --whole-archive $1 |
171 | ld --relocatable --discard-all --output="${outfile}" --whole-archive "$1" |
| 80 | } |
172 | } |
| 81 | |
173 | |
|
|
174 | # @FUNCTION: ghc-makeghcilib |
|
|
175 | # @DESCRIPTION: |
|
|
176 | # tests if a ghc package exists |
|
|
177 | ghc-package-exists() { |
|
|
178 | local describe_flag |
|
|
179 | if version_is_at_least "6.4" "$(ghc-version)"; then |
|
|
180 | describe_flag="describe" |
|
|
181 | else |
|
|
182 | describe_flag="--show-package" |
|
|
183 | fi |
|
|
184 | |
|
|
185 | $(ghc-getghcpkg) "${describe_flag}" "$1" > /dev/null 2>&1 |
|
|
186 | } |
|
|
187 | |
|
|
188 | # @FUNCTION: ghc-setup-pkg |
|
|
189 | # @DESCRIPTION: |
| 82 | # creates a local (package-specific) package |
190 | # creates a local (package-specific) package |
| 83 | # configuration file; the arguments should be |
191 | # configuration file; the arguments should be |
| 84 | # uninstalled package description files, each |
192 | # uninstalled package description files, each |
| 85 | # containing a single package description; if |
193 | # containing a single package description; if |
| 86 | # no arguments are given, the resulting file is |
194 | # no arguments are given, the resulting file is |
| 87 | # empty |
195 | # empty |
| 88 | ghc-setup-pkg() { |
196 | ghc-setup-pkg() { |
| 89 | local localpkgconf |
197 | local localpkgconf |
| 90 | localpkgconf="${S}/$(ghc-localpkgconf)" |
198 | localpkgconf="${S}/$(ghc-localpkgconf)" |
| 91 | echo '[' > ${localpkgconf} |
199 | echo '[]' > "${localpkgconf}" |
| 92 | while [ -n "$1" ]; do |
200 | local update_flag |
| 93 | cat "$1" >> ${localpkgconf} |
201 | if version_is_at_least "6.4" "$(ghc-version)"; then |
| 94 | shift |
202 | update_flag="update -" |
| 95 | [ -n "$1" ] && echo ',' >> ${localpkgconf} |
203 | else |
|
|
204 | update_flag="--update-package" |
|
|
205 | fi |
|
|
206 | for pkg in $*; do |
|
|
207 | $(ghc-getghcpkgbin) -f "${localpkgconf}" ${update_flag} --force \ |
|
|
208 | < "${pkg}" || die "failed to register ${pkg}" |
| 96 | done |
209 | done |
| 97 | echo ']' >> ${localpkgconf} |
|
|
| 98 | } |
210 | } |
| 99 | |
211 | |
|
|
212 | # @FUNCTION: ghc-fixlibpath |
|
|
213 | # @DESCRIPTION: |
|
|
214 | # fixes the library and import directories path |
|
|
215 | # of the package configuration file |
|
|
216 | ghc-fixlibpath() { |
|
|
217 | sed -i "s|$1|$(ghc-libdir)|g" "${S}/$(ghc-localpkgconf)" |
|
|
218 | if [[ -n "$2" ]]; then |
|
|
219 | sed -i "s|$2|$(ghc-libdir)/imports|g" "${S}/$(ghc-localpkgconf)" |
|
|
220 | fi |
|
|
221 | } |
|
|
222 | |
|
|
223 | # @FUNCTION: ghc-install-pkg |
|
|
224 | # @DESCRIPTION: |
| 100 | # moves the local (package-specific) package configuration |
225 | # moves the local (package-specific) package configuration |
| 101 | # file to its final destination |
226 | # file to its final destination |
| 102 | ghc-install-pkg() { |
227 | ghc-install-pkg() { |
| 103 | mkdir -p ${D}/$(ghc-confdir) |
228 | mkdir -p "${D}/$(ghc-confdir)" |
| 104 | cat ${S}/$(ghc-localpkgconf) | sed "s:${D}::" \ |
229 | cat "${S}/$(ghc-localpkgconf)" | sed "s|${D}||g" \ |
| 105 | > ${D}/$(ghc-confdir)/$(ghc-localpkgconf) |
230 | > "${D}/$(ghc-confdir)/$(ghc-localpkgconf)" |
| 106 | } |
231 | } |
| 107 | |
232 | |
|
|
233 | # @FUNCTION: ghc-register-pkg |
|
|
234 | # @DESCRIPTION: |
| 108 | # registers all packages in the local (package-specific) |
235 | # registers all packages in the local (package-specific) |
| 109 | # package configuration file |
236 | # package configuration file |
| 110 | ghc-register-pkg() { |
237 | ghc-register-pkg() { |
| 111 | local localpkgconf |
238 | local localpkgconf |
| 112 | localpkgconf="$(ghc-confdir)/$1" |
239 | localpkgconf="$(ghc-confdir)/$1" |
|
|
240 | local update_flag |
|
|
241 | local describe_flag |
|
|
242 | if version_is_at_least "6.4" "$(ghc-version)"; then |
|
|
243 | update_flag="update -" |
|
|
244 | describe_flag="describe" |
|
|
245 | else |
|
|
246 | update_flag="--update-package" |
|
|
247 | describe_flag="--show-package" |
|
|
248 | fi |
|
|
249 | if [[ -f "${localpkgconf}" ]]; then |
| 113 | for pkg in $(ghc-listpkg ${localpkgconf}); do |
250 | for pkg in $(ghc-listpkg "${localpkgconf}"); do |
| 114 | einfo "Registering ${pkg} ..." |
251 | ebegin "Registering ${pkg} " |
| 115 | $(ghc-getghcpkgbin) -f ${localpkgconf} -s ${pkg} \ |
252 | $(ghc-getghcpkgbin) -f "${localpkgconf}" "${describe_flag}" "${pkg}" \ |
| 116 | | $(ghc-getghcpkg) -u --force |
253 | | $(ghc-getghcpkg) ${update_flag} --force > /dev/null |
|
|
254 | eend $? |
| 117 | done |
255 | done |
|
|
256 | fi |
| 118 | } |
257 | } |
| 119 | |
258 | |
|
|
259 | # @FUNCTION: ghc-reregister |
|
|
260 | # @DESCRIPTION: |
| 120 | # re-adds all available .conf files to the global |
261 | # re-adds all available .conf files to the global |
| 121 | # package conf file, to be used on a ghc reinstallation |
262 | # package conf file, to be used on a ghc reinstallation |
| 122 | ghc-reregister() { |
263 | ghc-reregister() { |
| 123 | einfo "Re-adding packages ..." |
264 | has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= |
| 124 | ewarn "This may cause several warnings, but they should be harmless." |
265 | einfo "Re-adding packages (may cause several harmless warnings) ..." |
| 125 | if [ -d "$(ghc-confdir)" ]; then |
266 | PATH="${EPREFIX}/usr/bin:${PATH}" CONFDIR="$(ghc-confdir)" |
| 126 | pushd $(ghc-confdir) |
267 | if [ -d "${CONFDIR}" ]; then |
|
|
268 | pushd "${CONFDIR}" > /dev/null |
| 127 | for conf in *.conf; do |
269 | for conf in *.conf; do |
| 128 | einfo "Processing ${conf} ..." |
270 | PATH="${EPREFIX}/usr/bin:${PATH}" ghc-register-pkg "${conf}" |
| 129 | ghc-register-pkg ${conf} |
|
|
| 130 | done |
271 | done |
| 131 | popd |
272 | popd > /dev/null |
| 132 | fi |
273 | fi |
| 133 | } |
274 | } |
| 134 | |
275 | |
| 135 | # unregisters ... |
276 | # @FUNCTION: ghc-unregister-pkg |
|
|
277 | # @DESCRIPTION: |
|
|
278 | # unregisters a package configuration file |
|
|
279 | # protected are all packages that are still contained in |
|
|
280 | # another package configuration file |
| 136 | ghc-unregister-pkg() { |
281 | ghc-unregister-pkg() { |
| 137 | local localpkgconf |
282 | local localpkgconf |
|
|
283 | local i |
|
|
284 | local pkg |
|
|
285 | local protected |
|
|
286 | local unregister_flag |
| 138 | localpkgconf="$(ghc-confdir)/$1" |
287 | localpkgconf="$(ghc-confdir)/$1" |
|
|
288 | |
|
|
289 | if version_is_at_least "6.4" "$(ghc-version)"; then |
|
|
290 | unregister_flag="unregister" |
|
|
291 | else |
|
|
292 | unregister_flag="--remove-package" |
|
|
293 | fi |
|
|
294 | |
|
|
295 | for i in $(ghc-confdir)/*.conf; do |
|
|
296 | [[ "${i}" != "${localpkgconf}" ]] && protected="${protected} $(ghc-listpkg ${i})" |
|
|
297 | done |
|
|
298 | # protected now contains the packages that cannot be unregistered yet |
|
|
299 | |
|
|
300 | if [[ -f "${localpkgconf}" ]]; then |
| 139 | for pkg in $(ghc-reverse "$(ghc-listpkg ${localpkgconf})"); do |
301 | for pkg in $(ghc-reverse "$(ghc-listpkg ${localpkgconf})"); do |
|
|
302 | if $(ghc-elem "${pkg}" "${protected}"); then |
|
|
303 | einfo "Package ${pkg} is protected." |
|
|
304 | elif ! ghc-package-exists "${pkg}"; then |
|
|
305 | : |
|
|
306 | # einfo "Package ${pkg} is not installed for ghc-$(ghc-version)." |
|
|
307 | else |
| 140 | einfo "Unregistering ${pkg} ..." |
308 | ebegin "Unregistering ${pkg} " |
| 141 | $(ghc-getghcpkg) -r ${pkg} --force |
309 | $(ghc-getghcpkg) "${unregister_flag}" "${pkg}" --force > /dev/null |
|
|
310 | eend $? |
|
|
311 | fi |
| 142 | done |
312 | done |
|
|
313 | fi |
| 143 | } |
314 | } |
| 144 | |
315 | |
|
|
316 | # @FUNCTION: ghc-reverse |
|
|
317 | # @DESCRIPTION: |
| 145 | # help-function: reverse a list |
318 | # help-function: reverse a list |
| 146 | ghc-reverse() { |
319 | ghc-reverse() { |
| 147 | local result |
320 | local result |
|
|
321 | local i |
| 148 | for i in $1; do |
322 | for i in $1; do |
| 149 | result="${i} ${result}" |
323 | result="${i} ${result}" |
| 150 | done |
324 | done |
| 151 | echo ${result} |
325 | echo "${result}" |
| 152 | } |
326 | } |
| 153 | |
327 | |
|
|
328 | # @FUNCTION: ghc-elem |
|
|
329 | # @DESCRIPTION: |
|
|
330 | # help-function: element-check |
|
|
331 | ghc-elem() { |
|
|
332 | local i |
|
|
333 | for i in $2; do |
|
|
334 | [[ "$1" == "${i}" ]] && return 0 |
|
|
335 | done |
|
|
336 | return 1 |
|
|
337 | } |
|
|
338 | |
|
|
339 | # @FUNCTION: ghc-listpkg |
|
|
340 | # @DESCRIPTION: |
| 154 | # show the packages in a package configuration file |
341 | # show the packages in a package configuration file |
| 155 | ghc-listpkg() { |
342 | ghc-listpkg() { |
| 156 | local ghcpkgcall |
343 | local ghcpkgcall |
|
|
344 | local i |
|
|
345 | local extra_flags |
|
|
346 | if version_is_at_least '6.12.3' "$(ghc-version)"; then |
|
|
347 | extra_flags="${extra_flags} -v0" |
|
|
348 | fi |
|
|
349 | for i in $*; do |
| 157 | if ghc-cabal; then |
350 | if ghc-cabal; then |
| 158 | echo $($(ghc-getghcpkg) list -f $1) \ |
351 | echo $($(ghc-getghcpkg) list ${extra_flags} -f "${i}") \ |
| 159 | | sed \ |
352 | | sed \ |
| 160 | -e "s|^.*${f}:\([^:]*\).*$|\1|" \ |
353 | -e "s|^.*${i}:\([^:]*\).*$|\1|" \ |
| 161 | -e "s|/.*$||" \ |
354 | -e "s|/.*$||" \ |
| 162 | -e "s|,| |g" -e "s|[()]||g" |
355 | -e "s|,| |g" -e "s|[(){}]||g" |
| 163 | else |
356 | else |
| 164 | echo $($(ghc-getghcpkgbin) -l -f $1) \ |
357 | echo $($(ghc-getghcpkgbin) -l -f "${i}") \ |
| 165 | | cut -f2 -d':' \ |
358 | | cut -f2 -d':' \ |
| 166 | | sed 's:,: :g' |
359 | | sed 's:,: :g' |
| 167 | fi |
360 | fi |
|
|
361 | done |
| 168 | } |
362 | } |
| 169 | |
363 | |
|
|
364 | # @FUNCTION: ghc-package_pkg_setup |
|
|
365 | # @DESCRIPTION: |
|
|
366 | # exported function: check if we have a consistent ghc installation |
|
|
367 | ghc-package_pkg_setup() { |
|
|
368 | if ! ghc-saneghc; then |
|
|
369 | eerror "You have inconsistent versions of dev-lang/ghc and dev-lang/ghc-bin" |
|
|
370 | eerror "installed. Portage currently cannot work correctly with this setup." |
|
|
371 | eerror "There are several possibilities to work around this problem:" |
|
|
372 | eerror "(1) Up/downgrade ghc-bin to the same version as ghc." |
|
|
373 | eerror "(2) Unmerge ghc-bin." |
|
|
374 | eerror "(3) Unmerge ghc." |
|
|
375 | eerror "You probably want option 1 or 2." |
|
|
376 | die "Inconsistent versions of ghc and ghc-bin." |
|
|
377 | fi |
|
|
378 | } |
|
|
379 | |
|
|
380 | # @FUNCTION: ghc-package_pkg_postinst |
|
|
381 | # @DESCRIPTION: |
| 170 | # exported function: registers the package-specific package |
382 | # exported function: registers the package-specific package |
| 171 | # configuration file |
383 | # configuration file |
| 172 | ghc-package_pkg_postinst() { |
384 | ghc-package_pkg_postinst() { |
| 173 | ghc-register-pkg $(ghc-localpkgconf) |
385 | ghc-register-pkg "$(ghc-localpkgconf)" |
| 174 | } |
386 | } |
| 175 | |
387 | |
|
|
388 | # @FUNCTION: ghc-package_pkg_prerm |
|
|
389 | # @DESCRIPTION: |
| 176 | # exported function: unregisters the package-specific |
390 | # exported function: unregisters the package-specific package |
| 177 | # package configuration file, under the condition that |
391 | # configuration file; a package contained therein is unregistered |
| 178 | # after removal, no other instances of the package will |
392 | # only if it the same package is not also contained in another |
| 179 | # be left (necessary check because ghc packages are not |
393 | # package configuration file ... |
| 180 | # versioned) |
|
|
| 181 | ghc-package_pkg_prerm() { |
394 | ghc-package_pkg_prerm() { |
| 182 | has_version "<${CATEGORY}/${PF}" || has_version ">${CATEGORY}/${PF}" \ |
|
|
| 183 | || ghc-unregister-pkg $(ghc-localpkgconf) |
395 | ghc-unregister-pkg "$(ghc-localpkgconf)" |
| 184 | } |
396 | } |
| 185 | |
397 | |
| 186 | EXPORT_FUNCTIONS pkg_postinst pkg_prerm |
398 | EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm |