patrick 15/05/13 03:08:22 Modified: ChangeLog Added: pcc-9999.ebuild Log: Add live ebuild #549204 (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.15 dev-lang/pcc/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 9 Mar 2015 09:29:02 -0000 1.14 +++ ChangeLog 13 May 2015 03:08:22 -0000 1.15 @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/pcc # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.14 2015/03/09 09:29:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.15 2015/05/13 03:08:22 patrick Exp $ + +*pcc-9999 (13 May 2015) + + 13 May 2015; Patrick Lauer <[email protected]> +pcc-9999.ebuild: + Add live ebuild #549204 09 Mar 2015; Patrick Lauer <[email protected]> pcc-1.1.0-r1.ebuild: Fix ebuild paths 1.1 dev-lang/pcc/pcc-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-9999.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-9999.ebuild?rev=1.1&content-type=text/plain Index: pcc-9999.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-9999.ebuild,v 1.1 2015/05/13 03:08:22 patrick Exp $ EAPI=5 inherit eutils versionator autotools DESCRIPTION="pcc portable c compiler" HOMEPAGE="http://pcc.ludd.ltu.se" if [[ ${PV} = 9999 ]]; then inherit cvs ECVS_SERVER="pcc.ludd.ltu.se:/cvsroot" ECVS_MODULE="${PN}" KEYWORDS="" S="${WORKDIR}/${PN}" else SRC_URI="ftp://pcc.ludd.ltu.se/pub/pcc-releases/${P}.tgz" KEYWORDS="~x86 ~amd64 ~amd64-fbsd" fi LICENSE="BSD" SLOT="0" IUSE="" DEPEND=">=dev-libs/pcc-libs-${PV}" RDEPEND="${DEPEND}" 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 } src_configure() { econf --disable-stripping } src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" }
