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