summaryrefslogtreecommitdiff
blob: f3c58bb6f8ec2d627145f24ac7b7b8d8aa2af8c5 (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
35
36
37
38
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/aterm/aterm-2.4.2.ebuild,v 1.1 2005/11/04 12:45:09 karltk Exp $

inherit flag-o-matic

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 ~alpha"
IUSE="java"

DEPEND="java? ( virtual/jdk )"

src_compile() {
	local myc
	use java && myc="--with-java" || myc="--without-java"

	filter-flags "-fomit-frame-pointer"
	# 2004-06-11: karltk
	# May want to add 64bit support on some archs?
	# Cannot do --without-64bit on 32bit arch
	econf \
		--with-gcc \
		--with-cflags="${CFLAGS}" \
		--without-dbg \
		--with-prof \
		${myconf} || die "./configure failed"
	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	dodoc AUTHORS COPYING ChangeLog NEWS README
}