public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Markus Dittrich (markusle)" <markusle@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/itpp: itpp-4.0.4.ebuild ChangeLog
Date: Sat, 17 May 2008 10:12:30 +0000	[thread overview]
Message-ID: <E1JxJOw-0007Gb-DN@stork.gentoo.org> (raw)

markusle    08/05/17 10:12:30

  Modified:             itpp-4.0.4.ebuild ChangeLog
  Log:
  Added RESTRICT=strip to prevent debug lib from being stripped.
  (Portage version: 2.1.5_rc10)

Revision  Changes    Path
1.6                  sci-libs/itpp/itpp-4.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild?r1=1.5&r2=1.6

Index: itpp-4.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- itpp-4.0.4.ebuild	12 May 2008 15:56:37 -0000	1.5
+++ itpp-4.0.4.ebuild	17 May 2008 10:12:29 -0000	1.6
@@ -1,9 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild,v 1.5 2008/05/12 15:56:37 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.4.ebuild,v 1.6 2008/05/17 10:12:29 markusle Exp $
 
 inherit fortran flag-o-matic
 
+# we need this to prevent itpp's specialized debug lib 
+# (built with USE="debug" set) from being stripped
+RESTRICT="strip"
+
 DESCRIPTION="C++ library of mathematical, signal processing and communication classes and functions"
 LICENSE="GPL-2"
 HOMEPAGE="http://itpp.sourceforge.net/"
@@ -37,6 +41,13 @@
 	# turn off performance critical debug code
 	append-flags -DNDEBUG
 
+	# make sure that -g is removed with USE="debug"
+	# since we've turned stripping off and a separate
+	# debug lib is being built
+	if use debug; then
+		filter-flags -g
+	fi
+
 	local blas_conf="--without-blas"
 	local lapack_conf="--without-lapack"
 	if use blas; then



1.75                 sci-libs/itpp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/itpp/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	12 May 2008 13:28:05 -0000	1.74
+++ ChangeLog	17 May 2008 10:12:29 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/itpp
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.74 2008/05/12 13:28:05 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.75 2008/05/17 10:12:29 markusle Exp $
+
+  17 May 2008; Markus Dittrich <markusle@gentoo.org> itpp-4.0.4.ebuild:
+  Added RESTRICT="strip" to prevent debug lib from being stripped.
 
   12 May 2008; Markus Dittrich <markusle@gentoo.org> itpp-4.0.3.ebuild,
   itpp-4.0.4.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



             reply	other threads:[~2008-05-17 10:12 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-17 10:12 Markus Dittrich (markusle) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-05-25  6:58 [gentoo-commits] gentoo-x86 commit in sci-libs/itpp: itpp-4.0.4.ebuild ChangeLog Markus Rothe (corsair)
2008-05-24 17:19 Gysbert Wassenaar (nixnut)
2008-05-22 20:58 Markus Meier (maekke)
2008-05-22 14:42 Ferris McCormick (fmccor)
2008-05-17 12:46 Markus Dittrich (markusle)
2008-04-15 11:04 Markus Dittrich (markusle)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1JxJOw-0007Gb-DN@stork.gentoo.org \
    --to=markusle@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox