diff options
author | Patrick Lauer <patrick@gentoo.org> | 2015-06-23 06:19:58 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2015-06-23 06:19:58 +0000 |
commit | a8b8a8d1a9728c7c42c62d83758f9224f7a509c0 (patch) | |
tree | b5ec24f50406796344a76f3dd6dfbd0e7d792c56 /dev-util/scons | |
parent | Bump (diff) | |
download | gentoo-2-a8b8a8d1a9728c7c42c62d83758f9224f7a509c0.tar.gz gentoo-2-a8b8a8d1a9728c7c42c62d83758f9224f7a509c0.tar.bz2 gentoo-2-a8b8a8d1a9728c7c42c62d83758f9224f7a509c0.zip |
Bump
(Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-util/scons')
-rw-r--r-- | dev-util/scons/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/scons/scons-2.3.5.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/dev-util/scons/ChangeLog b/dev-util/scons/ChangeLog index 4f10b9f839a8..f7557d0d0ef9 100644 --- a/dev-util/scons/ChangeLog +++ b/dev-util/scons/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/scons # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.157 2015/04/08 17:54:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/ChangeLog,v 1.158 2015/06/23 06:19:58 patrick Exp $ + +*scons-2.3.5 (23 Jun 2015) + + 23 Jun 2015; Patrick Lauer <patrick@gentoo.org> +scons-2.3.5.ebuild: + Bump 08 Apr 2015; Michał Górny <mgorny@gentoo.org> scons-2.3.0.ebuild, scons-2.3.1-r1.ebuild, scons-2.3.1.ebuild: diff --git a/dev-util/scons/scons-2.3.5.ebuild b/dev-util/scons/scons-2.3.5.ebuild new file mode 100644 index 000000000000..3223422a4bb5 --- /dev/null +++ b/dev-util/scons/scons-2.3.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/scons/scons-2.3.5.ebuild,v 1.1 2015/06/23 06:19:58 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Extensible Python-based build utility" +HOMEPAGE="http://www.scons.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz + doc? ( http://www.scons.org/doc/${PV}/PDF/${PN}-user.pdf -> ${P}-user.pdf + http://www.scons.org/doc/${PV}/HTML/${PN}-user.html -> ${P}-user.html )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc" + +PATCHES=( "${FILESDIR}/${PN}-2.1.0-jython.patch" ) + +python_prepare_all() { + # https://bugs.gentoo.org/show_bug.cgi?id=361061 + sed -i -e "s|/usr/local/bin:/opt/bin:/bin:/usr/bin|${EPREFIX}/usr/local/bin:${EPREFIX}/opt/bin:${EPREFIX}/bin:${EPREFIX}/usr/bin:/usr/local/bin:/opt/bin:/bin:/usr/bin|g" engine/SCons/Platform/posix.py || die + # and make sure the build system doesn't "force" /usr/local/ :( + sed -i -e "s/'darwin'/'NOWAYdarwinWAYNO'/" setup.py || die + + distutils-r1_python_prepare_all +} + +python_install() { + distutils-r1_python_install \ + --standard-lib \ + --no-version-script \ + --install-data "${EPREFIX}"/usr/share +} + +python_install_all() { + local DOCS=( {CHANGES,README,RELEASE}.txt ) + distutils-r1_python_install_all + + use doc && dodoc "${DISTDIR}"/${P}-user.{pdf,html} +} + +src_install() { + distutils-r1_src_install + + # Build system does not use build_scripts properly. + # http://scons.tigris.org/issues/show_bug.cgi?id=2891 + python_replicate_script "${ED}"usr/bin/scons{,ign,-time} +} |