diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-12 07:00:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-12 07:00:10 +0000 |
commit | a0fd918d38cbee7df3b43dee4d64febccff3bd28 (patch) | |
tree | 40f702b3bef32bb8564c27f59240538ee96826e2 /sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild | |
parent | old (diff) | |
download | gentoo-2-a0fd918d38cbee7df3b43dee4d64febccff3bd28.tar.gz gentoo-2-a0fd918d38cbee7df3b43dee4d64febccff3bd28.tar.bz2 gentoo-2-a0fd918d38cbee7df3b43dee4d64febccff3bd28.zip |
Add wrappers for gcjh, gfortran, and the D language #157694 by Philipp Kirchner.
(Portage version: 2.1.2.2)
Diffstat (limited to 'sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild')
-rw-r--r-- | sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild b/sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild new file mode 100644 index 000000000000..85ae64587ff6 --- /dev/null +++ b/sys-devel/gcc-config/gcc-config-1.3.15-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2007 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.15-r1.ebuild,v 1.1 2007/03/12 07:00:10 vapier Exp $ + +inherit toolchain-funcs multilib + +# Version of .c wrapper to use +W_VER="1.4.7" + +DESCRIPTION="Utility to change the gcc compiler being used" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="!app-admin/eselect-compiler" + +S=${WORKDIR} + +src_compile() { + $(tc-getCC) -O2 -Wall -o wrapper \ + "${FILESDIR}"/wrapper-${W_VER}.c || die "compile wrapper" +} + +src_install() { + newbin "${FILESDIR}"/${PN}-${PV} ${PN} || die "install gcc-config" + sed -i \ + -e "s:PORTAGE-VERSION:${PVR}:g" \ + -e "s:GENTOO_LIBDIR:$(get_libdir):g" \ + "${D}"/usr/bin/${PN} + + exeinto /usr/$(get_libdir)/misc + newexe wrapper gcc-config || die "install wrapper" +} + +pkg_postinst() { + # Do we have a valid multi ver setup ? + if gcc-config --get-current-profile &>/dev/null ; then + # We not longer use the /usr/include/g++-v3 hacks, as + # it is not needed ... + [[ -L ${ROOT}/usr/include/g++ ]] && rm -f "${ROOT}"/usr/include/g++ + [[ -L ${ROOT}/usr/include/g++-v3 ]] && rm -f "${ROOT}"/usr/include/g++-v3 + [[ ${ROOT} = "/" ]] && gcc-config $(/usr/bin/gcc-config --get-current-profile) + fi + + # Make sure old versions dont exist #79062 + rm -f "${ROOT}"/usr/sbin/gcc-config +} |