blob: d7b7d545481fd7c94b0cbdeca87facf503f080d5 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/voacapl/voacapl-0.6.5.ebuild,v 1.3 2015/02/01 13:50:48 ago Exp $
EAPI="5"
inherit fortran-2
DESCRIPTION="HF propagation prediction tool"
HOMEPAGE="http://www.qsl.net/hz1jw/voacapl/index.html"
SRC_URI="http://www.qsl.net/hz1jw/${PN}/downloads/${P}.tar.gz"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RESTRICT="mirror bindist"
src_compile() {
# bug 513766
emake -j1 DESTDIR="${D}"
}
src_install() {
emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install
}
|