dev-util/qbs: version bump
[gentoo.git] / eclass / base.eclass
1 # Copyright 1999-2014 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: base.eclass
6 # @MAINTAINER:
7 # QA Team <qa@gentoo.org>
8 # @AUTHOR:
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.
13
14 if [[ -z ${_BASE_ECLASS} ]]; then
15 _BASE_ECLASS=1
16
17 inherit eutils
18
19 BASE_EXPF="src_unpack src_compile src_install"
20 case "${EAPI:-0}" in
21         2|3|4|5) BASE_EXPF+=" src_prepare src_configure" ;;
22         *) ;;
23 esac
24
25 EXPORT_FUNCTIONS ${BASE_EXPF}
26
27 # @ECLASS-VARIABLE: DOCS
28 # @DESCRIPTION:
29 # Array containing documents passed to dodoc command.
30 #
31 # DOCS=( "${S}/doc/document.txt" "${S}/doc/doc_folder/" )
32
33 # @ECLASS-VARIABLE: HTML_DOCS
34 # @DESCRIPTION:
35 # Array containing documents passed to dohtml command.
36 #
37 # HTML_DOCS=( "${S}/doc/document.html" "${S}/doc/html_folder/" )
38
39 # @ECLASS-VARIABLE: PATCHES
40 # @DESCRIPTION:
41 # PATCHES array variable containing all various patches to be applied.
42 # This variable is expected to be defined in global scope of ebuild.
43 # Make sure to specify the full path. This variable is utilised in
44 # src_unpack/src_prepare phase based on EAPI.
45 #
46 # NOTE: if using patches folders with special file suffixes you have to
47 # define one additional variable EPATCH_SUFFIX="something"
48 #
49 # PATCHES=( "${FILESDIR}/mypatch.patch" "${FILESDIR}/patches_folder/" )
50
51
52 # @FUNCTION: base_src_unpack
53 # @DESCRIPTION:
54 # The base src_unpack function, which is exported.
55 # Calls also src_prepare with eapi older than 2.
56 base_src_unpack() {
57         debug-print-function $FUNCNAME "$@"
58
59         pushd "${WORKDIR}" > /dev/null
60
61         if [[ $(type -t unpacker_src_unpack) == "function" ]] ; then
62                 unpacker_src_unpack
63         elif [[ -n ${A} ]] ; then
64                 unpack ${A}
65         fi
66         has src_prepare ${BASE_EXPF} || base_src_prepare
67
68         popd > /dev/null
69 }
70
71 # @FUNCTION: base_src_prepare
72 # @DESCRIPTION:
73 # The base src_prepare function, which is exported
74 # EAPI is greater or equal to 2. Here the PATCHES array is evaluated.
75 base_src_prepare() {
76         debug-print-function $FUNCNAME "$@"
77         debug-print "$FUNCNAME: PATCHES=$PATCHES"
78
79         local patches_failed=0
80
81         pushd "${S}" > /dev/null
82         if [[ "$(declare -p PATCHES 2>/dev/null 2>&1)" == "declare -a"* ]]; then
83                 for x in "${PATCHES[@]}"; do
84                         debug-print "$FUNCNAME: applying patch from ${x}"
85                         if [[ -d "${x}" ]]; then
86                                 # Use standardized names and locations with bulk patching
87                                 # Patch directory is ${WORKDIR}/patch
88                                 # See epatch() in eutils.eclass for more documentation
89                                 EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch}
90
91                                 # in order to preserve normal EPATCH_SOURCE value that can
92                                 # be used other way than with base eclass store in local
93                                 # variable and restore later
94                                 oldval=${EPATCH_SOURCE}
95                                 EPATCH_SOURCE=${x}
96                                 EPATCH_FORCE=yes
97                                 epatch
98                                 EPATCH_SOURCE=${oldval}
99                         elif [[ -f "${x}" ]]; then
100                                 epatch "${x}"
101                         else
102                                 ewarn "QA: File or directory \"${x}\" does not exist."
103                                 ewarn "QA: Check your PATCHES array or add missing file/directory."
104                                 patches_failed=1
105                         fi
106                 done
107                 [[ ${patches_failed} -eq 1 ]] && die "Some patches failed. See above messages."
108         else
109                 for x in ${PATCHES}; do
110                         debug-print "$FUNCNAME: patching from ${x}"
111                         epatch "${x}"
112                 done
113         fi
114
115         # Apply user patches
116         debug-print "$FUNCNAME: applying user patches"
117         epatch_user
118
119         popd > /dev/null
120 }
121
122 # @FUNCTION: base_src_configure
123 # @DESCRIPTION:
124 # The base src_configure function, which is exported when
125 # EAPI is greater or equal to 2. Runs basic econf.
126 base_src_configure() {
127         debug-print-function $FUNCNAME "$@"
128
129         # there is no pushd ${S} so we can override its place where to run
130         [[ -x ${ECONF_SOURCE:-.}/configure ]] && econf "$@"
131 }
132
133 # @FUNCTION: base_src_compile
134 # @DESCRIPTION:
135 # The base src_compile function, calls src_configure with
136 # EAPI older than 2.
137 base_src_compile() {
138         debug-print-function $FUNCNAME "$@"
139
140         has src_configure ${BASE_EXPF} || base_src_configure
141         base_src_make "$@"
142 }
143
144 # @FUNCTION: base_src_make
145 # @DESCRIPTION:
146 # Actual function that runs emake command.
147 base_src_make() {
148         debug-print-function $FUNCNAME "$@"
149
150         if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then
151                 emake "$@" || die "died running emake, $FUNCNAME"
152         fi
153 }
154
155 # @FUNCTION: base_src_install
156 # @DESCRIPTION:
157 # The base src_install function. Runs make install and
158 # installs documents and html documents from DOCS and HTML_DOCS
159 # arrays.
160 base_src_install() {
161         debug-print-function $FUNCNAME "$@"
162
163         emake DESTDIR="${D}" "$@" install || die "died running make install, $FUNCNAME"
164         base_src_install_docs
165 }
166
167 # @FUNCTION: base_src_install_docs
168 # @DESCRIPTION:
169 # Actual function that install documentation from
170 # DOCS and HTML_DOCS arrays.
171 base_src_install_docs() {
172         debug-print-function $FUNCNAME "$@"
173
174         local x
175
176         pushd "${S}" > /dev/null
177
178         if [[ "$(declare -p DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then
179                 for x in "${DOCS[@]}"; do
180                         debug-print "$FUNCNAME: docs: creating document from ${x}"
181                         dodoc "${x}" || die "dodoc failed"
182                 done
183         fi
184         if [[ "$(declare -p HTML_DOCS 2>/dev/null 2>&1)" == "declare -a"* ]]; then
185                 for x in "${HTML_DOCS[@]}"; do
186                         debug-print "$FUNCNAME: docs: creating html document from ${x}"
187                         dohtml -r "${x}" || die "dohtml failed"
188                 done
189         fi
190
191         popd > /dev/null
192 }
193
194 fi