diff options
author | 2005-10-01 13:13:04 +0000 | |
---|---|---|
committer | 2005-10-01 13:13:04 +0000 | |
commit | bc603bb3cc9aee2b76e14fdfb9f122039d4a858a (patch) | |
tree | e7f1e8bc854ef796abc3ab313499939b815c9d95 | |
parent | Marked Stable on amd64. (diff) | |
download | gentoo-2-bc603bb3cc9aee2b76e14fdfb9f122039d4a858a.tar.gz gentoo-2-bc603bb3cc9aee2b76e14fdfb9f122039d4a858a.tar.bz2 gentoo-2-bc603bb3cc9aee2b76e14fdfb9f122039d4a858a.zip |
Disabling compiling of missing-os as it's presently hardcoded to require python-2.2
(Portage version: 1.524.2.76-cvs)
-rw-r--r-- | sys-apps/portage/portage-2.0.53_rc1.ebuild | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sys-apps/portage/portage-2.0.53_rc1.ebuild b/sys-apps/portage/portage-2.0.53_rc1.ebuild index 67527ca95fda..b151333a12fa 100644 --- a/sys-apps/portage/portage-2.0.53_rc1.ebuild +++ b/sys-apps/portage/portage-2.0.53_rc1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.0.53_rc1.ebuild,v 1.1 2005/10/01 12:01:32 jstubbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.0.53_rc1.ebuild,v 1.2 2005/10/01 13:13:04 jstubbs Exp $ inherit toolchain-funcs @@ -29,11 +29,12 @@ src_compile() { cd "${S}"/src $(tc-getCC) ${CFLAGS} -o tbz2tool tbz2tool.c - if ! use ppc-macos; then - cd "${S}"/src/python-missingos - chmod +x setup.py - ./setup.py build || die "Failed to build missingos module" - fi + #Removing until next rc as the compile script points to python-2.2 + #if ! use ppc-macos; then + # cd "${S}"/src/python-missingos + # chmod +x setup.py + # ./setup.py build || die "Failed to build missingos module" + #fi if use x86-fbsd; then cd "${S}"/src/bsd-flags @@ -56,10 +57,11 @@ src_install() { newins make.conf make.conf.example fi - if ! use ppc-macos; then - cd "${S}"/src/python-missingos - ./setup.py install --root ${D} || die "Failed to install missingos module" - fi + #Removing until next rc as the compile script points to python-2.2 + #if ! use ppc-macos; then + # cd "${S}"/src/python-missingos + # ./setup.py install --root ${D} || die "Failed to install missingos module" + #fi if use x86-fbsd; then cd "${S}"/src/bsd-flags |