blob: cbae54129eec9c72bb72f693491738b0269d8877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Jerry A! <jerry@thehutt.org>
# $Header: /var/cvsroot/gentoo-x86/app-admin/longrun/longrun-0.9.ebuild,v 1.1 2001/12/07 06:20:17 jerrya Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="A utility to control Transmeta's Crusoe processor"
SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/cpu/crusoe/${P}.tar.bz2"
DEPEND="virtual/glibc"
src_compile() {
emake || die
}
src_install() {
dosbin longrun
doman longrun.1
dodoc COPYING MAKEDEV-cpuid-msr
}
|