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