blob: 16a34ab256c24e25417baa99bf61a7984fdc0da3 (
plain)
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/gcc-config-1.3.6-r1.ebuild,v 1.4 2004/08/31 18:41:09 gustavoz Exp $
# Version of .c wrapper to use
W_VER="1.4.2"
DISABLE_GEN_GCC_WRAPPERS="yes"
GCC_CONFIG_BIN="${ROOT}/usr/bin/gcc-config"
DESCRIPTION="Utility to change the gcc compiler being used."
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc sparc ~mips ~alpha arm ~hppa amd64 ~ia64 ~ppc64 ~s390"
IUSE=""
DEPEND="virtual/libc
>=sys-apps/portage-2.0.47-r10" # We need portageq ...
pkg_setup() {
if [ -x "${GCC_CONFIG_BIN}" ]
then
# Make sure while we have write access that everything is setup Ok ...
${GCC_CONFIG_BIN} --get-current-profile &> /dev/null
fi
}
src_install() {
local gcc_bin_path="$(${GCC_CONFIG_BIN} --get-bin-path)"
# Setup PATH just in case ...
if ${GCC_CONFIG_BIN} --get-current-profile &> /dev/null
then
if [ -x "${GCC_CONFIG_BIN}" ]
then
export PATH="`${GCC_CONFIG_BIN} --get-bin-path`:${PATH}"
else
export PATH="`${GCC_CONFIG_BIN} --get-bin-path`:${PATH}"
fi
fi
einfo "Compiling wrapper..."
${CC:-gcc} -O2 -Wall -o ${WORKDIR}/wrapper \
${FILESDIR}/wrapper-${W_VER}.c || die
exeinto /usr/lib/gcc-config
doexe ${WORKDIR}/wrapper || die
# Only setup this if we have a proper gcc version installed, else
# we will nuke the non gcc-config versions ...
if ${GCC_CONFIG_BIN} --get-current-profile &> /dev/null
then
einfo "Creating wrappers for compiler tools..."
exeinto /lib
newexe ${WORKDIR}/wrapper cpp
exeinto /usr/bin
for x in gcc cpp cc c++ g++ f77 gcj \
${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ${CHOST}-f77 ${CHOST}-gcj
do
# Make sure we only install wrappers for those present ...
[ -x "${gcc_bin_path}/${x}" -o \
"${x}" = "c++" -o "${x}" = "${REAL_CHOST}-c++" -o \
"${x}" = "cpp" -o "${x}" = "cc" ] && \
newexe ${WORKDIR}/wrapper ${x}
done
fi
einfo "Installing gcc-config..."
newbin ${FILESDIR}/${PN}-${PV} ${PN}
dosed "s:PORTAGE-VERSION:${PV}:" /usr/bin/${PN}
}
pkg_postinst() {
# Do we have a valid multi ver setup ?
if ${GCC_CONFIG_BIN} --get-current-profile &> /dev/null
then
# We not longer use the /usr/include/g++-v3 hacks, as
# it is not needed ...
if [ -L ${ROOT}/usr/include/g++ ]
then
rm -f ${ROOT}/usr/include/g++
fi
if [ -L ${ROOT}/usr/include/g++-v3 ]
then
rm -f ${ROOT}/usr/include/g++-v3
fi
if [ ${ROOT} = "/" ]
then
${GCC_CONFIG_BIN} $(/usr/bin/gcc-config --get-current-profile)
fi
fi
}
|