# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 JAVA_PKG_OPT_USE=gasgano inherit java-pkg-opt-2 DESCRIPTION="ESO common pipeline library for astronomical data reduction" HOMEPAGE="http://www.eso.org/sci/data-processing/software/cpl/" SRC_URI="ftp://ftp.eso.org/pub/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc gasgano" RDEPEND=">=sci-libs/cfitsio-3.09 sci-astronomy/wcslib gasgano? ( >=sci-astronomy/gasgano-2.3 )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) gasgano? ( >=virtual/jdk-1.5 )" src_configure() { local myconf="--without-gasgano" use gasgano && \ myconf="--with-gasgano=/usr --with-gasgano-classpath=/usr/share/gasgano/lib" econf \ --with-cfitsio="/usr" \ --with-wcs="/usr" \ ${myconf} } src_compile() { emake || die "emake failed" if use doc; then doxygen Doxyfile || die fi } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc README AUTHORS NEWS TODO BUGS ChangeLog if use doc; then insinto /usr/share/doc/${PF} doins -r html || die fi }