patrick 15/03/09 09:26:53 Modified: ChangeLog Added: pcc-1.1.0-r1.ebuild Removed: pcc-1.1.0.ebuild Log: Fix multiarch logic #542606 (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.13 dev-lang/pcc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 29 Dec 2014 02:53:27 -0000 1.12 +++ ChangeLog 9 Mar 2015 09:26:53 -0000 1.13 @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/pcc -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.12 2014/12/29 02:53:27 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.13 2015/03/09 09:26:53 patrick Exp $ + +*pcc-1.1.0-r1 (09 Mar 2015) + + 09 Mar 2015; Patrick Lauer <[email protected]> + +files/pcc-1.1.0-multiarch.patch, +pcc-1.1.0-r1.ebuild, -pcc-1.1.0.ebuild: + Fix multiarch logic #542606 *pcc-1.1.0 (29 Dec 2014) 1.1 dev-lang/pcc/pcc-1.1.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-1.1.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-1.1.0-r1.ebuild?rev=1.1&content-type=text/plain Index: pcc-1.1.0-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/pcc-1.1.0-r1.ebuild,v 1.1 2015/03/09 09:26:53 patrick Exp $ EAPI=5 inherit eutils versionator autotools DESCRIPTION="pcc portable c compiler" HOMEPAGE="http://pcc.ludd.ltu.se" SRC_URI="ftp://pcc.ludd.ltu.se/pub/pcc-releases/${P}.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="~x86 ~amd64 ~amd64-fbsd" IUSE="" DEPEND=">=dev-libs/pcc-libs-${PV}" RDEPEND="${DEPEND}" S=${WORKDIR}/${PN}-${PVR/*_pre/}/ src_prepare() { sed -i -e 's/AC_CHECK_PROG(strip,strip,yes,no)//' configure.ac || die "Failed to fix configure.ac" sed -i -e 's/AC_SUBST(strip)//' configure.ac || die "Failed to fix configure.ac more" eautoreconf epatch "${FILESDIR}/${P}-multiarch.patch" || die } src_configure() { econf --disable-stripping } src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" }
