summaryrefslogtreecommitdiff
blob: bd8451b6d4d4ac76df20b78a77d933f9d8d9e6b7 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=6

inherit eutils

DESCRIPTION="Positional Astronomy Library"
HOMEPAGE="http://github.com/Starlink/pal"
SRC_URI="https://github.com/Starlink/${PN}/releases/download/v${PV}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
RDEPEND="sci-astronomy/erfa:="
DEPEND="${RDEPEND}"

src_configure() {
	econf --without-starlink \
		  --without-stardocs \
		  --with-erfa \
		  $(use_enable static-libs static)
}

src_install() {
	default
	# remove cruft from non-fhs complient
	rm -r "${ED}"usr/share/pal || die
	rm -r "${ED}"usr/{docs,manifests,news} || die
	use static-libs || prune_libtool_files --all
}