| 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.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.14 2002/05/21 18:14:08 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 | |
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 | |
| 12 | base_src_unpack() { |
15 | base_src_unpack() { |
| 13 | |
16 | |
| … | |
… | |
| 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 | 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 |
| 39 | |
51 | |
| 40 | } |
52 | } |
| 41 | |
53 | |
| 42 | base_src_compile() { |
54 | base_src_compile() { |
| 43 | |
55 | |
| 44 | debug-print-function $FUNCNAME $* |
56 | debug-print-function $FUNCNAME $* |
| 45 | [ -z "$1" ] && base_src_compile all |
57 | [ -z "$1" ] && base_src_compile all |
| 46 | |
58 | |
| 47 | cd ${S} |
59 | cd ${S} |
| 48 | |
60 | |
| 49 | while [ "$1" ]; do |
61 | while [ "$1" ]; do |
| 50 | |
62 | |
| 51 | case $1 in |
63 | case $1 in |
| 52 | configure) |
64 | configure) |
| 53 | debug-print-section configure |
65 | debug-print-section configure |
| 54 | econf || die "died running econf, $FUNCNAME:configure" |
66 | econf || die "died running econf, $FUNCNAME:configure" |
| 55 | ;; |
67 | ;; |
| 56 | make) |
68 | make) |
| 57 | debug-print-section make |
69 | debug-print-section make |
| 58 | emake || die "died running emake, $FUNCNAME:make" |
70 | emake || die "died running emake, $FUNCNAME:make" |
| 59 | ;; |
71 | ;; |
| 60 | all) |
72 | all) |
| 61 | debug-print-section all |
73 | debug-print-section all |
| 62 | base_src_compile configure make |
74 | base_src_compile configure make |
| 63 | ;; |
75 | ;; |
| 64 | esac |
76 | esac |
| 65 | |
77 | |
| 66 | shift |
78 | shift |
| 67 | done |
79 | done |
| 68 | |
80 | |
| 69 | } |
81 | } |
| 70 | |
82 | |
| 71 | base_src_install() { |
83 | base_src_install() { |
| 72 | |
84 | |
| … | |
… | |
| 76 | cd ${S} |
88 | cd ${S} |
| 77 | |
89 | |
| 78 | while [ "$1" ]; do |
90 | while [ "$1" ]; do |
| 79 | |
91 | |
| 80 | case $1 in |
92 | case $1 in |
| 81 | make) |
93 | make) |
| 82 | debug-print-section make |
94 | debug-print-section make |
| 83 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 84 | ;; |
96 | ;; |
| 85 | all) |
97 | all) |
| 86 | debug-print-section all |
98 | debug-print-section all |
| 87 | base_src_install make |
99 | base_src_install make |
| 88 | ;; |
100 | ;; |
| 89 | esac |
101 | esac |
| 90 | |
102 | |