| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2008 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/base.eclass,v 1.32 2008/02/12 23:51:51 betelgeuse Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.35 2008/11/09 15:47:47 loki_val Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: base.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Peter Alfredsen <loki_val@gentoo.org> |
| 4 | # |
8 | # |
| 5 | # Author Dan Armak <danarmak@gentoo.org> (nowadays retired) |
9 | # Original author Dan Armak <danarmak@gentoo.org> |
|
|
10 | # @BLURB: The base eclass defines some default functions and variables. |
|
|
11 | # @DESCRIPTION: |
|
|
12 | # The base eclass defines some default functions and variables. Nearly |
|
|
13 | # everything else inherits from here. |
| 6 | # |
14 | # |
| 7 | # The base eclass defines some default functions and variables. Nearly everything |
15 | # NOTE: You must define EAPI before inheriting from base, or the wrong functions |
| 8 | # else inherits from here. |
16 | # may be exported. |
|
|
17 | |
| 9 | |
18 | |
| 10 | inherit eutils |
19 | inherit eutils |
| 11 | |
20 | |
|
|
21 | case "${EAPI:-0}" in |
|
|
22 | 2) |
|
|
23 | EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install |
|
|
24 | ;; |
|
|
25 | *) |
|
|
26 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
|
|
27 | ;; |
|
|
28 | esac |
|
|
29 | |
| 12 | DESCRIPTION="Based on the $ECLASS eclass" |
30 | DESCRIPTION="Based on the $ECLASS eclass" |
| 13 | |
31 | |
|
|
32 | # @FUNCTION: base_src_unpack |
|
|
33 | # @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ] |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # The base src_unpack function, which is exported. If no argument is given, |
|
|
36 | # "all" is assumed if EAPI!=2, "unpack" if EAPI=2. |
| 14 | base_src_unpack() { |
37 | base_src_unpack() { |
| 15 | |
38 | |
| 16 | debug-print-function $FUNCNAME $* |
39 | debug-print-function $FUNCNAME "$@" |
| 17 | [ -z "$1" ] && base_src_unpack all |
40 | |
|
|
41 | if [ -z "$1" ] |
|
|
42 | then |
|
|
43 | case "${EAPI:-0}" in |
|
|
44 | 2) |
|
|
45 | base_src_util unpack |
|
|
46 | ;; |
|
|
47 | *) |
|
|
48 | base_src_util all |
|
|
49 | ;; |
|
|
50 | esac |
|
|
51 | else |
|
|
52 | base_src_util $@ |
|
|
53 | fi |
|
|
54 | } |
|
|
55 | |
|
|
56 | # @FUNCTION: base_src_prepare |
|
|
57 | # @DESCRIPTION: |
|
|
58 | # The base src_prepare function, which is exported when EAPI=2. Performs |
|
|
59 | # "base_src_util autopatch". |
|
|
60 | base_src_prepare() { |
|
|
61 | |
|
|
62 | debug-print-function $FUNCNAME "$@" |
|
|
63 | |
|
|
64 | base_src_util autopatch |
|
|
65 | } |
|
|
66 | |
|
|
67 | # @FUNCTION: base_src_util |
|
|
68 | # @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ] |
|
|
69 | # @DESCRIPTION: |
|
|
70 | # The base_src_util function is the grunt function for base src_unpack |
|
|
71 | # and base src_prepare. |
|
|
72 | base_src_util() { |
|
|
73 | |
|
|
74 | debug-print-function $FUNCNAME "$@" |
| 18 | |
75 | |
| 19 | cd "${WORKDIR}" |
76 | cd "${WORKDIR}" |
| 20 | |
77 | |
| 21 | while [ "$1" ]; do |
78 | while [ "$1" ]; do |
| 22 | |
79 | |
| … | |
… | |
| 32 | ;; |
89 | ;; |
| 33 | autopatch) |
90 | autopatch) |
| 34 | debug-print-section autopatch |
91 | debug-print-section autopatch |
| 35 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
92 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 36 | cd "${S}" |
93 | cd "${S}" |
| 37 | for x in $PATCHES $PATCHES1; do |
94 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
|
|
95 | for x in "${PATCHES[@]}"; do |
| 38 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
96 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 39 | epatch ${x} |
97 | epatch "${x}" |
| 40 | done |
98 | done |
|
|
99 | else |
|
|
100 | for x in ${PATCHES} ${PATCHES1}; do |
|
|
101 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
|
|
102 | epatch "${x}" |
|
|
103 | done |
|
|
104 | fi |
| 41 | ;; |
105 | ;; |
| 42 | all) |
106 | all) |
| 43 | debug-print-section all |
107 | debug-print-section all |
| 44 | base_src_unpack unpack autopatch |
108 | base_src_util unpack autopatch |
| 45 | ;; |
109 | ;; |
| 46 | esac |
110 | esac |
| 47 | |
111 | |
| 48 | shift |
112 | shift |
| 49 | done |
113 | done |
| 50 | |
114 | |
| 51 | } |
115 | } |
| 52 | |
116 | |
|
|
117 | # @FUNCTION: base_src_configure |
|
|
118 | # @DESCRIPTION: |
|
|
119 | # The base src_prepare function, which is exported when EAPI=2. Performs |
|
|
120 | # "base_src_work configure". |
|
|
121 | base_src_configure() { |
|
|
122 | |
|
|
123 | debug-print-function $FUNCNAME "$@" |
|
|
124 | |
|
|
125 | base_src_work configure |
|
|
126 | } |
|
|
127 | |
|
|
128 | # @FUNCTION: base_src_compile |
|
|
129 | # @USAGE: [ configure ] [ make ] [ all ] |
|
|
130 | # @DESCRIPTION: |
|
|
131 | # The base src_compile function, which is exported. If no argument is given, |
|
|
132 | # "all" is assumed if EAPI!=2, "make" if EAPI=2. |
| 53 | base_src_compile() { |
133 | base_src_compile() { |
| 54 | |
134 | |
| 55 | debug-print-function $FUNCNAME $* |
135 | debug-print-function $FUNCNAME "$@" |
| 56 | [ -z "$1" ] && base_src_compile all |
136 | |
|
|
137 | if [ -z "$1" ] |
|
|
138 | then |
|
|
139 | case "${EAPI:-0}" in |
|
|
140 | 2) |
|
|
141 | base_src_work make |
|
|
142 | ;; |
|
|
143 | *) |
|
|
144 | base_src_work all |
|
|
145 | ;; |
|
|
146 | esac |
|
|
147 | else |
|
|
148 | base_src_work $@ |
|
|
149 | fi |
|
|
150 | } |
|
|
151 | |
|
|
152 | # @FUNCTION: base_src_work |
|
|
153 | # @USAGE: [ configure ] [ make ] [ all ] |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # The base_src_work function is the grunt function for base src_configure |
|
|
156 | # and base src_compile. |
|
|
157 | base_src_work() { |
|
|
158 | |
|
|
159 | debug-print-function $FUNCNAME "$@" |
| 57 | |
160 | |
| 58 | cd "${S}" |
161 | cd "${S}" |
| 59 | |
162 | |
| 60 | while [ "$1" ]; do |
163 | while [ "$1" ]; do |
| 61 | |
164 | |
| … | |
… | |
| 68 | debug-print-section make |
171 | debug-print-section make |
| 69 | emake || die "died running emake, $FUNCNAME:make" |
172 | emake || die "died running emake, $FUNCNAME:make" |
| 70 | ;; |
173 | ;; |
| 71 | all) |
174 | all) |
| 72 | debug-print-section all |
175 | debug-print-section all |
| 73 | base_src_compile configure make |
176 | base_src_work configure make |
| 74 | ;; |
177 | ;; |
| 75 | esac |
178 | esac |
| 76 | |
179 | |
| 77 | shift |
180 | shift |
| 78 | done |
181 | done |
| 79 | |
182 | |
| 80 | } |
183 | } |
| 81 | |
184 | |
|
|
185 | # @FUNCTION: base_src_install |
|
|
186 | # @USAGE: [ make ] [ all ] |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # The base src_install function, which is exported. If no argument is given, |
|
|
189 | # "all" is assumed. |
| 82 | base_src_install() { |
190 | base_src_install() { |
| 83 | |
191 | |
| 84 | debug-print-function $FUNCNAME $* |
192 | debug-print-function $FUNCNAME "$@" |
| 85 | [ -z "$1" ] && base_src_install all |
193 | [ -z "$1" ] && base_src_install all |
| 86 | |
194 | |
| 87 | cd "${S}" |
195 | cd "${S}" |
| 88 | |
196 | |
| 89 | while [ "$1" ]; do |
197 | while [ "$1" ]; do |
| … | |
… | |
| 101 | |
209 | |
| 102 | shift |
210 | shift |
| 103 | done |
211 | done |
| 104 | |
212 | |
| 105 | } |
213 | } |
| 106 | |
|
|
| 107 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
|
|