summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-03-15 04:15:48 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-03-15 04:15:48 +0000
commitbe7a54a9bbd7b4c6164b66104495e38729677dab (patch)
tree2a70448aa31aa3f842c6721b693dc4619eafc88d /app-emulation/dinero
parentclean ups for bug #44712 by Michael Sterret <mr_bones_@gentoo.org> (Manifest ... (diff)
downloadgentoo-2-be7a54a9bbd7b4c6164b66104495e38729677dab.tar.gz
gentoo-2-be7a54a9bbd7b4c6164b66104495e38729677dab.tar.bz2
gentoo-2-be7a54a9bbd7b4c6164b66104495e38729677dab.zip
don't assign to P (bug #44712); tidy ebuild
Diffstat (limited to 'app-emulation/dinero')
-rw-r--r--app-emulation/dinero/ChangeLog5
-rw-r--r--app-emulation/dinero/dinero-4.7.ebuild27
2 files changed, 13 insertions, 19 deletions
diff --git a/app-emulation/dinero/ChangeLog b/app-emulation/dinero/ChangeLog
index c1ded49fd2cf..01949234bcdf 100644
--- a/app-emulation/dinero/ChangeLog
+++ b/app-emulation/dinero/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/dinero
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/ChangeLog,v 1.3 2004/03/02 21:07:37 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/ChangeLog,v 1.4 2004/03/15 04:15:48 mr_bones_ Exp $
+
+ 14 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> dinero-4.7.ebuild:
+ don't assign to P (bug #44712); tidy ebuild
02 Mar 2004; David Holm <dholm@gentoo.org> dinero-4.7.ebuild:
Added to ~ppc.
diff --git a/app-emulation/dinero/dinero-4.7.ebuild b/app-emulation/dinero/dinero-4.7.ebuild
index fd7596073a8d..746888c30153 100644
--- a/app-emulation/dinero/dinero-4.7.ebuild
+++ b/app-emulation/dinero/dinero-4.7.ebuild
@@ -1,28 +1,19 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/dinero-4.7.ebuild,v 1.4 2004/03/02 21:07:37 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/dinero-4.7.ebuild,v 1.5 2004/03/15 04:15:48 mr_bones_ Exp $
-IUSE=""
-
-HOMEPAGE="http://www.cs.wisc.edu/~markhill/DineroIV/"
-SRC_URI="ftp://ftp.cs.wisc.edu/markhill/DineroIV/d4-7.tar.gz"
+MY_P="d${PV/./-}"
+S="${WORKDIR}/${MY_P}"
DESCRIPTION="Cache simulator"
+HOMEPAGE="http://www.cs.wisc.edu/~markhill/DineroIV/"
+SRC_URI="ftp://ftp.cs.wisc.edu/markhill/DineroIV/${MY_P}.tar.gz"
+
SLOT="0"
KEYWORDS="x86 ~ppc"
LICENSE="as-is"
-P=${P/inero-/}
-P=${P/./-}
-S=${WORKDIR}/${P}
-
-
-
-src_compile() {
- econf
- emake
-}
+IUSE=""
src_install() {
- dodoc CHANGES COPYTRIGHT NOTES README TODO
-
- dobin dineroIV
+ dobin dineroIV || die "dobin failed"
+ dodoc CHANGES COPYRIGHT NOTES README TODO || die "dodoc failed"
}