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