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

DESCRIPTION="Utility to pre-compile Open Firmware device-trees for otherwise device-tree-less devices such as the PS3"
HOMEPAGE="http://www.t2-project.org/packages/dtc.html"
SRC_URI="http://www.jdl.com/software/${P}.tgz"

inherit eutils

LICENSE="IPL-1"
SLOT="0"
KEYWORDS="~ppc ~ppc64"
IUSE=""
S="${WORKDIR}/${PN}"

src_compile () {
	emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)"
}

src_install () {
	make DESTDIR="${D}" \
		 PREFIX="/usr" \
		 LIBDIR="/usr/$(get_libdir)" \
		 install
	dodoc Documentation/manual.txt
}