blob: 52708568b118d88726b498f07d1c81c50e828e14 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Mark Guertin <gerk@imaclinux.net>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xeasyconf/xeasyconf-0.1.2.ebuild,v 1.3 2002/07/08 21:31:08 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Xeasyconf is a PPC only tool to assist in xfree 4.x configs"
SRC_URI="http://tuxppc.org/projects/xeasyconf/${P}.tar.gz"
HOMEPAGE="http://tuxppc.org/projects/xeasyconf/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc"
DEPEND="virtual/glibc x11-base/xfree sys-apps/pciutils dev-util/dialog"
src_unpack() {
if [ ${ARCH} != ppc ]
then
die "This is a PPC-only package, sorry"
fi
unpack ${A}
cd ${S}
}
src_compile() {
make || die "sorry, failed to compile"
}
src_install() {
dodir /usr/bin/
dodir /usr/sbin/
into /usr/
dobin fbcheck
into /usr/
dosbin Xeasyconf
}
|