Gentoo Logo
Gentoo Spaceship




Note: Due to technical difficulties, the Archives are currently not up to date. GMANE provides an alternative service for most mailing lists.
c.f. bug 424647
List Archive: gentoo-commits
Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Headers:
To: gentoo-commits@g.o
From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
Subject: gentoo-x86 commit in dev-libs/mpatrol: ChangeLog mpatrol-1.4.8-r2.ebuild
Date: Mon, 06 Oct 2008 08:24:49 +0000
flameeyes    08/10/06 08:24:49

  Modified:             ChangeLog mpatrol-1.4.8-r2.ebuild
  Log:
  Fix obvious typo, don't die every time X is disabled reporting a sed failure.
  (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)

Revision  Changes    Path
1.18                 dev-libs/mpatrol/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	21 Apr 2008 17:14:57 -0000	1.17
+++ ChangeLog	6 Oct 2008 08:24:48 -0000	1.18
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/mpatrol
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/ChangeLog,v 1.17 2008/04/21 17:14:57 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/ChangeLog,v 1.18 2008/10/06 08:24:48 flameeyes Exp $
+
+  06 Oct 2008; Diego Pettenò <flameeyes@g.o>
+  mpatrol-1.4.8-r2.ebuild:
+  Fix obvious typo, don't die every time X is disabled reporting a sed
+  failure.
 
   21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
   Fix up metadata.xml. If there's no maintainer for the package, the metadata



1.3                  dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild?r1=1.2&r2=1.3

Index: mpatrol-1.4.8-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mpatrol-1.4.8-r2.ebuild	12 Jul 2007 02:25:34 -0000	1.2
+++ mpatrol-1.4.8-r2.ebuild	6 Oct 2008 08:24:48 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild,v 1.2 2007/07/12 02:25:34 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpatrol/mpatrol-1.4.8-r2.ebuild,v 1.3 2008/10/06 08:24:48 flameeyes Exp $
 
 inherit eutils flag-o-matic
 
@@ -30,21 +30,23 @@
 	epatch "${FILESDIR}"/${PN}-textrel-fix.patch || die "patching failed"
 
 	sed -i \
-	    -e 's:#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd), MP_LIBNAME(iberty):#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd):' config.h \
-	        || die "sed config.h failed"
+		-e 's:#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd), MP_LIBNAME(iberty):#define MP_SYMBOL_LIBS , MP_LIBNAME(bfd):' config.h \
+			|| die "sed config.h failed"
 
 	cd ${S}/build/unix
 	sed -i \
-	    -e 's:^OFLAGS.= -O3:OFLAGS = ${OPT_FLAGS}:' Makefile \
-	        || die "sed Makefile for CFLAGS failed"
+		-e 's:^OFLAGS.= -O3:OFLAGS = ${OPT_FLAGS}:' Makefile \
+			|| die "sed Makefile for CFLAGS failed"
 
 	sed -i \
-	    -e 's:$(LD) $(LDFLAGS) -o $@ $(SHARED_MPTOBJS):$(LD) $(LDFLAGS) -liberty -o $@ $(SHARED_MPTOBJS):' Makefile \
-	        || die "sed Makefile for fixing -libiberty failed"
+		-e 's:$(LD) $(LDFLAGS) -o $@ $(SHARED_MPTOBJS):$(LD) $(LDFLAGS) -liberty -o $@ $(SHARED_MPTOBJS):' Makefile \
+			|| die "sed Makefile for fixing -libiberty failed"
 
-	use X && sed -i \
-		    -e 's:^GUISUP.= false:GUISUP = true:' Makefile \
+	if use X; then
+		sed -i \
+			-e 's:^GUISUP.= false:GUISUP = true:' Makefile \
 			|| die "sed Makefile for GUISUP failed"
+	fi
 
 }
 





Navigation:
Lists: gentoo-commits: < Prev By Thread Next > < Prev By Date Next >
Previous by thread:
gentoo-x86 commit in net-dns/pdns-recursor/files: pdns-recursor-3.1.7-error-message.patch
Next by thread:
gentoo-x86 commit in dev-libs/mpatrol: ChangeLog mpatrol-1.4.8-r2.ebuild
Previous by date:
gentoo-x86 commit in net-dns/pdns-recursor/files: pdns-recursor-3.1.7-error-message.patch
Next by date:
gentoo-x86 commit in dev-python/pygame: ChangeLog pygame-1.8.1.ebuild


Updated Jul 21, 2010

Summary: Archive of the gentoo-commits mailing list.

Donate to support our development efforts.

Copyright 2001-2013 Gentoo Foundation, Inc. Questions, Comments? Contact us.