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