blob: e86733259c8b760435cc6bfaec6cfb967c6662d1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/powerpc-utils/powerpc-utils-1.1.3.ebuild,v 1.16 2004/06/24 22:22:37 agriffis Exp $
S=${WORKDIR}/${P}
DEBRV=3
DESCRIPTION="PowerPC utils; nvsetenv"
SRC_URI="http://http.us.debian.org/debian/pool/main/p/powerpc-utils/powerpc-utils_${PV}.orig.tar.gz
http://http.us.debian.org/debian/pool/main/p/powerpc-utils/powerpc-utils_${PV}-${DEBRV}.diff.gz"
HOMEPAGE=""
KEYWORDS="ppc -x86 -amd64 -alpha -hppa -mips -sparc"
DEPEND="virtual/glibc"
RDEPEND=""
SLOT="0"
LICENSE="GPL-2"
src_unpack() {
cd ${WORKDIR}
unpack powerpc-utils_${PV}.orig.tar.gz
mv pmac-utils ${P}
cd ${S}
cat ${DISTDIR}/powerpc-utils_${PV}-${DEBRV}.diff.gz | gzip -dc | patch -p1 || die
cd ${WORKDIR}
chown -R 0:0 *
chmod -R a+r-w+X,u+w *
}
src_compile() {
emake nvsetenv || die
}
src_install() {
into /usr
dosbin nvsetenv || die
}
|