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

inherit eutils toolchain-funcs

DESCRIPTION="A tool for analyzing the source code of programs written in ANSI-C"
HOMEPAGE="http://spinroot.com/uno/"
SRC_URI="http://spinroot.com/${PN}/${PN}_v${PV/./}.tar.gz"

LICENSE="public-domain GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"

DEPEND=""
RDEPEND=""

S=${WORKDIR}/${PN}

src_unpack() {
	unpack ${A}
	epatch "${FILESDIR}/${PV}-makefile.patch"
}

src_compile() {
	cd "${S}/src"
	emake CC="$(tc-getCC)" || die "emake failed"
}

src_install() {
	dobin src/uno src/uno_local src/uno_global
	doman doc/uno.1

	insinto /usr/share/${PN}
	doins -r prop

	if use doc ; then
		insinto /usr/share/doc/${PF}
		doins doc/*.pdf
	fi
}