| 1 | # Copyright 1999-2000 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2000 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 | # Author Dan Armak <danarmak@gentoo.org> |
3 | # 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 $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.18 2002/10/25 19:55:52 vapier Exp $ |
| 5 | # The base eclass defines some default functions and variables. Nearly everything |
5 | # The base eclass defines some default functions and variables. Nearly everything |
| 6 | # else inherits from here. |
6 | # else inherits from here. |
| 7 | . /usr/portage/eclass/inherit.eclass || die |
7 | |
| 8 | inherit virtual || die |
|
|
| 9 | ECLASS=base |
8 | ECLASS=base |
| 10 | |
9 | INHERITED="$INHERITED $ECLASS" |
| 11 | S=${WORKDIR}/${P} |
10 | S=${WORKDIR}/${P} |
| 12 | DESCRIPTION="Based on the $ECLASS eclass" |
11 | DESCRIPTION="Based on the $ECLASS eclass" |
| 13 | |
12 | |
| 14 | base_src_unpack() { |
13 | base_src_unpack() { |
| 15 | |
14 | |
| 16 | echo "in base_src_unpack, 1st parameter is $1" |
15 | debug-print-function $FUNCNAME $* |
| 17 | [ -z "$1" ] && base_src_unpack all |
16 | [ -z "$1" ] && base_src_unpack all |
| 18 | |
17 | |
|
|
18 | cd ${WORKDIR} |
|
|
19 | |
| 19 | while [ "$1" ]; do |
20 | while [ "$1" ]; do |
| 20 | |
21 | |
| 21 | case $1 in |
22 | case $1 in |
| 22 | unpack) |
23 | unpack) |
| 23 | echo "in base_src_unpack, action unpack" |
24 | debug-print-section unpack |
|
|
25 | # rather ugly fix - check for usage of kde-patch.eclass |
|
|
26 | [ -n "$PATCH" -a -n "$ORIGPV" -a -n "$DATE" -a -n "$OLDIFS" ] && \ |
|
|
27 | A="`echo $A | sed -e s:${PATCH}::g --`" |
| 24 | unpack ${A} |
28 | unpack ${A} |
| 25 | ;; |
29 | ;; |
|
|
30 | patch) |
|
|
31 | debug-print-section patch |
|
|
32 | cd ${S} |
|
|
33 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
|
|
34 | ;; |
|
|
35 | autopatch) |
|
|
36 | debug-print-section autopatch |
|
|
37 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
|
|
38 | cd ${S} |
|
|
39 | for x in $PATCHES; do |
|
|
40 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
|
|
41 | patch -p0 < ${x} |
|
|
42 | done |
|
|
43 | ;; |
| 26 | all) |
44 | all) |
| 27 | echo "in base_src_unpack, action all" |
45 | debug-print-section all |
| 28 | base_src_unpack unpack |
46 | base_src_unpack unpack autopatch |
| 29 | ;; |
47 | ;; |
| 30 | esac |
48 | esac |
| 31 | |
49 | |
| 32 | shift |
50 | shift |
| 33 | done |
51 | done |
| 34 | |
52 | |
| 35 | } |
53 | } |
| 36 | |
54 | |
| 37 | base_src_compile() { |
55 | base_src_compile() { |
| 38 | |
56 | |
| 39 | echo "in base_src_compile, 1st parameter is $1" |
57 | debug-print-function $FUNCNAME $* |
| 40 | [ -z "$1" ] && base_src_compile all |
58 | [ -z "$1" ] && base_src_compile all |
| 41 | |
59 | |
|
|
60 | cd ${S} |
|
|
61 | |
| 42 | while [ "$1" ]; do |
62 | while [ "$1" ]; do |
| 43 | |
63 | |
| 44 | case $1 in |
64 | case $1 in |
| 45 | configure) |
65 | configure) |
| 46 | echo "in base_src_compile, action configure" |
66 | debug-print-section configure |
| 47 | ./configure || die |
67 | econf || die "died running econf, $FUNCNAME:configure" |
| 48 | ;; |
68 | ;; |
| 49 | make) |
69 | make) |
| 50 | echo "in base_src_compile, action make" |
70 | debug-print-section make |
| 51 | make || die |
71 | emake || die "died running emake, $FUNCNAME:make" |
| 52 | ;; |
72 | ;; |
| 53 | all) |
73 | all) |
| 54 | echo "in base_src_compile, action all" |
74 | debug-print-section all |
| 55 | base_src_compile configure make |
75 | base_src_compile configure make |
| 56 | ;; |
76 | ;; |
| 57 | esac |
77 | esac |
| 58 | |
78 | |
| 59 | shift |
79 | shift |
| 60 | done |
80 | done |
| 61 | |
81 | |
| 62 | } |
82 | } |
| 63 | |
83 | |
| 64 | base_src_install() { |
84 | base_src_install() { |
| 65 | |
85 | |
| 66 | echo "in base_src_install, 1st parameter is $1" |
86 | debug-print-function $FUNCNAME $* |
| 67 | [ -z "$1" ] && base_src_install all |
87 | [ -z "$1" ] && base_src_install all |
| 68 | |
88 | |
|
|
89 | cd ${S} |
|
|
90 | |
| 69 | while [ "$1" ]; do |
91 | while [ "$1" ]; do |
| 70 | |
92 | |
| 71 | case $1 in |
93 | case $1 in |
| 72 | make) |
94 | make) |
| 73 | echo "in base_src_install, action make" |
95 | debug-print-section make |
| 74 | make DESTDIR=${D} install || die |
96 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 75 | ;; |
97 | ;; |
| 76 | all) |
98 | all) |
| 77 | echo "in base_src_install, action all" |
99 | debug-print-section all |
| 78 | base_src_install make |
100 | base_src_install make |
| 79 | ;; |
101 | ;; |
| 80 | esac |
102 | esac |
| 81 | |
103 | |
| 82 | shift |
104 | shift |
| 83 | done |
105 | done |
| 84 | |
106 | |
| 85 | } |
107 | } |
| 86 | |
108 | |
| 87 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
109 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 88 | |
|
|