| 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 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.20 2003/02/16 04:26:21 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.16 2002/07/12 15:24:36 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. |
|
|
9 | |
| 7 | ECLASS=base |
10 | ECLASS=base |
| 8 | INHERITED="$INHERITED $ECLASS" |
11 | INHERITED="$INHERITED $ECLASS" |
| 9 | S=${WORKDIR}/${P} |
12 | S=${WORKDIR}/${P} |
| 10 | DESCRIPTION="Based on the $ECLASS eclass" |
13 | DESCRIPTION="Based on the $ECLASS eclass" |
| 11 | |
14 | |
| … | |
… | |
| 17 | cd ${WORKDIR} |
20 | cd ${WORKDIR} |
| 18 | |
21 | |
| 19 | while [ "$1" ]; do |
22 | while [ "$1" ]; do |
| 20 | |
23 | |
| 21 | case $1 in |
24 | case $1 in |
| 22 | unpack) |
25 | unpack) |
| 23 | debug-print-section unpack |
26 | 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} |
27 | unpack ${A} |
| 28 | ;; |
28 | ;; |
| 29 | patch) |
29 | patch) |
| 30 | debug-print-section patch |
30 | debug-print-section patch |
| 31 | cd ${S} |
31 | cd ${S} |
| 32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 33 | ;; |
33 | ;; |
| 34 | autopatch) |
34 | autopatch) |
| 35 | debug-print-section autopatch |
35 | debug-print-section autopatch |
| 36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
36 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
| 37 | cd ${S} |
37 | cd ${S} |
| 38 | for x in $PATCHES; do |
38 | for x in $PATCHES; do |
| 39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 40 | patch -p0 < ${x} |
40 | patch -p0 < ${x} |
| 41 | done |
41 | done |
| 42 | ;; |
42 | ;; |
| 43 | all) |
43 | all) |
| 44 | debug-print-section all |
44 | debug-print-section all |
| 45 | base_src_unpack unpack autopatch |
45 | base_src_unpack unpack autopatch |
| 46 | ;; |
46 | ;; |
| 47 | esac |
47 | esac |
| 48 | |
48 | |
| 49 | shift |
49 | shift |
| 50 | done |
50 | done |
| 51 | |
51 | |
| 52 | } |
52 | } |
| 53 | |
53 | |
| 54 | base_src_compile() { |
54 | base_src_compile() { |
| 55 | |
55 | |
| 56 | debug-print-function $FUNCNAME $* |
56 | debug-print-function $FUNCNAME $* |
| 57 | [ -z "$1" ] && base_src_compile all |
57 | [ -z "$1" ] && base_src_compile all |
| 58 | |
58 | |
| 59 | cd ${S} |
59 | cd ${S} |
| 60 | |
60 | |
| 61 | while [ "$1" ]; do |
61 | while [ "$1" ]; do |
| 62 | |
62 | |
| 63 | case $1 in |
63 | case $1 in |
| 64 | configure) |
64 | configure) |
| 65 | debug-print-section configure |
65 | debug-print-section configure |
| 66 | econf || die "died running econf, $FUNCNAME:configure" |
66 | econf || die "died running econf, $FUNCNAME:configure" |
| 67 | ;; |
67 | ;; |
| 68 | make) |
68 | make) |
| 69 | debug-print-section make |
69 | debug-print-section make |
| 70 | emake || die "died running emake, $FUNCNAME:make" |
70 | emake || die "died running emake, $FUNCNAME:make" |
| 71 | ;; |
71 | ;; |
| 72 | all) |
72 | all) |
| 73 | debug-print-section all |
73 | debug-print-section all |
| 74 | base_src_compile configure make |
74 | base_src_compile configure make |
| 75 | ;; |
75 | ;; |
| 76 | esac |
76 | esac |
| 77 | |
77 | |
| 78 | shift |
78 | shift |
| 79 | done |
79 | done |
| 80 | |
80 | |
| 81 | } |
81 | } |
| 82 | |
82 | |
| 83 | base_src_install() { |
83 | base_src_install() { |
| 84 | |
84 | |
| … | |
… | |
| 88 | cd ${S} |
88 | cd ${S} |
| 89 | |
89 | |
| 90 | while [ "$1" ]; do |
90 | while [ "$1" ]; do |
| 91 | |
91 | |
| 92 | case $1 in |
92 | case $1 in |
| 93 | make) |
93 | make) |
| 94 | debug-print-section make |
94 | debug-print-section make |
| 95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 96 | ;; |
96 | ;; |
| 97 | all) |
97 | all) |
| 98 | debug-print-section all |
98 | debug-print-section all |
| 99 | base_src_install make |
99 | base_src_install make |
| 100 | ;; |
100 | ;; |
| 101 | esac |
101 | esac |
| 102 | |
102 | |