blob: ee3e94b4d069412d101d61ad196576e40cb8582a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-compiler/eselect-compiler-2.0.0_beta5.ebuild,v 1.2 2005/10/19 20:30:59 eradicator Exp $
DESCRIPTION="Utility to configure the active toolchain compiler"
HOMEPAGE="http://www.gentoo.org/"
MY_PN="compiler-config"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI=" http://dev.gentoo.org/~eradicator/toolchain/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~s390 ~sh ~sparc ~x86"
IUSE=""
RDEPEND="=app-admin/eselect-0.9*"
pkg_postinst() {
# Some toolchain.eclass installed confs aren't quite right
sed -i 's:chost:ctarget:g' ${ROOT}/etc/eselect/compiler/*
sed -i 's:spec=:specs=:g' ${ROOT}/etc/eselect/compiler/*
# Migrate from the old configs
if [[ ! -f "${ROOT}/etc/eselect/compiler/selection.conf" ]] ; then
# Migrate isn't smart enough to handle the toolchain.eclass
# installed confs.
# This should be fixed before it comes out of beta and p.m.
rm -f ${ROOT}/etc/eselect/compiler/*.conf
eselect compiler migrate
fi
# Update the wrappers
eselect compiler update
if rm -f ${ROOT}/etc/env.d/05gcc* &> /dev/null ; then
ewarn "You should source /etc/profile in your open shells."
fi
ewarn "Thanks for beta testing eselect-compiler. If you have any problems,"
ewarn "please contact eradicator@gentoo.org."
}
src_install() {
dodoc README
make DESTDIR="${D}" install || die
# This is installed by sys-devel/gcc-config
rm ${D}/usr/bin/gcc-config
}
|