| 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.23 2003/04/08 17:48:12 danarmak 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} |
| 33 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 34 | ;; |
33 | ;; |
| 35 | autopatch) |
34 | autopatch) |
| 36 | debug-print-section autopatch |
35 | debug-print-section autopatch |
| 37 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 38 | cd ${S} |
37 | 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 |
|
|
42 | for x in $PATCHES1; do |
|
|
43 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
44 | patch -p1 < ${x} |
|
|
45 | done |
| 43 | ;; |
46 | ;; |
| 44 | all) |
47 | all) |
| 45 | debug-print-section all |
48 | debug-print-section all |
| 46 | base_src_unpack unpack autopatch |
49 | base_src_unpack unpack autopatch |
| 47 | ;; |
50 | ;; |
| 48 | esac |
51 | esac |
| 49 | |
52 | |