Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 42771 - patch for xmail to compile with sparc
Summary: patch for xmail to compile with sparc
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: Sparc Linux
: High minor
Assignee: Sparc Porters
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-24 09:37 UTC by ffrap1
Modified: 2004-02-25 19:58 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description ffrap1 2004-02-24 09:37:46 UTC
Building xmail on sparc should use Makefile.slx

--- xmail-1.16.ebuild.orig       2004-02-24 17:04:50.000000000 +0000
+++ xmail-1.16.ebuild   2004-02-24 17:07:11.000000000 +0000
@@ -28,7 +28,11 @@
 }
 
 src_compile() {
-       emake -f Makefile.lnx || die
+       if [ `use x86`] ; then
+         emake -f Makefile.lnx || die
+       elif [ `use sparc` ]; then
+         emake -f Makefile.slx || die
+       fi
        sed -e "s:/var/MailRoot:/etc/xmail:g" sendmail.sh > sendmail.sh.new
 }


Reproducible: Always
Steps to Reproduce:
Comment 1 Jason Wever (RETIRED) gentoo-dev 2004-02-25 19:58:41 UTC
Applied patch and commited.  Thanks a lot for the patch and the bug :)