diff options
author | 2010-08-30 19:39:43 +0000 | |
---|---|---|
committer | 2010-08-30 19:39:43 +0000 | |
commit | a21258c09e2a597f3e4a022510817c468cf3c5ee (patch) | |
tree | e3c470c18ce035a005e9f709b4662d583e87da6c /dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild | |
parent | Stable for PPC (bug #330195). (diff) | |
download | historical-a21258c09e2a597f3e4a022510817c468cf3c5ee.tar.gz historical-a21258c09e2a597f3e4a022510817c468cf3c5ee.tar.bz2 historical-a21258c09e2a597f3e4a022510817c468cf3c5ee.zip |
Bump
Package-Manager: portage-2.2_rc72/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild')
-rw-r--r-- | dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild b/dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild new file mode 100644 index 000000000000..d1ccb4f3fc18 --- /dev/null +++ b/dev-libs/pcc-libs/pcc-libs-1.0.0_pre100830.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 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_pre100830.ebuild,v 1.1 2010/08/30 19:39:43 patrick Exp $ + +EAPI=2 + +inherit eutils versionator + +# extract date stamp for later use +ver=$(get_version_component_range 4) +ver=${ver/pre/} + +DESCRIPTION="pcc compiler support libs" +HOMEPAGE="http://pcc.ludd.ltu.se" + +SRC_URI="ftp://pcc.ludd.ltu.se/pub/${PN}/${PN}-${ver}.tgz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +IUSE="" +DEPEND="" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN}-${ver} + +src_compile() { + # not parallel-safe yet + emake -j1 || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |