summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-07-19 12:35:36 +0000
committerMamoru Komachi <usata@gentoo.org>2004-07-19 12:35:36 +0000
commit89e5ad4985f1b052cc287ad01382e0d89bf21d97 (patch)
tree0be330e8235ba14a66f65a86f3f42d208b95c0c7 /dev-python
parentAdded to macos (Manifest recommit) (diff)
downloadgentoo-2-89e5ad4985f1b052cc287ad01382e0d89bf21d97.tar.gz
gentoo-2-89e5ad4985f1b052cc287ad01382e0d89bf21d97.tar.bz2
gentoo-2-89e5ad4985f1b052cc287ad01382e0d89bf21d97.zip
Removed redundant RDEPEND, fixed install path and modified SRC_URI. Added die to src_compile()
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/readline/ChangeLog6
-rw-r--r--dev-python/readline/readline-2.3.3.ebuild8
2 files changed, 8 insertions, 6 deletions
diff --git a/dev-python/readline/ChangeLog b/dev-python/readline/ChangeLog
index 40ed3180afa1..4e9891074c2b 100644
--- a/dev-python/readline/ChangeLog
+++ b/dev-python/readline/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/libsystem
# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/readline/ChangeLog,v 1.1 2004/07/11 02:28:56 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/readline/ChangeLog,v 1.2 2004/07/19 12:35:36 usata Exp $
+
+ 19 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> readline-2.3.3.ebuild:
+ Removed redundant RDEPEND, fixed install path and modified SRC_URI.
+ Added die to src_compile().
*readline-2.3.3 (11 Jul 2004)
diff --git a/dev-python/readline/readline-2.3.3.ebuild b/dev-python/readline/readline-2.3.3.ebuild
index 77675f7dd4ca..a986337dba27 100644
--- a/dev-python/readline/readline-2.3.3.ebuild
+++ b/dev-python/readline/readline-2.3.3.ebuild
@@ -1,11 +1,11 @@
# Copyright 1999-2004 Gentoo Foundation, Pieter Van den Abeele <pvdabeel@gentoo.org>
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/readline/readline-2.3.3.ebuild,v 1.1 2004/07/11 02:28:56 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/readline/readline-2.3.3.ebuild,v 1.2 2004/07/19 12:35:36 usata Exp $
DESCRIPTION="Readline Python module, extends default Darwin Python with readline support"
HOMEPAGE="http://www.opensource.apple.com/darwinsource/"
-SRC_URI="http://www.metadistribution.org/readline-2.3.3.tar.bz2"
+SRC_URI="http://www.metadistribution.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* macos"
@@ -13,9 +13,7 @@ IUSE=""
DEPEND=">=sys-libs/readline-4.3
>=dev-lang/python-2.3.3"
-RDEPEND=">=sys-libs/readline-4.3
- >=dev-lang/python-2.3.3"
src_install() {
- python ./setup.py install
+ python ./setup.py install --root=${D} || die
}