summaryrefslogtreecommitdiff
blob: 09d21e8c6f32752ad07eec3fbbf1a1f5f831d9cb (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/jam-2.4.ebuild,v 1.3 2003/01/25 05:24:02 vapier Exp $

DESCRIPTION="jam (Just Another Make) - advanced make replacement"
SRC_URI="ftp://ftp.perforce.com/pub/jam/${P}.zip"
HOMEPAGE="http://www.perforce.com/jam/jam.html"

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

DEPEND="dev-util/yacc
	app-arch/unzip"

src_compile() {
	# The bootstrap makefile assumes ${S} is in the path
	PATH="${PATH}:${S}" make || die
}

src_install() {
	BINDIR="${D}/usr/bin" ./jam0 install
	dohtml Jam.html Jambase.html Jamfile.html
	dodoc README RELNOTES Porting
}