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