| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 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.26 2005/07/06 20:23:20 agriffis 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.17 2002/10/24 18:38:32 danarmak 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 | ECLASS=base |
9 | |
| 8 | INHERITED="$INHERITED $ECLASS" |
|
|
| 9 | S=${WORKDIR}/${P} |
10 | S=${WORKDIR}/${P} |
| 10 | DESCRIPTION="Based on the $ECLASS eclass" |
11 | DESCRIPTION="Based on the $ECLASS eclass" |
| 11 | |
12 | |
| 12 | base_src_unpack() { |
13 | base_src_unpack() { |
| 13 | |
14 | |
| … | |
… | |
| 19 | while [ "$1" ]; do |
20 | while [ "$1" ]; do |
| 20 | |
21 | |
| 21 | case $1 in |
22 | case $1 in |
| 22 | unpack) |
23 | unpack) |
| 23 | debug-print-section unpack |
24 | 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 --`" |
|
|
| 27 | unpack ${A} |
25 | unpack ${A} |
| 28 | ;; |
26 | ;; |
| 29 | patch) |
27 | patch) |
| 30 | debug-print-section patch |
28 | debug-print-section patch |
| 31 | cd ${S} |
29 | cd ${S} |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 33 | ;; |
31 | ;; |
| 34 | autopatch) |
32 | autopatch) |
| 35 | debug-print-section autopatch |
33 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 37 | cd ${S} |
35 | cd ${S} |
| 38 | for x in $PATCHES; do |
36 | for x in $PATCHES; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
38 | patch -p0 < ${x} |
| 41 | done |
39 | done |
|
|
40 | for x in $PATCHES1; do |
|
|
41 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
|
|
42 | patch -p1 < ${x} |
|
|
43 | done |
| 42 | ;; |
44 | ;; |
| 43 | all) |
45 | all) |
| 44 | debug-print-section all |
46 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
47 | base_src_unpack unpack autopatch |
| 46 | ;; |
48 | ;; |
| 47 | esac |
49 | esac |
| 48 | |
50 | |