1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#!/usr/bin/env bash
# vim: set sw=4 sts=4 et :
# Copyright (c) 2006, 2007, 2009 Ciaran McCreesh
#
# Based in part upon ebuild.sh from Portage, which is Copyright 1995-2005
# Gentoo Foundation and distributed under the terms of the GNU General
# Public License v2.
#
# This file is part of the Paludis package manager. Paludis is free software;
# you can redistribute it and/or modify it under the terms of the GNU General
# Public License, version 2, as published by the Free Software Foundation.
#
# Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA
econf()
{
local phase
has src_configure ${PALUDIS_EBUILD_FUNCTIONS} && phase=configure
if [[ "${!PALUDIS_EBUILD_PHASE_VAR}" != "${phase:-compile}" ]]; then
ebuild_notice "qa" "econf called in EBUILD_PHASE ${!PALUDIS_EBUILD_PHASE_VAR}. It should not be run outside src_${phase} for this EAPI."
fi
local LOCAL_EXTRA_ECONF="${EXTRA_ECONF}"
local LOCAL_ECONF_WRAPPER="${ECONF_WRAPPER}"
[[ -z "${ECONF_SOURCE}" ]] && ECONF_SOURCE=.
if [[ -x "${ECONF_SOURCE}/configure" ]] ; then
if [[ -d /usr/share/gnuconfig ]] ; then
local f
find "${WORKDIR}" -type f -name config.guess -or -name config.sub | while read f; do
echo "econf: updating ${f} with /usr/share/gnuconfig/${f##*/}"
cp -f "/usr/share/gnuconfig/${f##*/}" "${f}"
done
fi
[[ -z "${CBUILD}" ]] || LOCAL_EXTRA_ECONF="--build=${CBUILD} ${LOCAL_EXTRA_ECONF}"
[[ -z "${CTARGET}" ]] || LOCAL_EXTRA_ECONF="--target=${CTARGET} ${LOCAL_EXTRA_ECONF}"
local extra_options_help=""
for i in ${PALUDIS_ECONF_EXTRA_OPTIONS_HELP_DEPENDENT}; do
"${ECONF_SOURCE}/configure" --help 2>/dev/null | grep -q "${i%%::*}" \
&& extra_options_help+=" ${i#*::}"
done
# If the ebuild passed in --prefix, use that to set --libdir. KDE at least needs this.
ECONF_PREFIX=/usr
for i in "$@"; do
if [[ ${i} == --prefix=* ]]; then
ECONF_PREFIX=${i#--prefix=}
elif [[ ${i} == --exec-prefix=* ]]; then
ECONF_PREFIX=${i#--exec-prefix=}
fi
done
local libcmd=
if [[ -n "${ABI}" ]] ; then
local v="LIBDIR_${ABI}"
if [[ -n "${!v}" ]] ; then
libcmd="--libdir=${ECONF_PREFIX}/$(ebuild_get_libdir)"
fi
fi
echo ${LOCAL_ECONF_WRAPPER} "${ECONF_SOURCE}"/configure \
--prefix=/usr \
--host=${CHOST} \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${PALUDIS_ECONF_EXTRA_OPTIONS} \
${extra_options_help} \
${libcmd} "$@" ${LOCAL_EXTRA_ECONF} 1>&2
${LOCAL_ECONF_WRAPPER} "${ECONF_SOURCE}"/configure \
--prefix=/usr \
--host=${CHOST} \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc \
--localstatedir=/var/lib \
${PALUDIS_ECONF_EXTRA_OPTIONS} \
${extra_options_help} \
${libcmd} "$@" ${LOCAL_EXTRA_ECONF} || die "econf failed"
else
die "No configure script for econf"
fi
}
einstall()
{
if [[ -f Makefile ]] || [[ -f makefile ]] || [[ -f GNUmakefile ]] ; then
local makecmd=""
type -p gmake &>/dev/null && makecmd="gmake" || makecmd="make"
local cmd="${EINSTALL_WRAPPER} ${makecmd} prefix=${D}/usr"
cmd="${cmd} mandir=${D}/usr/share/man"
cmd="${cmd} infodir=${D}/usr/share/info"
cmd="${cmd} datadir=${D}/usr/share"
cmd="${cmd} sysconfdir=${D}/etc"
cmd="${cmd} localstatedir=${D}/var/lib"
cmd="${cmd} libdir=${D}/usr/$(ebuild_get_libdir)"
cmd="${cmd} ${EXTRA_EINSTALL} ${@} install"
echo "${cmd}" 1>&2
${cmd} || die "einstall failed"
else
die "No Makefile for einstall"
fi
}
|