Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 2084

Summary: most binary not installed on ppc
Product: Gentoo Linux Reporter: Gontran Zepeda <gontran>
Component: Current packagesAssignee: Pieter Van den Abeele (RETIRED) <pvdabeel>
Status: RESOLVED FIXED    
Severity: critical    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

Description Gontran Zepeda 2002-04-24 19:53:04 UTC
most src package creates object files in architecture specific directories,
causing an architecture specfic 'dobin' line.  Patch included for ppc
modification.  Similar consideration should be given other ARCHs, I
believe.  I ambitiously named my modified ebuild -r3.


--- most-4.9.0-r2.ebuild	Thu Apr  4 06:40:22 2002
+++ most-4.9.0-r3.ebuild	Wed Apr 24 16:43:54 2002
@@ -25,12 +25,14 @@
 
 src_install() {
 
-	dobin src/objs/most
+	if [ $ARCH = 'ppc' ]; then
+		dobin src/ppcobjs/most
+	else
+		dobin src/objs/most
+	fi
 	doman most.1
 
 	dodoc COPYING COPYRIGHT README changes.txt
 	docinto txt 
 	dodoc default.rc lesskeys.rc most-fun.txt
 }
-
-


fight! fight! fight!
Gontran
Comment 1 Pieter Van den Abeele (RETIRED) gentoo-dev 2002-04-25 03:31:35 UTC
Thnxs