summaryrefslogtreecommitdiff
path: root/gentoo/scons.ebuild.in
blob: 50c9ad981953950501004816612f83543ec98141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $__NULL__Header: /home/cvsroot/gentoo-x86/dev-util/scons/scons-__VERSION__.ebuild,v 1.2 2003/02/13 12:00:11 vapier Exp __NULL__$

MY_P=${PN}-__VERSION__
S=${WORKDIR}/${MY_P}
DESCRIPTION="Extensible python-based build utility"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
HOMEPAGE="http://www.scons.org"

SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86 ~sparc"

DEPEND=">=dev-lang/python-2.4"

src_compile() {
        python setup.py build
}

src_install () {
        python setup.py install --root=${D}
        dodoc *.txt PKG-INFO MANIFEST
        doman scons.1
        doman sconsign.1
}