blob: 77b4bea9d960e6f9602361b9d3442805975a6650 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DESCRIPTION="A sleep-research experiment manager, EDF viewer & Process S simulator"
HOMEPAGE="http://johnhommer.com/academic/code/aghermann"
SRC_URI="http://alfinston.dlinkddns.com/johnhommer.com/code/aghermann/source/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-lang/lua:*
dev-libs/libconfig
media-libs/libsamplerate
sci-libs/fftw:3.0
sci-libs/gsl
sci-libs/itpp
x11-libs/gtk+:3
x11-libs/vte:2.91"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_configure() {
econf --bindir="${EPREFIX}"/usr/bin
}
|