| 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.27 2005/07/11 15:08:06 swegener 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> |
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. |
| 9 | |
17 | |
| 10 | S=${WORKDIR}/${P} |
18 | |
|
|
19 | inherit eutils |
|
|
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 | |
| 11 | DESCRIPTION="Based on the $ECLASS eclass" |
30 | DESCRIPTION="Based on the $ECLASS eclass" |
| 12 | |
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. |
| 13 | base_src_unpack() { |
37 | base_src_unpack() { |
| 14 | |
38 | |
| 15 | debug-print-function $FUNCNAME $* |
39 | debug-print-function $FUNCNAME "$@" |
| 16 | [ -z "$1" ] && base_src_unpack all |
|
|
| 17 | |
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 "$@" |
|
|
75 | |
| 18 | cd ${WORKDIR} |
76 | cd "${WORKDIR}" |
| 19 | |
77 | |
| 20 | while [ "$1" ]; do |
78 | while [ "$1" ]; do |
| 21 | |
79 | |
| 22 | case $1 in |
80 | case $1 in |
| 23 | unpack) |
81 | unpack) |
| 24 | debug-print-section unpack |
82 | debug-print-section unpack |
| 25 | unpack ${A} |
83 | unpack ${A} |
| 26 | ;; |
84 | ;; |
| 27 | patch) |
85 | patch) |
| 28 | debug-print-section patch |
86 | debug-print-section patch |
| 29 | cd ${S} |
87 | cd "${S}" |
| 30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
88 | epatch "${FILESDIR}/${P}-gentoo.diff" |
| 31 | ;; |
89 | ;; |
| 32 | autopatch) |
90 | autopatch) |
| 33 | debug-print-section autopatch |
91 | debug-print-section autopatch |
| 34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
92 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 35 | cd ${S} |
93 | cd "${S}" |
|
|
94 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 36 | for x in $PATCHES; do |
95 | for x in "${PATCHES[@]}"; do |
| 37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
96 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 38 | patch -p0 < ${x} |
97 | epatch "${x}" |
| 39 | done |
98 | done |
|
|
99 | else |
| 40 | for x in $PATCHES1; do |
100 | for x in ${PATCHES} ${PATCHES1}; do |
| 41 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
101 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 42 | patch -p1 < ${x} |
102 | epatch "${x}" |
| 43 | done |
103 | done |
|
|
104 | fi |
| 44 | ;; |
105 | ;; |
| 45 | all) |
106 | all) |
| 46 | debug-print-section all |
107 | debug-print-section all |
| 47 | base_src_unpack unpack autopatch |
108 | base_src_util unpack autopatch |
| 48 | ;; |
109 | ;; |
| 49 | esac |
110 | esac |
| 50 | |
111 | |
| 51 | shift |
112 | shift |
| 52 | done |
113 | done |
| 53 | |
114 | |
| 54 | } |
115 | } |
| 55 | |
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. |
| 56 | base_src_compile() { |
133 | base_src_compile() { |
| 57 | |
134 | |
| 58 | debug-print-function $FUNCNAME $* |
135 | debug-print-function $FUNCNAME "$@" |
| 59 | [ -z "$1" ] && base_src_compile all |
|
|
| 60 | |
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 "$@" |
|
|
160 | |
| 61 | cd ${S} |
161 | cd "${S}" |
| 62 | |
162 | |
| 63 | while [ "$1" ]; do |
163 | while [ "$1" ]; do |
| 64 | |
164 | |
| 65 | case $1 in |
165 | case $1 in |
| 66 | configure) |
166 | configure) |
| 67 | debug-print-section configure |
167 | debug-print-section configure |
| 68 | econf || die "died running econf, $FUNCNAME:configure" |
168 | econf || die "died running econf, $FUNCNAME:configure" |
| 69 | ;; |
169 | ;; |
| 70 | make) |
170 | make) |
| 71 | debug-print-section make |
171 | debug-print-section make |
| 72 | emake || die "died running emake, $FUNCNAME:make" |
172 | emake || die "died running emake, $FUNCNAME:make" |
| 73 | ;; |
173 | ;; |
| 74 | all) |
174 | all) |
| 75 | debug-print-section all |
175 | debug-print-section all |
| 76 | base_src_compile configure make |
176 | base_src_work configure make |
| 77 | ;; |
177 | ;; |
| 78 | esac |
178 | esac |
| 79 | |
179 | |
| 80 | shift |
180 | shift |
| 81 | done |
181 | done |
| 82 | |
182 | |
| 83 | } |
183 | } |
| 84 | |
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. |
| 85 | base_src_install() { |
190 | base_src_install() { |
| 86 | |
191 | |
| 87 | debug-print-function $FUNCNAME $* |
192 | debug-print-function $FUNCNAME "$@" |
| 88 | [ -z "$1" ] && base_src_install all |
193 | [ -z "$1" ] && base_src_install all |
| 89 | |
194 | |
| 90 | cd ${S} |
195 | cd "${S}" |
| 91 | |
196 | |
| 92 | while [ "$1" ]; do |
197 | while [ "$1" ]; do |
| 93 | |
198 | |
| 94 | case $1 in |
199 | case $1 in |
| 95 | make) |
200 | make) |
| 96 | debug-print-section make |
201 | debug-print-section make |
| 97 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
202 | make DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" |
| 98 | ;; |
203 | ;; |
| 99 | all) |
204 | all) |
| 100 | debug-print-section all |
205 | debug-print-section all |
| 101 | base_src_install make |
206 | base_src_install make |
| 102 | ;; |
207 | ;; |
| … | |
… | |
| 104 | |
209 | |
| 105 | shift |
210 | shift |
| 106 | done |
211 | done |
| 107 | |
212 | |
| 108 | } |
213 | } |
| 109 | |
|
|
| 110 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
|
|