| 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.29 2005/09/08 09:33:27 flameeyes 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.8 2001/12/22 14:52:29 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 | inherit virtual || die |
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() { |
| 14 | |
16 | |
| 15 | debug-print-function $FUNCNAME $* |
17 | debug-print-function $FUNCNAME $* |
| 16 | [ -z "$1" ] && base_src_unpack all |
18 | [ -z "$1" ] && base_src_unpack all |
| 17 | |
19 | |
|
|
20 | cd ${WORKDIR} |
|
|
21 | |
| 18 | while [ "$1" ]; do |
22 | while [ "$1" ]; do |
| 19 | |
23 | |
| 20 | case $1 in |
24 | case $1 in |
| 21 | unpack) |
25 | unpack) |
| 22 | debug-print-section unpack |
26 | debug-print-section unpack |
| 23 | unpack ${A} |
27 | unpack ${A} |
| 24 | ;; |
28 | ;; |
| 25 | patch) |
29 | patch) |
| 26 | debug-print-section patch |
30 | debug-print-section patch |
| 27 | cd ${S} |
31 | cd ${S} |
| 28 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
32 | epatch ${FILESDIR}/${P}-gentoo.diff |
| 29 | ;; |
33 | ;; |
|
|
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 | ;; |
| 30 | all) |
43 | all) |
| 31 | debug-print-section all |
44 | debug-print-section all |
| 32 | base_src_unpack unpack |
45 | base_src_unpack unpack autopatch |
| 33 | ;; |
46 | ;; |
| 34 | esac |
47 | esac |
| 35 | |
48 | |
| 36 | shift |
49 | shift |
| 37 | done |
50 | done |
| 38 | |
51 | |
| 39 | } |
52 | } |
| 40 | |
53 | |
| 41 | base_src_compile() { |
54 | base_src_compile() { |
| 42 | |
55 | |
| 43 | debug-print-function $FUNCNAME $* |
56 | debug-print-function $FUNCNAME $* |
| 44 | [ -z "$1" ] && base_src_compile all |
57 | [ -z "$1" ] && base_src_compile all |
| 45 | |
58 | |
|
|
59 | cd ${S} |
|
|
60 | |
| 46 | while [ "$1" ]; do |
61 | while [ "$1" ]; do |
| 47 | |
62 | |
| 48 | case $1 in |
63 | case $1 in |
| 49 | configure) |
64 | configure) |
| 50 | debug-print-section configure |
65 | debug-print-section configure |
| 51 | ./configure || die |
66 | econf || die "died running econf, $FUNCNAME:configure" |
| 52 | ;; |
67 | ;; |
| 53 | make) |
68 | make) |
| 54 | debug-print-section make |
69 | debug-print-section make |
| 55 | make || die |
70 | emake || die "died running emake, $FUNCNAME:make" |
| 56 | ;; |
71 | ;; |
| 57 | all) |
72 | all) |
| 58 | debug-print-section all |
73 | debug-print-section all |
| 59 | base_src_compile configure make |
74 | base_src_compile configure make |
| 60 | ;; |
75 | ;; |
| 61 | esac |
76 | esac |
| 62 | |
77 | |
| 63 | shift |
78 | shift |
| 64 | done |
79 | done |
| 65 | |
80 | |
| 66 | } |
81 | } |
| 67 | |
82 | |
| 68 | base_src_install() { |
83 | base_src_install() { |
| 69 | |
84 | |
| 70 | debug-print-function $FUNCNAME $* |
85 | debug-print-function $FUNCNAME $* |
| 71 | [ -z "$1" ] && base_src_install all |
86 | [ -z "$1" ] && base_src_install all |
| 72 | |
87 | |
|
|
88 | cd ${S} |
|
|
89 | |
| 73 | while [ "$1" ]; do |
90 | while [ "$1" ]; do |
| 74 | |
91 | |
| 75 | case $1 in |
92 | case $1 in |
| 76 | make) |
93 | make) |
| 77 | debug-print-section make |
94 | debug-print-section make |
| 78 | make DESTDIR=${D} install || die |
95 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 79 | ;; |
96 | ;; |
| 80 | all) |
97 | all) |
| 81 | debug-prnit-section all |
98 | debug-print-section all |
| 82 | base_src_install make |
99 | base_src_install make |
| 83 | ;; |
100 | ;; |
| 84 | esac |
101 | esac |
| 85 | |
102 | |
| 86 | shift |
103 | shift |
| 87 | done |
104 | done |
| 88 | |
105 | |
| 89 | } |
106 | } |
| 90 | |
107 | |
| 91 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
108 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 92 | |
|
|
| 93 | # misc helper functions |
|
|
| 94 | # adds all parameters to DEPEND and RDEPEND |
|
|
| 95 | newdepend() { |
|
|
| 96 | |
|
|
| 97 | debug-print-function newdepend $* |
|
|
| 98 | debug-print "newdepend: DEPEND=$DEPEND RDEPEND=$RDEPEND" |
|
|
| 99 | |
|
|
| 100 | while [ -n "$1" ]; do |
|
|
| 101 | DEPEND="$DEPEND $1" |
|
|
| 102 | RDEPEND="$RDEPEND $1" |
|
|
| 103 | shift |
|
|
| 104 | done |
|
|
| 105 | |
|
|
| 106 | } |
|
|
| 107 | |
|
|