blob: f451c36643cf7c7aab54e04f373ee21ed19977ff (
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
27
28
29
30
31
32
33
34
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/aterm/aterm-2.0.ebuild,v 1.2 2004/06/24 22:59:57 agriffis Exp $
DESCRIPTION="ATerm tree-handling library"
HOMEPAGE="http://www.cwi.nl/projects/MetaEnv/aterm/"
SRC_URI="http://www.cwi.nl/projects/MetaEnv/aterm/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE="java"
DEPEND="java? ( virtual/jdk )"
src_compile() {
local myc
use java && myc="--with-java" || myc="--without-java"
# 2004-02-07: karltk
# May want to add 64bit support on some archs?
# Cannot explicitly disable features with --without, it blows up.
econf \
--with-gcc \
--without-dbg \
--with-prof \
${myconf} || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|