| 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.32 2008/02/12 23:51:51 betelgeuse Exp $ |
|
|
4 | # |
| 3 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> (nowadays retired) |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.13 2002/03/30 12:52:14 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 | [ -n "$COMPAT" ] && inherit functions |
|
|
| 8 | ECLASS=base |
|
|
| 9 | |
9 | |
| 10 | S=${WORKDIR}/${P} |
10 | inherit eutils |
|
|
11 | |
| 11 | DESCRIPTION="Based on the $ECLASS eclass" |
12 | DESCRIPTION="Based on the $ECLASS eclass" |
| 12 | |
13 | |
| 13 | base_src_unpack() { |
14 | base_src_unpack() { |
| 14 | |
15 | |
| 15 | debug-print-function $FUNCNAME $* |
16 | debug-print-function $FUNCNAME $* |
| 16 | [ -z "$1" ] && base_src_unpack all |
17 | [ -z "$1" ] && base_src_unpack all |
| 17 | |
18 | |
| 18 | cd ${WORKDIR} |
19 | cd "${WORKDIR}" |
| 19 | |
20 | |
| 20 | while [ "$1" ]; do |
21 | while [ "$1" ]; do |
| 21 | |
22 | |
| 22 | case $1 in |
23 | case $1 in |
| 23 | unpack) |
24 | unpack) |
| 24 | debug-print-section unpack |
25 | debug-print-section unpack |
| 25 | unpack ${A} |
26 | unpack ${A} |
| 26 | ;; |
27 | ;; |
| 27 | patch) |
28 | patch) |
| 28 | debug-print-section patch |
29 | debug-print-section patch |
| 29 | cd ${S} |
30 | cd "${S}" |
| 30 | patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
31 | epatch "${FILESDIR}/${P}-gentoo.diff" |
| 31 | ;; |
32 | ;; |
| 32 | all) |
33 | autopatch) |
|
|
34 | debug-print-section autopatch |
|
|
35 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
|
|
36 | cd "${S}" |
|
|
37 | for x in $PATCHES $PATCHES1; do |
|
|
38 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
|
|
39 | epatch ${x} |
|
|
40 | done |
|
|
41 | ;; |
|
|
42 | all) |
| 33 | debug-print-section all |
43 | debug-print-section all |
| 34 | base_src_unpack unpack |
44 | base_src_unpack unpack autopatch |
| 35 | ;; |
45 | ;; |
| 36 | esac |
46 | esac |
| 37 | |
47 | |
| 38 | shift |
48 | shift |
| 39 | done |
49 | done |
| 40 | |
50 | |
| 41 | } |
51 | } |
| 42 | |
52 | |
| 43 | base_src_compile() { |
53 | base_src_compile() { |
| 44 | |
54 | |
| 45 | debug-print-function $FUNCNAME $* |
55 | debug-print-function $FUNCNAME $* |
| 46 | [ -z "$1" ] && base_src_compile all |
56 | [ -z "$1" ] && base_src_compile all |
| 47 | |
57 | |
| 48 | cd ${S} |
58 | cd "${S}" |
| 49 | |
59 | |
| 50 | while [ "$1" ]; do |
60 | while [ "$1" ]; do |
| 51 | |
61 | |
| 52 | case $1 in |
62 | case $1 in |
| 53 | configure) |
63 | configure) |
| 54 | debug-print-section configure |
64 | debug-print-section configure |
| 55 | econf || die "died running econf, $FUNCNAME:configure" |
65 | econf || die "died running econf, $FUNCNAME:configure" |
| 56 | ;; |
66 | ;; |
| 57 | make) |
67 | make) |
| 58 | debug-print-section make |
68 | debug-print-section make |
| 59 | emake || die "died running emake, $FUNCNAME:make" |
69 | emake || die "died running emake, $FUNCNAME:make" |
| 60 | ;; |
70 | ;; |
| 61 | all) |
71 | all) |
| 62 | debug-print-section all |
72 | debug-print-section all |
| 63 | base_src_compile configure make |
73 | base_src_compile configure make |
| 64 | ;; |
74 | ;; |
| 65 | esac |
75 | esac |
| 66 | |
76 | |
| 67 | shift |
77 | shift |
| 68 | done |
78 | done |
| 69 | |
79 | |
| 70 | } |
80 | } |
| 71 | |
81 | |
| 72 | base_src_install() { |
82 | base_src_install() { |
| 73 | |
83 | |
| 74 | debug-print-function $FUNCNAME $* |
84 | debug-print-function $FUNCNAME $* |
| 75 | [ -z "$1" ] && base_src_install all |
85 | [ -z "$1" ] && base_src_install all |
| 76 | |
86 | |
| 77 | cd ${S} |
87 | cd "${S}" |
| 78 | |
88 | |
| 79 | while [ "$1" ]; do |
89 | while [ "$1" ]; do |
| 80 | |
90 | |
| 81 | case $1 in |
91 | case $1 in |
| 82 | make) |
92 | make) |
| 83 | debug-print-section make |
93 | debug-print-section make |
| 84 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
94 | make DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" |
| 85 | ;; |
95 | ;; |
| 86 | all) |
96 | all) |
| 87 | debug-print-section all |
97 | debug-print-section all |
| 88 | base_src_install make |
98 | base_src_install make |
| 89 | ;; |
99 | ;; |
| 90 | esac |
100 | esac |
| 91 | |
101 | |