| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2008 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.45 2010/01/20 12:57:13 spatz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/base.eclass,v 1.52 2010/05/25 21:16:54 reavertm Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: base.eclass |
5 | # @ECLASS: base.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # QA Team <qa@gentoo.org> |
7 | # QA Team <qa@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 63 | } |
63 | } |
| 64 | |
64 | |
| 65 | # @FUNCTION: base_src_prepare |
65 | # @FUNCTION: base_src_prepare |
| 66 | # @DESCRIPTION: |
66 | # @DESCRIPTION: |
| 67 | # The base src_prepare function, which is exported |
67 | # The base src_prepare function, which is exported |
| 68 | # EAPI is greater or equal to 2. |
68 | # EAPI is greater or equal to 2. Here the PATCHES array is evaluated. |
| 69 | base_src_prepare() { |
69 | base_src_prepare() { |
| 70 | debug-print-function $FUNCNAME "$@" |
70 | debug-print-function $FUNCNAME "$@" |
| 71 | debug-print "$FUNCNAME: PATCHES=$PATCHES" |
71 | debug-print "$FUNCNAME: PATCHES=$PATCHES" |
|
|
72 | |
|
|
73 | local patches_failed=0 |
| 72 | |
74 | |
| 73 | pushd "${S}" > /dev/null |
75 | pushd "${S}" > /dev/null |
| 74 | if [[ "$(declare -p PATCHES 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
76 | if [[ "$(declare -p PATCHES 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
| 75 | for x in "${PATCHES[@]}"; do |
77 | for x in "${PATCHES[@]}"; do |
| 76 | debug-print "$FUNCNAME: applying patch from ${x}" |
78 | debug-print "$FUNCNAME: applying patch from ${x}" |
| … | |
… | |
| 83 | # in order to preserve normal EPATCH_SOURCE value that can |
85 | # in order to preserve normal EPATCH_SOURCE value that can |
| 84 | # be used other way than with base eclass store in local |
86 | # be used other way than with base eclass store in local |
| 85 | # variable and restore later |
87 | # variable and restore later |
| 86 | oldval=${EPATCH_SOURCE} |
88 | oldval=${EPATCH_SOURCE} |
| 87 | EPATCH_SOURCE=${x} |
89 | EPATCH_SOURCE=${x} |
|
|
90 | EPATCH_FORCE=yes |
| 88 | epatch |
91 | epatch |
| 89 | EPATCH_SOURCE=${oldval} |
92 | EPATCH_SOURCE=${oldval} |
|
|
93 | elif [[ -f "${x}" ]]; then |
|
|
94 | epatch "${x}" |
| 90 | else |
95 | else |
| 91 | epatch "${x}" |
96 | ewarn "QA: File or directory \"${x}\" does not exist." |
|
|
97 | ewarn "QA: Check your PATCHES array or add missing file/directory." |
|
|
98 | patches_failed=1 |
| 92 | fi |
99 | fi |
| 93 | done |
100 | done |
|
|
101 | [[ ${patches_failed} -eq 1 ]] && die "Some patches failed. See above messages." |
| 94 | else |
102 | else |
| 95 | for x in ${PATCHES}; do |
103 | for x in ${PATCHES}; do |
| 96 | debug-print "$FUNCNAME: patching from ${x}" |
104 | debug-print "$FUNCNAME: patching from ${x}" |
| 97 | epatch "${x}" |
105 | epatch "${x}" |
| 98 | done |
106 | done |
| … | |
… | |
| 106 | } |
114 | } |
| 107 | |
115 | |
| 108 | # @FUNCTION: base_src_configure |
116 | # @FUNCTION: base_src_configure |
| 109 | # @DESCRIPTION: |
117 | # @DESCRIPTION: |
| 110 | # The base src_configure function, which is exported when |
118 | # The base src_configure function, which is exported when |
| 111 | # EAPI is greater or equal to 2. Runs basic econf. Here the PATCHES array is |
119 | # EAPI is greater or equal to 2. Runs basic econf. |
| 112 | # evaluated. |
|
|
| 113 | base_src_configure() { |
120 | base_src_configure() { |
| 114 | debug-print-function $FUNCNAME "$@" |
121 | debug-print-function $FUNCNAME "$@" |
| 115 | |
122 | |
| 116 | # there is no pushd ${S} so we can override its place where to run |
123 | # there is no pushd ${S} so we can override its place where to run |
| 117 | [[ -x ${ECONF_SOURCE:-.}/configure ]] && econf |
124 | [[ -x ${ECONF_SOURCE:-.}/configure ]] && econf "$@" |
| 118 | } |
125 | } |
| 119 | |
126 | |
| 120 | # @FUNCTION: base_src_compile |
127 | # @FUNCTION: base_src_compile |
| 121 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 122 | # The base src_compile function, calls src_configure with |
129 | # The base src_compile function, calls src_configure with |
| 123 | # EAPI older than 2. |
130 | # EAPI older than 2. |
| 124 | base_src_compile() { |
131 | base_src_compile() { |
| 125 | debug-print-function $FUNCNAME "$@" |
132 | debug-print-function $FUNCNAME "$@" |
| 126 | |
133 | |
| 127 | has src_configure ${BASE_EXPF} || base_src_configure |
134 | has src_configure ${BASE_EXPF} || base_src_configure |
| 128 | base_src_make $@ |
135 | base_src_make "$@" |
| 129 | } |
136 | } |
| 130 | |
137 | |
| 131 | # @FUNCTION: base_src_make |
138 | # @FUNCTION: base_src_make |
| 132 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 133 | # Actual function that runs emake command. |
140 | # Actual function that runs emake command. |
| 134 | base_src_make() { |
141 | base_src_make() { |
| 135 | debug-print-function $FUNCNAME "$@" |
142 | debug-print-function $FUNCNAME "$@" |
| 136 | |
143 | |
| 137 | if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then |
144 | if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then |
| 138 | emake $@ || die "died running emake, $FUNCNAME:make" |
145 | emake "$@" || die "died running emake, $FUNCNAME:make" |
| 139 | fi |
146 | fi |
| 140 | } |
147 | } |
| 141 | |
148 | |
| 142 | # @FUNCTION: base_src_install |
149 | # @FUNCTION: base_src_install |
| 143 | # @DESCRIPTION: |
150 | # @DESCRIPTION: |
| … | |
… | |
| 145 | # installs documents and html documents from DOCS and HTML_DOCS |
152 | # installs documents and html documents from DOCS and HTML_DOCS |
| 146 | # arrays. |
153 | # arrays. |
| 147 | base_src_install() { |
154 | base_src_install() { |
| 148 | debug-print-function $FUNCNAME "$@" |
155 | debug-print-function $FUNCNAME "$@" |
| 149 | |
156 | |
| 150 | emake DESTDIR="${D}" $@ install || die "died running make install, $FUNCNAME:make" |
157 | emake DESTDIR="${D}" "$@" install || die "died running make install, $FUNCNAME:make" |
| 151 | base_src_install_docs |
158 | base_src_install_docs |
| 152 | } |
159 | } |
| 153 | |
160 | |
| 154 | # @FUNCTION: base_src_install_docs |
161 | # @FUNCTION: base_src_install_docs |
| 155 | # @DESCRIPTION: |
162 | # @DESCRIPTION: |
| … | |
… | |
| 163 | pushd "${S}" > /dev/null |
170 | pushd "${S}" > /dev/null |
| 164 | |
171 | |
| 165 | if [[ "$(declare -p DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
172 | if [[ "$(declare -p DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
| 166 | for x in "${DOCS[@]}"; do |
173 | for x in "${DOCS[@]}"; do |
| 167 | debug-print "$FUNCNAME: docs: creating document from ${x}" |
174 | debug-print "$FUNCNAME: docs: creating document from ${x}" |
| 168 | dodoc -r "${x}" || die "dodoc failed" |
175 | dodoc "${x}" || die "dodoc failed" |
| 169 | done |
176 | done |
| 170 | fi |
177 | fi |
| 171 | if [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
178 | if [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then |
| 172 | for x in "${HTML_DOCS[@]}"; do |
179 | for x in "${HTML_DOCS[@]}"; do |
| 173 | debug-print "$FUNCNAME: docs: creating html document from ${x}" |
180 | debug-print "$FUNCNAME: docs: creating html document from ${x}" |