blob: 514a011b43ffcbf48864da06483055f19cc9b11b (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
DESCRIPTION="Open-source .NET application for ads-b mapping"
HOMEPAGE="http://www.virtualradarserver.co.uk/Default.aspx"
#SRC_URI="http://www.virtualradarserver.co.uk/Files/VirtualRadar.tar.gz"
SRC_URI="http://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
dev-lang/mono"
S="${WORKDIR}"
src_install() {
insinto /opt/${PN}
doins *
dobin "${FILESDIR}"/virtualradar
}
|