| 1 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.39 2010/01/03 19:13:44 scarabeus Exp $ |
| 4 |
|
| 5 |
# @ECLASS: base.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# Peter Alfredsen <loki_val@gentoo.org> |
| 8 |
# |
| 9 |
# Original author Dan Armak <danarmak@gentoo.org> |
| 10 |
# @BLURB: The base eclass defines some default functions and variables. |
| 11 |
# @DESCRIPTION: |
| 12 |
# The base eclass defines some default functions and variables. Nearly |
| 13 |
# everything else inherits from here. |
| 14 |
# |
| 15 |
# NOTE: You must define EAPI before inheriting from base, or the wrong functions |
| 16 |
# may be exported. |
| 17 |
|
| 18 |
|
| 19 |
inherit eutils |
| 20 |
|
| 21 |
case "${EAPI:-0}" in |
| 22 |
2) |
| 23 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install |
| 24 |
;; |
| 25 |
*) |
| 26 |
EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 27 |
;; |
| 28 |
esac |
| 29 |
|
| 30 |
DESCRIPTION="Based on the $ECLASS eclass" |
| 31 |
|
| 32 |
# @FUNCTION: base_src_unpack |
| 33 |
# @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ] |
| 34 |
# @DESCRIPTION: |
| 35 |
# The base src_unpack function, which is exported. If no argument is given, |
| 36 |
# "all" is assumed if EAPI!=2, "unpack" if EAPI=2. |
| 37 |
base_src_unpack() { |
| 38 |
|
| 39 |
debug-print-function $FUNCNAME "$@" |
| 40 |
|
| 41 |
if [ -z "$1" ] ; then |
| 42 |
case "${EAPI:-0}" in |
| 43 |
2) |
| 44 |
base_src_util unpack |
| 45 |
;; |
| 46 |
*) |
| 47 |
base_src_util all |
| 48 |
;; |
| 49 |
esac |
| 50 |
else |
| 51 |
base_src_util $@ |
| 52 |
fi |
| 53 |
} |
| 54 |
|
| 55 |
# @FUNCTION: base_src_prepare |
| 56 |
# @DESCRIPTION: |
| 57 |
# The base src_prepare function, which is exported when EAPI=2. Performs |
| 58 |
# "base_src_util autopatch". |
| 59 |
base_src_prepare() { |
| 60 |
|
| 61 |
debug-print-function $FUNCNAME "$@" |
| 62 |
|
| 63 |
base_src_util autopatch |
| 64 |
} |
| 65 |
|
| 66 |
# @FUNCTION: base_src_util |
| 67 |
# @USAGE: [ unpack ] [ patch ] [ autopatch ] [ all ] |
| 68 |
# @DESCRIPTION: |
| 69 |
# The base_src_util function is the grunt function for base src_unpack |
| 70 |
# and base src_prepare. |
| 71 |
base_src_util() { |
| 72 |
local x |
| 73 |
|
| 74 |
debug-print-function $FUNCNAME "$@" |
| 75 |
|
| 76 |
cd "${WORKDIR}" |
| 77 |
|
| 78 |
while [ "$1" ]; do |
| 79 |
|
| 80 |
case $1 in |
| 81 |
unpack) |
| 82 |
debug-print-section unpack |
| 83 |
if [ ! -z "$A" ] ; then |
| 84 |
unpack ${A} |
| 85 |
fi |
| 86 |
;; |
| 87 |
patch) |
| 88 |
debug-print-section patch |
| 89 |
cd "${S}" |
| 90 |
epatch "${FILESDIR}/${P}-gentoo.diff" |
| 91 |
;; |
| 92 |
autopatch) |
| 93 |
debug-print-section autopatch |
| 94 |
debug-print "$FUNCNAME: autopatch: PATCHES=$PATCHES, PATCHES1=$PATCHES1" |
| 95 |
cd "${S}" |
| 96 |
if [[ ${#PATCHES[@]} -gt 1 ]] ; then |
| 97 |
for x in "${PATCHES[@]}"; do |
| 98 |
debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 99 |
epatch "${x}" |
| 100 |
done |
| 101 |
else |
| 102 |
for x in ${PATCHES} ${PATCHES1}; do |
| 103 |
debug-print "$FUNCNAME: autopatch: patching from ${x}" |
| 104 |
epatch "${x}" |
| 105 |
done |
| 106 |
fi |
| 107 |
;; |
| 108 |
all) |
| 109 |
debug-print-section all |
| 110 |
base_src_util unpack autopatch |
| 111 |
;; |
| 112 |
esac |
| 113 |
|
| 114 |
shift |
| 115 |
done |
| 116 |
|
| 117 |
} |
| 118 |
|
| 119 |
# @FUNCTION: base_src_configure |
| 120 |
# @DESCRIPTION: |
| 121 |
# The base src_prepare function, which is exported when EAPI=2. Performs |
| 122 |
# "base_src_work configure". |
| 123 |
base_src_configure() { |
| 124 |
|
| 125 |
debug-print-function $FUNCNAME "$@" |
| 126 |
|
| 127 |
base_src_work configure |
| 128 |
} |
| 129 |
|
| 130 |
# @FUNCTION: base_src_compile |
| 131 |
# @USAGE: [ configure ] [ make ] [ all ] |
| 132 |
# @DESCRIPTION: |
| 133 |
# The base src_compile function, which is exported. If no argument is given, |
| 134 |
# "all" is assumed if EAPI!=2, "make" if EAPI=2. |
| 135 |
base_src_compile() { |
| 136 |
|
| 137 |
debug-print-function $FUNCNAME "$@" |
| 138 |
|
| 139 |
if [ -z "$1" ] |
| 140 |
then |
| 141 |
case "${EAPI:-0}" in |
| 142 |
2) |
| 143 |
base_src_work make |
| 144 |
;; |
| 145 |
*) |
| 146 |
base_src_work all |
| 147 |
;; |
| 148 |
esac |
| 149 |
else |
| 150 |
base_src_work $@ |
| 151 |
fi |
| 152 |
} |
| 153 |
|
| 154 |
# placeholder for future api so eclasses can be migrated now. |
| 155 |
base_src_make() { |
| 156 |
debug-print-function $FUNCNAME "$@" |
| 157 |
base_src_work make |
| 158 |
} |
| 159 |
|
| 160 |
# @FUNCTION: base_src_work |
| 161 |
# @USAGE: [ configure ] [ make ] [ all ] |
| 162 |
# @DESCRIPTION: |
| 163 |
# The base_src_work function is the grunt function for base src_configure |
| 164 |
# and base src_compile. |
| 165 |
base_src_work() { |
| 166 |
|
| 167 |
debug-print-function $FUNCNAME "$@" |
| 168 |
|
| 169 |
cd "${S}" |
| 170 |
|
| 171 |
while [ "$1" ]; do |
| 172 |
|
| 173 |
case $1 in |
| 174 |
configure) |
| 175 |
debug-print-section configure |
| 176 |
if [[ -x ${ECONF_SOURCE:-.}/configure ]] |
| 177 |
then |
| 178 |
econf || die "died running econf, $FUNCNAME:configure" |
| 179 |
fi |
| 180 |
;; |
| 181 |
make) |
| 182 |
debug-print-section make |
| 183 |
if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ] |
| 184 |
then |
| 185 |
emake || die "died running emake, $FUNCNAME:make" |
| 186 |
fi |
| 187 |
;; |
| 188 |
all) |
| 189 |
debug-print-section all |
| 190 |
base_src_work configure make |
| 191 |
;; |
| 192 |
esac |
| 193 |
|
| 194 |
shift |
| 195 |
done |
| 196 |
|
| 197 |
} |
| 198 |
|
| 199 |
# @FUNCTION: base_src_install |
| 200 |
# @USAGE: [ make ] [ all ] |
| 201 |
# @DESCRIPTION: |
| 202 |
# The base src_install function, which is exported. If no argument is given, |
| 203 |
# "all" is assumed. |
| 204 |
base_src_install() { |
| 205 |
|
| 206 |
debug-print-function $FUNCNAME "$@" |
| 207 |
[ -z "$1" ] && base_src_install all |
| 208 |
|
| 209 |
cd "${S}" |
| 210 |
|
| 211 |
while [ "$1" ]; do |
| 212 |
|
| 213 |
case $1 in |
| 214 |
make) |
| 215 |
debug-print-section make |
| 216 |
make DESTDIR="${D}" install || die "died running make install, $FUNCNAME:make" |
| 217 |
;; |
| 218 |
all) |
| 219 |
debug-print-section all |
| 220 |
base_src_install make |
| 221 |
;; |
| 222 |
esac |
| 223 |
|
| 224 |
shift |
| 225 |
done |
| 226 |
|
| 227 |
} |