public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/lrslib: ChangeLog lrslib-042c-r1.ebuild
@ 2010-12-29 15:16 Thomas Kahle (tomka)
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Kahle (tomka) @ 2010-12-29 15:16 UTC (permalink / raw
  To: gentoo-commits

tomka       10/12/29 15:16:35

  Modified:             ChangeLog
  Added:                lrslib-042c-r1.ebuild
  Log:
  Fixed file collision in bug 349765
  
  (Portage version: 2.1.9.26/cvs/Linux i686)

Revision  Changes    Path
1.3                  sci-libs/lrslib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	14 Nov 2010 20:47:54 -0000	1.2
+++ ChangeLog	29 Dec 2010 15:16:35 -0000	1.3
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/lrslib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.2 2010/11/14 20:47:54 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.3 2010/12/29 15:16:35 tomka Exp $
+
+*lrslib-042c-r1 (29 Dec 2010)
+
+  29 Dec 2010; Thomas Kahle <tomka@gentoo.org> +lrslib-042c-r1.ebuild:
+  Fixed file collision in bug 349765
 
   14 Nov 2010; Thomas Kahle <tomka@gentoo.org> lrslib-042c.ebuild:
   added missing || die statements



1.1                  sci-libs/lrslib/lrslib-042c-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.1&content-type=text/plain

Index: lrslib-042c-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v 1.1 2010/12/29 15:16:35 tomka Exp $

EAPI=2

inherit toolchain-funcs

DESCRIPTION="self-contained ANSI C implementation of the reverse search algorithm"
HOMEPAGE="http://cgm.cs.mcgill.ca/~avis/C/lrs.html"
SRC_URI="http://cgm.cs.mcgill.ca/~avis/C/lrslib/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gmp"

DEPEND="gmp? ( dev-libs/gmp )"
RDEPEND="${DEPEND}"

src_prepare(){
	sed -i "s/gcc/$(tc-getCC)/g" makefile || die
	sed -i "s/-O3/${CFLAGS} ${LDFLAGS}/g" makefile || die
}

src_compile () {
	if use amd64 ; then
		emake all64 || die "make failed"
	else
		emake || die "make failed"
	fi
	if use gmp ; then
		emake gmp || die "make failed"
	fi
}

src_install() {
	dobin lrs redund redund1 || die
	# Collides with sys-block/buffer
	newbin buffer lrsbuffer || die
	if use x86; then
		dobin nash setupnash setupnash2 2nash || die
		# Prevent clash with cddlib:
		newbin fourier lrsfourier || die
	fi
	if use gmp; then
		dobin glrs gredund gfourier || die
		# Clash with www-plugins/gnash
		newbin gnash lrsgnash || die
	fi
	dodoc readme || die
	dohtml lrslib.html || die
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/lrslib: ChangeLog lrslib-042c-r1.ebuild
@ 2010-12-29 18:12 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-12-29 18:12 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/12/29 18:12:32

  Modified:             ChangeLog lrslib-042c-r1.ebuild
  Log:
  Stable on amd64 wrt bug #349167
  
  (Portage version: 2.1.9.26/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sci-libs/lrslib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	29 Dec 2010 15:16:35 -0000	1.3
+++ ChangeLog	29 Dec 2010 18:12:32 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/lrslib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.3 2010/12/29 15:16:35 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.4 2010/12/29 18:12:32 hwoarang Exp $
+
+  29 Dec 2010; Markos Chandras <hwoarang@gentoo.org> lrslib-042c-r1.ebuild:
+  Stable on amd64 wrt bug #349167
 
 *lrslib-042c-r1 (29 Dec 2010)
 



1.2                  sci-libs/lrslib/lrslib-042c-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?r1=1.1&r2=1.2

Index: lrslib-042c-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lrslib-042c-r1.ebuild	29 Dec 2010 15:16:35 -0000	1.1
+++ lrslib-042c-r1.ebuild	29 Dec 2010 18:12:32 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v 1.1 2010/12/29 15:16:35 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v 1.2 2010/12/29 18:12:32 hwoarang Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="gmp"
 
 DEPEND="gmp? ( dev-libs/gmp )"






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/lrslib: ChangeLog lrslib-042c-r1.ebuild
@ 2011-01-02  9:20 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 3+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-01-02  9:20 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/01/02 09:20:48

  Modified:             ChangeLog lrslib-042c-r1.ebuild
  Log:
  x86 stable wrt bug #349167
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.5                  sci-libs/lrslib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	29 Dec 2010 18:12:32 -0000	1.4
+++ ChangeLog	2 Jan 2011 09:20:48 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/lrslib
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.4 2010/12/29 18:12:32 hwoarang Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/ChangeLog,v 1.5 2011/01/02 09:20:48 phajdan.jr Exp $
+
+  02 Jan 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  lrslib-042c-r1.ebuild:
+  x86 stable wrt bug #349167
 
   29 Dec 2010; Markos Chandras <hwoarang@gentoo.org> lrslib-042c-r1.ebuild:
   Stable on amd64 wrt bug #349167



1.3                  sci-libs/lrslib/lrslib-042c-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild?r1=1.2&r2=1.3

Index: lrslib-042c-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lrslib-042c-r1.ebuild	29 Dec 2010 18:12:32 -0000	1.2
+++ lrslib-042c-r1.ebuild	2 Jan 2011 09:20:48 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v 1.2 2010/12/29 18:12:32 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/lrslib/lrslib-042c-r1.ebuild,v 1.3 2011/01/02 09:20:48 phajdan.jr Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gmp"
 
 DEPEND="gmp? ( dev-libs/gmp )"






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-02  9:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-02  9:20 [gentoo-commits] gentoo-x86 commit in sci-libs/lrslib: ChangeLog lrslib-042c-r1.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-12-29 18:12 Markos Chandras (hwoarang)
2010-12-29 15:16 Thomas Kahle (tomka)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox