summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2004-02-26 03:58:13 +0000
committerJason Wever <weeve@gentoo.org>2004-02-26 03:58:13 +0000
commitfdd870b6c6b47d74bcd4bc89a07f0f3472c398ea (patch)
treea0927f0f90cc7aec673f7711b7a2d327b7f2973f /net-mail
parentStable on sparc. (Manifest recommit) (diff)
downloadgentoo-2-fdd870b6c6b47d74bcd4bc89a07f0f3472c398ea.tar.gz
gentoo-2-fdd870b6c6b47d74bcd4bc89a07f0f3472c398ea.tar.bz2
gentoo-2-fdd870b6c6b47d74bcd4bc89a07f0f3472c398ea.zip
Added patch from bug #42771 so xmail builds again on sparc.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/xmail/ChangeLog7
-rw-r--r--net-mail/xmail/xmail-1.16.ebuild10
2 files changed, 12 insertions, 5 deletions
diff --git a/net-mail/xmail/ChangeLog b/net-mail/xmail/ChangeLog
index 981e770050b2..7a40e13236ec 100644
--- a/net-mail/xmail/ChangeLog
+++ b/net-mail/xmail/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/xmail
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/xmail/ChangeLog,v 1.10 2003/12/14 23:09:41 spider Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/xmail/ChangeLog,v 1.11 2004/02/26 03:58:13 weeve Exp $
+
+ 25 Feb 2004; Jason Wever <weeve@gentoo.org> xmail-1.16.ebuild:
+ Added patch from bug #42771 so xmail builds again on sparc.
15 Dec 2003; <spider@gentoo.org> files/xmail.initd:
QA: fixing chown user.group to user:group, bug #35127
diff --git a/net-mail/xmail/xmail-1.16.ebuild b/net-mail/xmail/xmail-1.16.ebuild
index b68812815389..b9fc999da582 100644
--- a/net-mail/xmail/xmail-1.16.ebuild
+++ b/net-mail/xmail/xmail-1.16.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/xmail/xmail-1.16.ebuild,v 1.4 2003/10/18 04:48:20 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/xmail/xmail-1.16.ebuild,v 1.5 2004/02/26 03:58:13 weeve Exp $
IUSE=""
@@ -28,7 +28,11 @@ pkg_setup() {
}
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
}