blob: daa407ecd402b79573eeb9fcd9e34128098a5b36 (
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
44
45
46
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="LIGO Global Diagnostic System"
HOMEPAGE="http://software.ligo.org/lscsoft"
SRC_URI="http://software.ligo.org/lscsoft/source/${P}.tar.gz"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dtt fast-install -largefile -libtool-lock monitors omega online only-dtt static-libs"
# dmtviewer nogui offline rts
RDEPEND="dev-libs/expat
dev-libs/openssl
sci-libs/fftw
sci-libs/gds-lsmp
sci-libs/gds
sci-libs/ldas-tools-al
sci-libs/ldas-tools-framecpp
sys-libs/zlib"
DEPEND=${RDEPEND}
src_configure() {
econf \
$(use_enable dtt) \
$(use_enable fast-install) \
$(use_enable largefile) \
$(use_enable libtool-lock) \
$(use_enable monitors) \
$(use_enable omega) \
$(use_enable online) \
$(use_enable only-dtt) \
$(use_enable static-libs static) \
--disable-dmtviewer \
--enable-nogui \
# --disable-rts \ # configure: WARNING: unrecognized options: --with-rts, --without-rts. Cannot mention rts here (--enable-rts or --disable-rts)
--includedir=/usr/include/gds
# Header files are expected to sit in /usr/include/gds
}
# $(use_enable dmtviewer) \
# $(use_enable offline) \
# $(use_enable nogui) \
# $(use_enable rts) \
|