blob: aa2b5f0baa6c8c9108e53f9dacaba1d3060cbf32 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A library for parsing LIGO/Virgo LIGO_LW Table files"
HOMEPAGE="https://www.lsc-group.phys.uwm.edu/daswg/projects/metaio.html"
SRC_URI="http://software.ligo.org/lscsoft/source/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+fast-install static-libs" # -ligotools
src_configure() {
econf \
$(use_enable fast-install) \
$(use_enable static-libs static)
}
# $(use_enable ligotools) \ # Requires additional dependencies?
src_install() {
emake DESTDIR="${D}${DESTDIR}" install
dodoc README || die
}
|