blob: 4502f527b11f804f6a0b833c19c4fd90ad261f92 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/Xorgautoconfig/Xorgautoconfig-0.2.3.ebuild,v 1.1 2006/01/18 18:45:01 josejx Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Xorgautconfig generates xorg.conf files for PPC based computers."
HOMEPAGE="http://dev.gentoo.org/~josejx/Xorgautoconfig.html"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~ppc64"
IUSE=""
DEPEND=""
RDEPEND="sys-apps/pciutils"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "/^CC=/s:gcc:$(tc-getCC):" Makefile || die "Can't replace CC"
}
src_compile() {
emake || die "emake failed!"
}
src_install() {
dodir /usr
into /usr
dosbin Xorgautoconfig
exeinto /etc/init.d
newexe Xorgautoconfig.init Xorgautoconfig
dodoc ChangeLog
}
|