summaryrefslogtreecommitdiff
blob: b3d68df590a918d46423bef169c538db29905bd7 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="4"

inherit git-2 autotools

DESCRIPTION="Software Defined Radio project"
HOMEPAGE="http://sdr.osmocom.org/trac/"
SRC_URI=""

EGIT_REPO_URI="git://git.osmocom.org/osmo-sdr"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="app-doc/doxygen
	dev-util/cmake"
RDEPEND=""

src_unpack() {
	git-2_src_unpack
	S="${WORKDIR}"/${P}/software/${PN}/
}

src_prepare() {
	eautoreconf
}

src_install() {
	default
	mv "${D}"/usr/share/doc/{${PN}/${PN}-UNKNOWN,${PF}}/html || die
	rmdir "${D}"/usr/share/doc/${PN}{/${PN}-UNKNOWN,} || die
}