polynomial-c    15/04/24 07:38:48

  Modified:             ChangeLog
  Added:                gcc-config-1.8-r1.ebuild
  Log:
  Don't use functions.sh from init.d folder (bug #504118). Raised EAPI to 
version 5
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x981CA6FC)

Revision  Changes    Path
1.229                sys-devel/gcc-config/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc-config/ChangeLog?rev=1.229&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc-config/ChangeLog?rev=1.229&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc-config/ChangeLog?r1=1.228&r2=1.229

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v
retrieving revision 1.228
retrieving revision 1.229
diff -u -r1.228 -r1.229
--- ChangeLog   18 Jan 2014 03:08:29 -0000      1.228
+++ ChangeLog   24 Apr 2015 07:38:48 -0000      1.229
@@ -1,6 +1,14 @@
 # ChangeLog for sys-devel/gcc-config
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.228 
2014/01/18 03:08:29 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.229 
2015/04/24 07:38:48 polynomial-c Exp $
+
+*gcc-config-1.8-r1 (24 Apr 2015)
+
+  24 Apr 2015; Lars Wendler <polynomia...@gentoo.org>
+  +gcc-config-1.8-r1.ebuild,
+  +files/gcc-config-1.8-dont_source_functions_sh_from_etc_initd.patch:
+  Don't use functions.sh from init.d folder (bug #504118). Raised EAPI to
+  version 5.
 
   18 Jan 2014; Mike Frysinger <vap...@gentoo.org> gcc-config-1.7.3.ebuild,
   gcc-config-1.8.ebuild:



1.1                  sys-devel/gcc-config/gcc-config-1.8-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc-config/gcc-config-1.8-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc-config/gcc-config-1.8-r1.ebuild?rev=1.1&content-type=text/plain

Index: gcc-config-1.8-r1.ebuild
===================================================================
# Copyright 1999-2015 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.8-r1.ebuild,v 1.1 
2015/04/24 07:38:48 polynomial-c Exp $

EAPI=5

inherit eutils unpacker toolchain-funcs multilib

DESCRIPTION="utility to manage compilers"
HOMEPAGE="http://git.overlays.gentoo.org/gitweb/?p=proj/gcc-config.git";
SRC_URI="mirror://gentoo/${P}.tar.xz
        http://dev.gentoo.org/~vapier/dist/${P}.tar.xz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE=""

src_prepare() {
        epatch 
"${FILESDIR}/${PN}-1.8-dont_source_functions_sh_from_etc_initd.patch" # 504118
}

src_compile() {
        emake CC="$(tc-getCC)"
}

src_install() {
        emake \
                DESTDIR="${D}" \
                PV="${PV}" \
                SUBLIBDIR="$(get_libdir)" \
                install
}

pkg_postinst() {
        # Scrub eselect-compiler remains
        rm -f "${ROOT}"/etc/env.d/05compiler &

        # Make sure old versions dont exist #79062
        rm -f "${ROOT}"/usr/sbin/gcc-config &

        # We not longer use the /usr/include/g++-v3 hacks, as
        # it is not needed ...
        rm -f "${ROOT}"/usr/include/g++{,-v3} &

        # Do we have a valid multi ver setup ?
        local x
        for x in $(gcc-config -C -l 2>/dev/null | awk '$NF == "*" { print $2 
}') ; do
                gcc-config ${x}
        done

        wait
}




Reply via email to