blob: 0b05e985011dcf9661227000dc140de1bf90f1ca (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/jam-2.5.ebuild,v 1.4 2004/06/25 02:37:00 agriffis Exp $
DESCRIPTION="Just Another Make - advanced make replacement"
SRC_URI="ftp://ftp.perforce.com/pub/jam/${P}.tar"
HOMEPAGE="http://www.perforce.com/jam/jam.html"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc"
DEPEND="dev-util/yacc
!dev-util/boost-jam"
src_compile() {
# The bootstrap makefile assumes ${S} is in the path
env PATH="${PATH}:${S}" make CFLAGS="${CFLAGS}" || die
}
src_install() {
BINDIR="${D}/usr/bin" ./jam0 install || die
dohtml Jam.html Jambase.html Jamfile.html
dodoc README RELNOTES Porting
}
|