| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
| 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 or later |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
3 | # Author Dan Armak <danarmak@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.14 2002/05/21 18:14:08 danarmak Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.15 2002/06/05 19:09:21 danarmak Exp $ |
| 5 | # The base eclass defines some default functions and variables. Nearly everything |
5 | # The base eclass defines some default functions and variables. Nearly everything |
| 6 | # else inherits from here. |
6 | # else inherits from here. |
| 7 | ECLASS=base |
7 | ECLASS=base |
| 8 | |
8 | |
| 9 | S=${WORKDIR}/${P} |
9 | S=${WORKDIR}/${P} |
| … | |
… | |
| 19 | while [ "$1" ]; do |
19 | while [ "$1" ]; do |
| 20 | |
20 | |
| 21 | case $1 in |
21 | case $1 in |
| 22 | unpack) |
22 | unpack) |
| 23 | debug-print-section unpack |
23 | debug-print-section unpack |
|
|
24 | # rather ugly fix - check for usage of kde-patch.eclass |
|
|
25 | [ -n "$PATCH" -a -n "$ORIGPV" -a -n "$DATE" -a -n "$OLDIFS" ] && \ |
|
|
26 | A="`echo $A | sed -e s:${PATCH}::g --`" |
| 24 | unpack ${A} |
27 | unpack ${A} |
| 25 | ;; |
28 | ;; |
| 26 | patch) |
29 | patch) |
| 27 | debug-print-section patch |
30 | debug-print-section patch |
| 28 | cd ${S} |
31 | cd ${S} |
| 29 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 30 | ;; |
33 | ;; |
|
|
34 | autopatch) |
|
|
35 | debug-print-section autopatch |
|
|
36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
|
|
37 | cd ${S} |
|
|
38 | for x in $PATCHES; do |
|
|
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
|
|
40 | patch -p0 < ${x} |
|
|
41 | done |
|
|
42 | ;; |
| 31 | all) |
43 | all) |
| 32 | debug-print-section all |
44 | debug-print-section all |
| 33 | base_src_unpack unpack |
45 | base_src_unpack unpack autopatch |
| 34 | ;; |
46 | ;; |
| 35 | esac |
47 | esac |
| 36 | |
48 | |
| 37 | shift |
49 | shift |
| 38 | done |
50 | done |