blob: b425b024b7e83a4b50ccbe6d4ce51a80c36e95d2 (
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
39
40
41
42
43
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libnova/libnova-0.15.0.ebuild,v 1.4 2013/01/06 19:10:18 bicatali Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="Celestial Mechanics and Astronomical Calculation Library"
HOMEPAGE="http://libnova.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples static-libs"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
src_prepare() {
sed -i -e '/CFLAGS=-Wall/d' configure.in || die
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_compile() {
emake
use doc && emake -C doc 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
}
|