| 1 |
# Copyright 1999-2000 Gentoo Technologies, Inc. |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# Author Dan Armak <danarmak@gentoo.org> |
| 4 |
# $Header: /home/cvsroot/gentoo-x86/eclass/base.eclass,v 1.17 2002/10/24 18:38:32 danarmak Exp $ |
| 5 |
# The base eclass defines some default functions and variables. Nearly everything |
| 6 |
# else inherits from here. |
| 7 |
|
| 8 |
ECLASS=base |
| 9 |
INHERITED="$INHERITED $ECLASS" |
| 10 |
S=${WORKDIR}/${P} |
| 11 |
DESCRIPTION="Based on the $ECLASS eclass" |
| 12 |
|
| 13 |
base_src_unpack() { |
| 14 |
|
| 15 |
debug-print-function $FUNCNAME $* |
| 16 |
[ -z "$1" ] && base_src_unpack all |
| 17 |
|
| 18 |
cd ${WORKDIR} |
| 19 |
|
| 20 |
while [ "$1" ]; do |
| 21 |
|
| 22 |
case $1 in |
| 23 |
unpack) |
| 24 |
debug-print-section unpack |
| 25 |
# rather ugly fix - check for usage of kde-patch.eclass |
| 26 |
[ -n "$PATCH" -a -n "$ORIGPV" -a -n "$DATE" -a -n "$OLDIFS" ] && \ |
| 27 |
A="`echo $A | sed -e s:${PATCH}::g --`" |
| 28 |
unpack ${A} |
| 29 |
;; |
| 30 |
patch) |
| 31 |
debug-print-section patch |
| 32 |
cd ${S} |
| 33 |
patch -p0 < ${FILESDIR}/${P}-gentoo.diff |
| 34 |
;; |
| 35 |
autopatch) |
| 36 |
debug-print-section autopatch |
| 37 |
debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES" |
| 38 |
cd ${S} |
| 39 |
for x in $PATCHES; do |
| 40 |
debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 41 |
patch -p0 < ${x} |
| 42 |
done |
| 43 |
;; |
| 44 |
all) |
| 45 |
debug-print-section all |
| 46 |
base_src_unpack unpack autopatch |
| 47 |
;; |
| 48 |
esac |
| 49 |
|
| 50 |
shift |
| 51 |
done |
| 52 |
|
| 53 |
} |
| 54 |
|
| 55 |
base_src_compile() { |
| 56 |
|
| 57 |
debug-print-function $FUNCNAME $* |
| 58 |
[ -z "$1" ] && base_src_compile all |
| 59 |
|
| 60 |
cd ${S} |
| 61 |
|
| 62 |
while [ "$1" ]; do |
| 63 |
|
| 64 |
case $1 in |
| 65 |
configure) |
| 66 |
debug-print-section configure |
| 67 |
econf || die "died running econf, $FUNCNAME:configure" |
| 68 |
;; |
| 69 |
make) |
| 70 |
debug-print-section make |
| 71 |
emake || die "died running emake, $FUNCNAME:make" |
| 72 |
;; |
| 73 |
all) |
| 74 |
debug-print-section all |
| 75 |
base_src_compile configure make |
| 76 |
;; |
| 77 |
esac |
| 78 |
|
| 79 |
shift |
| 80 |
done |
| 81 |
|
| 82 |
} |
| 83 |
|
| 84 |
base_src_install() { |
| 85 |
|
| 86 |
debug-print-function $FUNCNAME $* |
| 87 |
[ -z "$1" ] && base_src_install all |
| 88 |
|
| 89 |
cd ${S} |
| 90 |
|
| 91 |
while [ "$1" ]; do |
| 92 |
|
| 93 |
case $1 in |
| 94 |
make) |
| 95 |
debug-print-section make |
| 96 |
make DESTDIR=${D} install || die "died running make install, $FUNCNAME:make" |
| 97 |
;; |
| 98 |
all) |
| 99 |
debug-print-section all |
| 100 |
base_src_install make |
| 101 |
;; |
| 102 |
esac |
| 103 |
|
| 104 |
shift |
| 105 |
done |
| 106 |
|
| 107 |
} |
| 108 |
|
| 109 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |