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