summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-dialup/xc')
-rw-r--r--net-dialup/xc/ChangeLog9
-rw-r--r--net-dialup/xc/Manifest4
-rw-r--r--net-dialup/xc/xc-4.3.2.ebuild6
3 files changed, 13 insertions, 6 deletions
diff --git a/net-dialup/xc/ChangeLog b/net-dialup/xc/ChangeLog
index 87e97a2259cb..a03f83accb94 100644
--- a/net-dialup/xc/ChangeLog
+++ b/net-dialup/xc/ChangeLog
@@ -1,9 +1,16 @@
# ChangeLog for net-dialup/xc
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/ChangeLog,v 1.4 2003/05/23 07:57:52 killian Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/ChangeLog,v 1.5 2003/07/01 23:45:56 kumba Exp $
+
*xc-4.3.2 (06 Sep 2002)
+ 01 Jul 2003; Joshua Kinard <kumba@gentoo.org> xc-4.3.2.ebuild:
+ Fixed compile-time issue in which ${WARN} was somehow being called into the
+ Makefile and killing the build by making all text turn yellow. Added a WARN=""
+ to the make line in src_compile(). Closes Bug #23799.
+ Also added ~sparc and ~mips to KEYWORDS
+
23 May 2003; Chuck Brewer <killian@gentoo.org>:
Added manifest.
diff --git a/net-dialup/xc/Manifest b/net-dialup/xc/Manifest
index 23c74071be13..9a3581758fa2 100644
--- a/net-dialup/xc/Manifest
+++ b/net-dialup/xc/Manifest
@@ -1,4 +1,4 @@
-MD5 1a81bb93344c2916d012b98e748e12c0 ChangeLog 797
-MD5 012a505d9298cb137437dea6f04ff0f5 xc-4.3.2.ebuild 854
+MD5 39c11475be628e2605692fc0fa0d6f83 ChangeLog 795
+MD5 d7d61c909edd6a1faf98b491a197aad2 xc-4.3.2.ebuild 853
MD5 a19ff63623f36ba8624bf50f382e210c files/digest-xc-4.3.2 60
MD5 80e981efed033a8eaaa0c0e632eee1ae files/xc-4.3.2-gentoo.diff 1905
diff --git a/net-dialup/xc/xc-4.3.2.ebuild b/net-dialup/xc/xc-4.3.2.ebuild
index 215a33070cab..48b4cb37ba55 100644
--- a/net-dialup/xc/xc-4.3.2.ebuild
+++ b/net-dialup/xc/xc-4.3.2.ebuild
@@ -1,13 +1,13 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/xc-4.3.2.ebuild,v 1.4 2003/02/13 13:56:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/xc/xc-4.3.2.ebuild,v 1.5 2003/07/01 23:45:56 kumba Exp $
DESCRIPTION="unix dialout program"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/apps/serialcomm/dialout/"
SRC_URI="http://www.ibiblio.org/pub/Linux/apps/serialcomm/dialout/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
-KEYWORDS="x86"
+KEYWORDS="x86 ~sparc ~mips"
DEPEND="sys-libs/libtermcap-compat"
RDEPEND=""
S="${WORKDIR}/${P}"
@@ -20,7 +20,7 @@ src_unpack() {
}
src_compile() {
- make all prefix=/usr mandir=/usr/share/man || die
+ make WARN="" all prefix=/usr mandir=/usr/share/man || die
}