| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2008 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License v2 |
|
|
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.38 2009/05/17 09:25:55 loki_val Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: base.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Peter Alfredsen <loki_val@gentoo.org> |
|
|
8 | # |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
9 | # Original author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.15 2002/06/05 19:09:21 danarmak Exp $ |
10 | # @BLURB: The base eclass defines some default functions and variables. |
|
|
11 | # @DESCRIPTION: |
| 5 | # The base eclass defines some default functions and variables. Nearly everything |
12 | # The base eclass defines some default functions and variables. Nearly |
| 6 | # else inherits from here. |
13 | # everything else inherits from here. |
| 7 | ECLASS=base |
14 | # |
|
|
15 | # NOTE: You must define EAPI before inheriting from base, or the wrong functions |
|
|
16 | # may be exported. |
| 8 | |
17 | |
| 9 | 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 | |
| 10 | DESCRIPTION="Based on the $ECLASS eclass" |
30 | DESCRIPTION="Based on the $ECLASS eclass" |
| 11 | |
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. |
| 12 | base_src_unpack() { |
37 | base_src_unpack() { |
| 13 | |
38 | |
| 14 | debug-print-function $FUNCNAME $* |
39 | debug-print-function $FUNCNAME "$@" |
| 15 | [ -z "$1" ] && base_src_unpack all |
|
|
| 16 | |
40 | |
|
|
41 | if [ -z "$1" ] ; then |
|
|
42 | case "${EAPI:-0}" in |
|
|
43 | 2) |
|
|
44 | base_src_util unpack |
|
|
45 | ;; |
|
|
46 | *) |
|
|
47 | base_src_util all |
|
|
48 | ;; |
|
|
49 | esac |
|
|
50 | else |
|
|
51 | base_src_util $@ |
|
|
52 | fi |
|
|
53 | } |
|
|
54 | |
|
|
55 | # @FUNCTION: base_src_prepare |
|
|
56 | # @DESCRIPTION: |
|
|
57 | # The base src_prepare function, which is exported when EAPI=2. Performs |
|
|
58 | # "base_src_util autopatch". |
|
|
59 | base_src_prepare() { |
|
|
60 | |
|
|
61 | debug-print-function $FUNCNAME "$@" |
|
|
62 | |
|
|
63 | base_src_util autopatch |
|
|
64 | } |
|
|
65 | |
|
|
66 | # @FUNCTION: base_src_util |
|
|
67 | # @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ] |
|
|
68 | # @DESCRIPTION: |
|
|
69 | # The base_src_util function is the grunt function for base src_unpack |
|
|
70 | # and base src_prepare. |
|
|
71 | base_src_util() { |
|
|
72 | local x |
|
|
73 | |
|
|
74 | debug-print-function $FUNCNAME "$@" |
|
|
75 | |
| 17 | cd ${WORKDIR} |
76 | cd "${WORKDIR}" |
| 18 | |
77 | |
| 19 | while [ "$1" ]; do |
78 | while [ "$1" ]; do |
| 20 | |
79 | |
| 21 | case $1 in |
80 | case $1 in |
| 22 | unpack) |
81 | unpack) |
| 23 | debug-print-section unpack |
82 | debug-print-section unpack |
| 24 | # rather ugly fix - check for usage of kde-patch.eclass |
83 | if [ ! -z "$A" ] ; then |
| 25 | [ -n "$PATCH" -a -n "$ORIGPV" -a -n "$DATE" -a -n "$OLDIFS" ] && \ |
|
|
| 26 | A="`echo $A | sed -e s:${PATCH}::g --`" |
|
|
| 27 | unpack ${A} |
84 | unpack ${A} |
|
|
85 | fi |
| 28 | ;; |
86 | ;; |
| 29 | patch) |
87 | patch) |
| 30 | debug-print-section patch |
88 | debug-print-section patch |
| 31 | cd ${S} |
89 | cd "${S}" |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
90 | epatch "${FILESDIR}/${P}-gentoo.diff" |
| 33 | ;; |
91 | ;; |
| 34 | autopatch) |
92 | autopatch) |
| 35 | debug-print-section autopatch |
93 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
94 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 37 | cd ${S} |
95 | cd "${S}" |
|
|
96 | if [[ ${#PATCHES[@]} -gt 1 ]] ; then |
| 38 | for x in $PATCHES; do |
97 | for x in "${PATCHES[@]}"; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
98 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
99 | epatch "${x}" |
| 41 | done |
100 | done |
|
|
101 | else |
|
|
102 | for x in ${PATCHES} ${PATCHES1}; do |
|
|
103 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
|
|
104 | epatch "${x}" |
|
|
105 | done |
|
|
106 | fi |
| 42 | ;; |
107 | ;; |
| 43 | all) |
108 | all) |
| 44 | debug-print-section all |
109 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
110 | base_src_util unpack autopatch |
| 46 | ;; |
111 | ;; |
| 47 | esac |
112 | esac |
| 48 | |
113 | |
| 49 | shift |
114 | shift |
| 50 | done |
115 | done |
| 51 | |
|
|
| 52 | } |
|
|
| 53 | |
116 | |
|
|
117 | } |
|
|
118 | |
|
|
119 | # @FUNCTION: base_src_configure |
|
|
120 | # @DESCRIPTION: |
|
|
121 | # The base src_prepare function, which is exported when EAPI=2. Performs |
|
|
122 | # "base_src_work configure". |
|
|
123 | base_src_configure() { |
|
|
124 | |
|
|
125 | debug-print-function $FUNCNAME "$@" |
|
|
126 | |
|
|
127 | base_src_work configure |
|
|
128 | } |
|
|
129 | |
|
|
130 | # @FUNCTION: base_src_compile |
|
|
131 | # @USAGE: [ configure ] [ make ] [ all ] |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # The base src_compile function, which is exported. If no argument is given, |
|
|
134 | # "all" is assumed if EAPI!=2, "make" if EAPI=2. |
| 54 | base_src_compile() { |
135 | base_src_compile() { |
| 55 | |
136 | |
| 56 | debug-print-function $FUNCNAME $* |
137 | debug-print-function $FUNCNAME "$@" |
| 57 | [ -z "$1" ] && base_src_compile all |
|
|
| 58 | |
138 | |
| 59 | cd ${S} |
139 | if [ -z "$1" ] |
|
|
140 | then |
|
|
141 | case "${EAPI:-0}" in |
|
|
142 | 2) |
|
|
143 | base_src_work make |
|
|
144 | ;; |
|
|
145 | *) |
|
|
146 | base_src_work all |
|
|
147 | ;; |
|
|
148 | esac |
|
|
149 | else |
|
|
150 | base_src_work $@ |
|
|
151 | fi |
|
|
152 | } |
| 60 | |
153 | |
|
|
154 | # @FUNCTION: base_src_work |
|
|
155 | # @USAGE: [ configure ] [ make ] [ all ] |
|
|
156 | # @DESCRIPTION: |
|
|
157 | # The base_src_work function is the grunt function for base src_configure |
|
|
158 | # and base src_compile. |
|
|
159 | base_src_work() { |
|
|
160 | |
|
|
161 | debug-print-function $FUNCNAME "$@" |
|
|
162 | |
|
|
163 | cd "${S}" |
|
|
164 | |
| 61 | while [ "$1" ]; do |
165 | while [ "$1" ]; do |
| 62 | |
166 | |
| 63 | case $1 in |
167 | case $1 in |
| 64 | configure) |
168 | configure) |
| 65 | debug-print-section configure |
169 | debug-print-section configure |
|
|
170 | if [[ -x ${ECONF_SOURCE:-.}/configure ]] |
|
|
171 | then |
| 66 | econf || die "died running econf, $FUNCNAME:configure" |
172 | econf || die "died running econf, $FUNCNAME:configure" |
|
|
173 | fi |
| 67 | ;; |
174 | ;; |
| 68 | make) |
175 | make) |
| 69 | debug-print-section make |
176 | debug-print-section make |
|
|
177 | if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ] |
|
|
178 | then |
| 70 | emake || die "died running emake, $FUNCNAME:make" |
179 | emake || die "died running emake, $FUNCNAME:make" |
|
|
180 | fi |
| 71 | ;; |
181 | ;; |
| 72 | all) |
182 | all) |
| 73 | debug-print-section all |
183 | debug-print-section all |
| 74 | base_src_compile configure make |
184 | base_src_work configure make |
| 75 | ;; |
185 | ;; |
| 76 | esac |
186 | esac |
| 77 | |
|
|
| 78 | shift |
|
|
| 79 | done |
|
|
| 80 | |
|
|
| 81 | } |
|
|
| 82 | |
187 | |
|
|
188 | shift |
|
|
189 | done |
|
|
190 | |
|
|
191 | } |
|
|
192 | |
|
|
193 | # @FUNCTION: base_src_install |
|
|
194 | # @USAGE: [ make ] [ all ] |
|
|
195 | # @DESCRIPTION: |
|
|
196 | # The base src_install function, which is exported. If no argument is given, |
|
|
197 | # "all" is assumed. |
| 83 | base_src_install() { |
198 | base_src_install() { |
| 84 | |
199 | |
| 85 | debug-print-function $FUNCNAME $* |
200 | debug-print-function $FUNCNAME "$@" |
| 86 | [ -z "$1" ] && base_src_install all |
201 | [ -z "$1" ] && base_src_install all |
| 87 | |
202 | |
| 88 | cd ${S} |
203 | cd "${S}" |
| 89 | |
204 | |
| 90 | while [ "$1" ]; do |
205 | while [ "$1" ]; do |
| 91 | |
206 | |
| 92 | case $1 in |
207 | case $1 in |
| 93 | make) |
208 | make) |
| 94 | debug-print-section make |
209 | debug-print-section make |
| 95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
210 | make DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" |
| 96 | ;; |
211 | ;; |
| 97 | all) |
212 | all) |
| 98 | debug-print-section all |
213 | debug-print-section all |
| 99 | base_src_install make |
214 | base_src_install make |
| 100 | ;; |
215 | ;; |
| 101 | esac |
216 | esac |
| 102 | |
217 | |
| 103 | shift |
218 | shift |
| 104 | done |
219 | done |
| 105 | |
220 | |
| 106 | } |
221 | } |
| 107 | |
|
|
| 108 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
|
|