| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
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 $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.33 2008/02/16 20:12:58 betelgeuse Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Dan Armak <danarmak@gentoo.org> |
5 | # Author Dan Armak <danarmak@gentoo.org> (nowadays retired) |
| 6 | # |
6 | # |
| 7 | # The base eclass defines some default functions and variables. Nearly everything |
7 | # The base eclass defines some default functions and variables. Nearly everything |
| 8 | # else inherits from here. |
8 | # else inherits from here. |
| 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 | autopatch) |
33 | autopatch) |
| 33 | debug-print-section autopatch |
34 | debug-print-section autopatch |
| 34 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
35 | debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 35 | cd ${S} |
36 | cd "${S}" |
|
|
37 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 36 | for x in $PATCHES; do |
38 | for x in "${PATCHES[@]}"; do |
| 37 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
39 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 38 | patch -p0 < ${x} |
40 | epatch "${x}" |
| 39 | done |
41 | done |
|
|
42 | else |
| 40 | for x in $PATCHES1; do |
43 | for x in ${PATCHES} ${PATCHES1}; do |
| 41 | debug-print "$FUNCNAME: autopatch: patching -p1 from ${x}" |
44 | debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 42 | patch -p1 < ${x} |
45 | epatch "${x}" |
| 43 | done |
46 | done |
|
|
47 | fi |
| 44 | ;; |
48 | ;; |
| 45 | all) |
49 | all) |
| 46 | debug-print-section all |
50 | debug-print-section all |
| 47 | base_src_unpack unpack autopatch |
51 | base_src_unpack unpack autopatch |
| 48 | ;; |
52 | ;; |
| 49 | esac |
53 | esac |
| 50 | |
54 | |
| 51 | shift |
55 | shift |
| 52 | done |
56 | done |
| 53 | |
57 | |
| 54 | } |
58 | } |
| 55 | |
59 | |
| 56 | base_src_compile() { |
60 | base_src_compile() { |
| 57 | |
61 | |
| 58 | debug-print-function $FUNCNAME $* |
62 | debug-print-function $FUNCNAME $* |
| 59 | [ -z "$1" ] && base_src_compile all |
63 | [ -z "$1" ] && base_src_compile all |
| 60 | |
64 | |
| 61 | cd ${S} |
65 | cd "${S}" |
| 62 | |
66 | |
| 63 | while [ "$1" ]; do |
67 | while [ "$1" ]; do |
| 64 | |
68 | |
| 65 | case $1 in |
69 | case $1 in |
| 66 | configure) |
70 | configure) |
| 67 | debug-print-section configure |
71 | debug-print-section configure |
| 68 | econf || die "died running econf, $FUNCNAME:configure" |
72 | econf || die "died running econf, $FUNCNAME:configure" |
| 69 | ;; |
73 | ;; |
| 70 | make) |
74 | make) |
| 71 | debug-print-section make |
75 | debug-print-section make |
| 72 | emake || die "died running emake, $FUNCNAME:make" |
76 | emake || die "died running emake, $FUNCNAME:make" |
| 73 | ;; |
77 | ;; |
| 74 | all) |
78 | all) |
| 75 | debug-print-section all |
79 | debug-print-section all |
| 76 | base_src_compile configure make |
80 | base_src_compile configure make |
| 77 | ;; |
81 | ;; |
| 78 | esac |
82 | esac |
| 79 | |
83 | |
| 80 | shift |
84 | shift |
| 81 | done |
85 | done |
| 82 | |
86 | |
| 83 | } |
87 | } |
| 84 | |
88 | |
| 85 | base_src_install() { |
89 | base_src_install() { |
| 86 | |
90 | |
| 87 | debug-print-function $FUNCNAME $* |
91 | debug-print-function $FUNCNAME $* |
| 88 | [ -z "$1" ] && base_src_install all |
92 | [ -z "$1" ] && base_src_install all |
| 89 | |
93 | |
| 90 | cd ${S} |
94 | cd "${S}" |
| 91 | |
95 | |
| 92 | while [ "$1" ]; do |
96 | while [ "$1" ]; do |
| 93 | |
97 | |
| 94 | case $1 in |
98 | case $1 in |
| 95 | make) |
99 | make) |
| 96 | debug-print-section make |
100 | debug-print-section make |
| 97 | make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
101 | make DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" |
| 98 | ;; |
102 | ;; |
| 99 | all) |
103 | all) |
| 100 | debug-print-section all |
104 | debug-print-section all |
| 101 | base_src_install make |
105 | base_src_install make |
| 102 | ;; |
106 | ;; |