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