2006-01-28 21:39:29 +01:00
|
|
|
# Copyright 1999-2006 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
DESCRIPTION=""
|
|
|
|
HOMEPAGE=""
|
|
|
|
SRC_URI=""
|
|
|
|
|
2006-05-31 10:13:22 +02:00
|
|
|
LICENSE="GPL-2"
|
2006-01-28 21:39:29 +01:00
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~x86"
|
2006-05-31 10:13:22 +02:00
|
|
|
IUSE="debug"
|
2006-01-28 21:39:29 +01:00
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND=""
|
|
|
|
|
2006-05-31 10:13:22 +02:00
|
|
|
src_compile() {
|
|
|
|
if use debug; then
|
|
|
|
conf_opts="--enable-tests"
|
|
|
|
else
|
|
|
|
conf_opts="--disable-tests"
|
|
|
|
fi
|
|
|
|
|
|
|
|
econf ${conf_opts} || die "configure failed"
|
|
|
|
emake || die "make all failed"
|
|
|
|
}
|
|
|
|
|