blob: d9b0adeb4c0da2c728250b53641e5e5ca9e477bc (
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
|
# 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.2.ebuild,v 1.4 2005/04/24 12:37:03 hansmi 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 ~alpha"
IUSE="java"
DEPEND="java? ( virtual/jdk )"
src_compile() {
local myc
use java && myc="--with-java" || myc="--without-java"
# 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
}
|