diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-07-19 12:35:36 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-07-19 12:35:36 +0000 |
commit | 2e85814f15a06adb28c18af6709ed9d4d1d0aa08 (patch) | |
tree | 4bdb61d42465818c88dc3afe185d349884489544 | |
parent | Added to macos (diff) | |
download | historical-2e85814f15a06adb28c18af6709ed9d4d1d0aa08.tar.gz historical-2e85814f15a06adb28c18af6709ed9d4d1d0aa08.tar.bz2 historical-2e85814f15a06adb28c18af6709ed9d4d1d0aa08.zip |
Removed redundant RDEPEND, fixed install path and modified SRC_URI. Added die to src_compile()
-rw-r--r-- | dev-python/readline/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/readline/Manifest | 14 | ||||
-rw-r--r-- | dev-python/readline/readline-2.3.3.ebuild | 8 |
3 files changed, 10 insertions, 18 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/Manifest b/dev-python/readline/Manifest index 3f03f771918a..f802d982c9d8 100644 --- a/dev-python/readline/Manifest +++ b/dev-python/readline/Manifest @@ -1,13 +1,3 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 a11f7680c2d1f9d2a26be682103113b0 ChangeLog 402 -MD5 cfebc20a004ad26ee8de9af3f0e1d512 readline-2.3.3.ebuild 701 +MD5 473c4bd39f60180f5f6e98977888c09b ChangeLog 572 +MD5 1a4401d6340cb84af14e76fe3631db79 readline-2.3.3.ebuild 648 MD5 06cb89ebacdc06b393c34d4029abdfa8 files/digest-readline-2.3.3 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.4 (GNU/Linux) - -iD8DBQFA+euCmdTrptrqvGERAsfKAKCQT9R89v/9QICQNMoR/rT3ojA9bwCeK72K -lbydettF7d7eeZczbbZal6w= -=SZNO ------END PGP SIGNATURE----- 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 } |