You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/libnova/libnova-0.14.0.ebuild

41 lines
937 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnova/libnova-0.14.0.ebuild,v 1.1 2011/08/07 00:34:18 bicatali Exp $
EAPI=4
inherit eutils
DESCRIPTION="Celestial Mechanics and Astronomical Calculation Library"
HOMEPAGE="http://libnova.sourceforge.net/"
SRC_URI="http://dev.gentoo.org/~bicatali/${P}.tar.gz"
# bad tar ball on sf, rebuild it from svn
#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="doc examples static-libs"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
src_configure() {
econf $(use_enable static-libs static)
}
src_compile() {
emake
use doc && emake doc
}
src_install() {
default
use doc && dohtml doc/html/*
if use examples; then
make clean
rm -f examples/Makefile*
insinto /usr/share/doc/${PF}
doins -r examples
fi
}