diff options
author | Patrick Lauer <patrick@gentoo.org> | 2011-04-04 10:20:48 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2011-04-04 10:20:48 +0000 |
commit | 72d816babb4a47991dbf3fba154c6e5948204a39 (patch) | |
tree | 84c32a54ffed28e00cf82574d0dd103c06983066 /dev-libs/pcc-libs | |
parent | keyworded ~x86 per bug 316131 (diff) | |
download | gentoo-2-72d816babb4a47991dbf3fba154c6e5948204a39.tar.gz gentoo-2-72d816babb4a47991dbf3fba154c6e5948204a39.tar.bz2 gentoo-2-72d816babb4a47991dbf3fba154c6e5948204a39.zip |
Bump
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/pcc-libs')
-rw-r--r-- | dev-libs/pcc-libs/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/pcc-libs/pcc-libs-1.0.0.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-libs/pcc-libs/ChangeLog b/dev-libs/pcc-libs/ChangeLog index 98e4c80fc566..84c21c3c201f 100644 --- a/dev-libs/pcc-libs/ChangeLog +++ b/dev-libs/pcc-libs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/pcc-libs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcc-libs/ChangeLog,v 1.5 2011/01/16 10:22:51 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcc-libs/ChangeLog,v 1.6 2011/04/04 10:20:48 patrick Exp $ + +*pcc-libs-1.0.0 (04 Apr 2011) + + 04 Apr 2011; Patrick Lauer <patrick@gentoo.org> +pcc-libs-1.0.0.ebuild: + Bump *pcc-libs-1.0.0_pre20110116 (16 Jan 2011) diff --git a/dev-libs/pcc-libs/pcc-libs-1.0.0.ebuild b/dev-libs/pcc-libs/pcc-libs-1.0.0.ebuild new file mode 100644 index 000000000000..accb04b4c284 --- /dev/null +++ b/dev-libs/pcc-libs/pcc-libs-1.0.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcc-libs/pcc-libs-1.0.0.ebuild,v 1.1 2011/04/04 10:20:48 patrick Exp $ + +EAPI=2 + +inherit eutils versionator + +DESCRIPTION="pcc compiler support libs" +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" + +IUSE="" +DEPEND="" +RDEPEND="${DEPEND}" + +src_compile() { + # not parallel-safe yet + emake -j1 || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |