| 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 or later |
| 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.9 2002/01/04 12:06:28 danarmak Exp $ |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.15 2002/06/05 19:09:21 danarmak 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 | ECLASS=base |
7 | ECLASS=base |
| 8 | |
8 | |
| 9 | S=${WORKDIR}/${P} |
9 | S=${WORKDIR}/${P} |
| … | |
… | |
| 12 | base_src_unpack() { |
12 | base_src_unpack() { |
| 13 | |
13 | |
| 14 | debug-print-function $FUNCNAME $* |
14 | debug-print-function $FUNCNAME $* |
| 15 | [ -z "$1" ] && base_src_unpack all |
15 | [ -z "$1" ] && base_src_unpack all |
| 16 | |
16 | |
|
|
17 | cd ${WORKDIR} |
|
|
18 | |
| 17 | while [ "$1" ]; do |
19 | while [ "$1" ]; do |
| 18 | |
20 | |
| 19 | case $1 in |
21 | case $1 in |
| 20 | unpack) |
22 | unpack) |
| 21 | debug-print-section unpack |
23 | debug-print-section unpack |
|
|
24 | # rather ugly fix - check for usage of kde-patch.eclass |
|
|
25 | [ -n "$PATCH" -a -n "$ORIGPV" -a -n "$DATE" -a -n "$OLDIFS" ] && \ |
|
|
26 | A="`echo $A | sed -e s:${PATCH}::g --`" |
| 22 | unpack ${A} |
27 | unpack ${A} |
| 23 | ;; |
28 | ;; |
| 24 | patch) |
29 | patch) |
| 25 | debug-print-section patch |
30 | debug-print-section patch |
| 26 | cd ${S} |
31 | cd ${S} |
| 27 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 28 | ;; |
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 | ;; |
| 29 | all) |
43 | all) |
| 30 | debug-print-section all |
44 | debug-print-section all |
| 31 | base_src_unpack unpack |
45 | base_src_unpack unpack autopatch |
| 32 | ;; |
46 | ;; |
| 33 | esac |
47 | esac |
| 34 | |
48 | |
| 35 | shift |
49 | shift |
| 36 | done |
50 | done |
| 37 | |
51 | |
| 38 | } |
52 | } |
| 39 | |
53 | |
| 40 | base_src_compile() { |
54 | base_src_compile() { |
| 41 | |
55 | |
| 42 | debug-print-function $FUNCNAME $* |
56 | debug-print-function $FUNCNAME $* |
| 43 | [ -z "$1" ] && base_src_compile all |
57 | [ -z "$1" ] && base_src_compile all |
|
|
58 | |
|
|
59 | cd ${S} |
| 44 | |
60 | |
| 45 | while [ "$1" ]; do |
61 | while [ "$1" ]; do |
| 46 | |
62 | |
| 47 | case $1 in |
63 | case $1 in |
| 48 | configure) |
64 | configure) |
| 49 | debug-print-section configure |
65 | debug-print-section configure |
| 50 | ./configure || die |
66 | econf || die "died running econf, $FUNCNAME:configure" |
| 51 | ;; |
67 | ;; |
| 52 | make) |
68 | make) |
| 53 | debug-print-section make |
69 | debug-print-section make |
| 54 | make || die |
70 | emake || die "died running emake, $FUNCNAME:make" |
| 55 | ;; |
71 | ;; |
| 56 | all) |
72 | all) |
| 57 | debug-print-section all |
73 | debug-print-section all |
| 58 | base_src_compile configure make |
74 | base_src_compile configure make |
| 59 | ;; |
75 | ;; |
| … | |
… | |
| 67 | base_src_install() { |
83 | base_src_install() { |
| 68 | |
84 | |
| 69 | debug-print-function $FUNCNAME $* |
85 | debug-print-function $FUNCNAME $* |
| 70 | [ -z "$1" ] && base_src_install all |
86 | [ -z "$1" ] && base_src_install all |
| 71 | |
87 | |
|
|
88 | cd ${S} |
|
|
89 | |
| 72 | while [ "$1" ]; do |
90 | while [ "$1" ]; do |
| 73 | |
91 | |
| 74 | case $1 in |
92 | case $1 in |
| 75 | make) |
93 | make) |
| 76 | debug-print-section make |
94 | debug-print-section make |
| 77 | make DESTDIR=${D} install || die |
95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 78 | ;; |
96 | ;; |
| 79 | all) |
97 | all) |
| 80 | debug-prnit-section all |
98 | debug-print-section all |
| 81 | base_src_install make |
99 | base_src_install make |
| 82 | ;; |
100 | ;; |
| 83 | esac |
101 | esac |
| 84 | |
102 | |
| 85 | shift |
103 | shift |
| 86 | done |
104 | done |
| 87 | |
105 | |
| 88 | } |
106 | } |
| 89 | |
107 | |
| 90 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
108 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 91 | |
|
|
| 92 | # misc helper functions |
|
|
| 93 | # adds all parameters to DEPEND and RDEPEND |
|
|
| 94 | newdepend() { |
|
|
| 95 | |
|
|
| 96 | debug-print-function newdepend $* |
|
|
| 97 | debug-print "newdepend: DEPEND=$DEPEND RDEPEND=$RDEPEND" |
|
|
| 98 | |
|
|
| 99 | while [ -n "$1" ]; do |
|
|
| 100 | DEPEND="$DEPEND $1" |
|
|
| 101 | RDEPEND="$RDEPEND $1" |
|
|
| 102 | shift |
|
|
| 103 | done |
|
|
| 104 | |
|
|
| 105 | } |
|
|
| 106 | |
|
|