diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2012-06-01 07:02:44 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2012-06-01 07:02:44 +0000 |
commit | 899382b0baf30cc898e25b02bdf98659786f8ea8 (patch) | |
tree | 41b77853964a4cec9e7c128fc999b434b851f1d7 /dev-util | |
parent | marked x86 per bug 418451 (diff) | |
download | gentoo-2-899382b0baf30cc898e25b02bdf98659786f8ea8.tar.gz gentoo-2-899382b0baf30cc898e25b02bdf98659786f8ea8.tar.bz2 gentoo-2-899382b0baf30cc898e25b02bdf98659786f8ea8.zip |
Version bump.
(Portage version: 2.1.10.56/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/build/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/build/build-0.3.9.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-util/build/ChangeLog b/dev-util/build/ChangeLog index be6fe4bfb2a6..b9a2ec659cdc 100644 --- a/dev-util/build/ChangeLog +++ b/dev-util/build/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/build -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/build/ChangeLog,v 1.1 2010/10/20 05:53:31 dev-zero Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/build/ChangeLog,v 1.2 2012/06/01 07:02:44 dev-zero Exp $ + +*build-0.3.9 (01 Jun 2012) + + 01 Jun 2012; Tiziano Müller <dev-zero@gentoo.org> +build-0.3.9.ebuild: + Version bump. *build-0.3.8 (20 Oct 2010) diff --git a/dev-util/build/build-0.3.9.ebuild b/dev-util/build/build-0.3.9.ebuild new file mode 100644 index 000000000000..3a230f609ef5 --- /dev/null +++ b/dev-util/build/build-0.3.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/build/build-0.3.9.ebuild,v 1.1 2012/06/01 07:02:44 dev-zero Exp $ + +EAPI="4" + +inherit versionator + +DESCRIPTION="A massively-parallel software build system implemented on top of GNU make." +HOMEPAGE="http://kolpackov.net/projects/build/" +SLOT="$(get_version_component_range 1-2)" +SRC_URI="http://www.codesynthesis.com/download/${PN}/${SLOT}/${P}.tar.bz2" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="" +RDEPEND="" + +src_install() { + emake install_prefix="${D}/usr" install + + dodoc documentation/[[:upper:]]* + dohtml -A xhtml documentation/*.{css,xhtml} + + if use examples ; then + # preserving symlinks in the examples + cp -dpR examples "${D}/usr/share/doc/${PF}" + fi +} |