diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-04-18 03:37:38 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-04-18 03:37:38 +0000 |
commit | 21f2d053536c1da5368cfbcebd90e9c1770d597f (patch) | |
tree | be4b06ed27d4ec2c46b57351038b7518ab4d42fd /app-admin/longrun/longrun-0.9-r1.ebuild | |
parent | Fix for gcc-3 (diff) | |
download | gentoo-2-21f2d053536c1da5368cfbcebd90e9c1770d597f.tar.gz gentoo-2-21f2d053536c1da5368cfbcebd90e9c1770d597f.tar.bz2 gentoo-2-21f2d053536c1da5368cfbcebd90e9c1770d597f.zip |
Fix for gcc-3
Diffstat (limited to 'app-admin/longrun/longrun-0.9-r1.ebuild')
-rw-r--r-- | app-admin/longrun/longrun-0.9-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-admin/longrun/longrun-0.9-r1.ebuild b/app-admin/longrun/longrun-0.9-r1.ebuild new file mode 100644 index 000000000000..3bc218cf406e --- /dev/null +++ b/app-admin/longrun/longrun-0.9-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/longrun/longrun-0.9-r1.ebuild,v 1.1 2003/04/18 03:37:34 lostlogic 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" +HOMEPAGE="http://freshmeat.net/projects/longrun/" + +IUSE="" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 -ppc" + +DEPEND="virtual/glibc" + +# Include fix from debian +src_unpack() { + unpack ${A} + cd ${WORKDIR}/longrun + patch -p1 < ${FILESDIR}/${PF}-debian-gcc-3.diff || die +} + +src_compile() { + emake || die +} + +src_install() { + dosbin longrun + + doman longrun.1 + + dodoc COPYING MAKEDEV-cpuid-msr +} |