summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <nyhm@gentoo.org>2007-04-26 20:10:43 +0000
committerTristan Heaven <nyhm@gentoo.org>2007-04-26 20:10:43 +0000
commit44d07f291807a0766ed3c3167801e586d945c14a (patch)
treeebd7d68199d4b0ca08ace9f435166b5f8492caa7 /app-emulation
parentStylistic cleanup. (diff)
downloadgentoo-2-44d07f291807a0766ed3c3167801e586d945c14a.tar.gz
gentoo-2-44d07f291807a0766ed3c3167801e586d945c14a.tar.bz2
gentoo-2-44d07f291807a0766ed3c3167801e586d945c14a.zip
Fix build failure when SYNC is set, bug #176155
(Portage version: 2.1.2.4)
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/vice/ChangeLog5
-rw-r--r--app-emulation/vice/vice-1.21.ebuild10
2 files changed, 11 insertions, 4 deletions
diff --git a/app-emulation/vice/ChangeLog b/app-emulation/vice/ChangeLog
index bfd78e1776c3..abe6fdf03569 100644
--- a/app-emulation/vice/ChangeLog
+++ b/app-emulation/vice/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/vice
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.46 2007/04/26 18:06:14 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.47 2007/04/26 20:10:43 nyhm Exp $
+
+ 26 Apr 2007; Tristan Heaven <nyhm@gentoo.org> vice-1.21.ebuild:
+ Fix build failure when SYNC is set, bug #176155
*vice-1.21 (26 Apr 2007)
diff --git a/app-emulation/vice/vice-1.21.ebuild b/app-emulation/vice/vice-1.21.ebuild
index 4c69ee2cc2c3..06987ec733ba 100644
--- a/app-emulation/vice/vice-1.21.ebuild
+++ b/app-emulation/vice/vice-1.21.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.21.ebuild,v 1.1 2007/04/26 18:06:14 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-1.21.ebuild,v 1.2 2007/04/26 20:10:43 nyhm Exp $
inherit eutils games
@@ -54,11 +54,15 @@ src_unpack() {
sed -i \
-e '/^gnulocaledir/s:$(prefix):/usr:' \
po/Makefile.in.in \
- || die "sed failed"
+ || die "sed Makefile.in.in failed"
sed -i \
-e 's/getline/intlpo_getline/' \
po/intl2po.c \
- || die "sed failed"
+ || die "sed intl2po.c failed"
+ sed -i \
+ -e '/SYNC=/s: $SYNC::' \
+ configure \
+ || die "sed configure failed"
epatch "${FILESDIR}"/${P}-uicolor.patch #174056
}