rafaelmartins    15/01/02 19:09:05

  Modified:             ChangeLog
  Added:                peg-0.1.15-r1.ebuild
  Log:
  Fixed cross-compilation issues
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  dev-util/peg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/peg/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/peg/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/peg/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/peg/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   10 May 2014 10:52:39 -0000      1.4
+++ ChangeLog   2 Jan 2015 19:09:05 -0000       1.5
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/peg
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/peg/ChangeLog,v 1.4 2014/05/10 
10:52:39 jauhien Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/peg/ChangeLog,v 1.5 2015/01/02 
19:09:05 rafaelmartins Exp $
+
+*peg-0.1.15-r1 (02 Jan 2015)
+
+  02 Jan 2015; Rafael G. Martins <[email protected]>
+  +peg-0.1.15-r1.ebuild:
+  Fixed cross-compilation issues
 
   10 May 2014;  <[email protected]> peg-0.1.15.ebuild:
   fixes in ebuild: thanks to jlec



1.1                  dev-util/peg/peg-0.1.15-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/peg/peg-0.1.15-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/peg/peg-0.1.15-r1.ebuild?rev=1.1&content-type=text/plain

Index: peg-0.1.15-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/peg/peg-0.1.15-r1.ebuild,v 1.1 
2015/01/02 19:09:05 rafaelmartins Exp $

EAPI=5

inherit toolchain-funcs

DESCRIPTION="Recursive-descent parser generators for C"
HOMEPAGE="http://piumarta.com/software/peg/";
SRC_URI="http://piumarta.com/software/${PN}/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

# FIXME: tests don't respect {C,LD}FLAGS and build stuff in runtime.
RESTRICT="test"

src_prepare() {
        sed -i \
                -e '/strip/d' \
                -e '/^CFLAGS/d' \
                -e 's/$(CC) $(CFLAGS) -o/$(CC) $(CFLAGS) $(LDFLAGS) -o/g' \
                        Makefile || die "sed failed"
}

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

src_install() {
        dodir "/usr/bin"
        emake -j1 \
                ROOT="${D}" \
                PREFIX="/usr" \
                install
        rm -rf "${D}/usr/man" || die "rm failed"
        doman src/${PN}.1
}

src_test() {
        emake check
        emake test
}




Reply via email to