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