Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/pcc: pcc-1.1.0.ebuild ChangeLog
Date: Mon, 29 Dec 2014 02:53:31
Message-Id: 20141229025327.692A5E648@oystercatcher.gentoo.org
1 patrick 14/12/29 02:53:27
2
3 Modified: ChangeLog
4 Added: pcc-1.1.0.ebuild
5 Log:
6 Bump #533754
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.12 dev-lang/pcc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 13 Oct 2013 12:50:21 -0000 1.11
24 +++ ChangeLog 29 Dec 2014 02:53:27 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/pcc
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.11 2013/10/13 12:50:21 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/ChangeLog,v 1.12 2014/12/29 02:53:27 patrick Exp $
31 +
32 +*pcc-1.1.0 (29 Dec 2014)
33 +
34 + 29 Dec 2014; Patrick Lauer <patrick@g.o> +pcc-1.1.0.ebuild:
35 + Bump #533754
36
37 *pcc-1.0.1_pre20131013 (13 Oct 2013)
38
39
40
41
42 1.1 dev-lang/pcc/pcc-1.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-1.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/pcc/pcc-1.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pcc-1.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-lang/pcc/pcc-1.1.0.ebuild,v 1.1 2014/12/29 02:53:27 patrick Exp $
52
53 EAPI=5
54
55 inherit eutils versionator autotools
56
57 DESCRIPTION="pcc portable c compiler"
58 HOMEPAGE="http://pcc.ludd.ltu.se"
59
60 SRC_URI="ftp://pcc.ludd.ltu.se/pub/pcc-releases/${P}.tgz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~x86 ~amd64 ~amd64-fbsd"
65 IUSE=""
66 DEPEND=">=dev-libs/pcc-libs-${PV}"
67 RDEPEND="${DEPEND}"
68 S=${WORKDIR}/${PN}-${PVR/*_pre/}/
69
70 src_prepare() {
71 sed -i -e 's/AC_CHECK_PROG(strip,strip,yes,no)//' configure.ac || die "Failed to fix configure.ac"
72 sed -i -e 's/AC_SUBST(strip)//' configure.ac || die "Failed to fix configure.ac more"
73 eautoreconf
74 }
75
76 src_configure() {
77 econf --disable-stripping
78 }
79
80 src_compile() {
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed"
86 }