public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/btyacc: ChangeLog btyacc-3.0-r1.ebuild
@ 2009-09-04 13:34 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2009-09-04 13:34 UTC (permalink / raw
  To: gentoo-commits

jer         09/09/04 13:34:14

  Modified:             ChangeLog
  Added:                btyacc-3.0-r1.ebuild
  Log:
  Respect CC (bug #243974), append to CFLAGS (but not -g), append to LDFLAGS, use system LD.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.10                 dev-util/btyacc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	31 Oct 2008 06:19:16 -0000	1.9
+++ ChangeLog	4 Sep 2009 13:34:14 -0000	1.10
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/btyacc
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.9 2008/10/31 06:19:16 wormo Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.10 2009/09/04 13:34:14 jer Exp $
+
+*btyacc-3.0-r1 (04 Sep 2009)
+
+  04 Sep 2009; Jeroen Roovers <jer@gentoo.org> +btyacc-3.0-r1.ebuild,
+  +files/btyacc-3.0-makefile.patch:
+  Respect CC (bug #243974), append to CFLAGS (but not -g), append to
+  LDFLAGS, use system LD.
 
   31 Oct 2008; Stephanie Lockwood-Childs <wormo@gentoo.org>
   +files/btyacc-3.0-includes.patch, btyacc-3.0.ebuild:



1.1                  dev-util/btyacc/btyacc-3.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: btyacc-3.0-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.1 2009/09/04 13:34:14 jer Exp $

EAPI="2"

inherit eutils toolchain-funcs

MY_P=${P/./-}
IUSE=""
DESCRIPTION="Backtracking YACC - modified from Berkeley YACC"
HOMEPAGE="http://www.siber.com/btyacc"
SRC_URI="http://www.siber.com/btyacc/${MY_P}.tar.gz"

LICENSE="freedist"
SLOT="0"
KEYWORDS="~ppc ~x86"

S="${WORKDIR}"

src_prepare() {
	cp -av Makefile{,.orig}
	epatch "${FILESDIR}/${P}-includes.patch"
	epatch "${FILESDIR}/${P}-makefile.patch"
}

src_compile() {
	tc-export CC
	emake || die
}

src_install() {
	dobin btyacc
	dodoc README README.BYACC
	newman manpage btyacc.1
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/btyacc: ChangeLog btyacc-3.0-r1.ebuild
@ 2010-02-21  1:10 Jonathan Callen (abcd)
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Callen (abcd) @ 2010-02-21  1:10 UTC (permalink / raw
  To: gentoo-commits

abcd        10/02/21 01:10:05

  Modified:             ChangeLog btyacc-3.0-r1.ebuild
  Log:
  Transfer prefix keywords, add fix for Darwin
  (Portage version: -svn/cvs/Linux i686)

Revision  Changes    Path
1.12                 dev-util/btyacc/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	23 Sep 2009 17:41:22 -0000	1.11
+++ ChangeLog	21 Feb 2010 01:10:04 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/btyacc
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.11 2009/09/23 17:41:22 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.12 2010/02/21 01:10:04 abcd Exp $
+
+  21 Feb 2010; Jonathan Callen <abcd@gentoo.org> btyacc-3.0-r1.ebuild:
+  Transfer prefix keywords, add fix for Darwin
 
   23 Sep 2009; Patrick Lauer <patrick@gentoo.org> btyacc-3.0.ebuild:
   Remove virtual/libc



1.2                  dev-util/btyacc/btyacc-3.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?r1=1.1&r2=1.2

Index: btyacc-3.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- btyacc-3.0-r1.ebuild	4 Sep 2009 13:34:14 -0000	1.1
+++ btyacc-3.0-r1.ebuild	21 Feb 2010 01:10:04 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.1 2009/09/04 13:34:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.2 2010/02/21 01:10:04 abcd Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="freedist"
 SLOT="0"
-KEYWORDS="~ppc ~x86"
+KEYWORDS="~ppc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
 
 S="${WORKDIR}"
 
@@ -22,6 +22,8 @@
 	cp -av Makefile{,.orig}
 	epatch "${FILESDIR}/${P}-includes.patch"
 	epatch "${FILESDIR}/${P}-makefile.patch"
+	# Darwin doesn't do static binaries
+	[[ ${CHOST} == *-darwin* ]] && sed -i -e 's/-static//' Makefile
 }
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in dev-util/btyacc: ChangeLog btyacc-3.0-r1.ebuild
@ 2010-11-18 19:37 Patrick Lauer (patrick)
  0 siblings, 0 replies; 3+ messages in thread
From: Patrick Lauer (patrick) @ 2010-11-18 19:37 UTC (permalink / raw
  To: gentoo-commits

patrick     10/11/18 19:37:09

  Modified:             ChangeLog btyacc-3.0-r1.ebuild
  Log:
  Adding ~amd64 keyword
  
  (Portage version: 2.2.0_alpha4/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 dev-util/btyacc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	21 Feb 2010 01:10:04 -0000	1.12
+++ ChangeLog	18 Nov 2010 19:37:08 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/btyacc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.12 2010/02/21 01:10:04 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/ChangeLog,v 1.13 2010/11/18 19:37:08 patrick Exp $
+
+  18 Nov 2010; Patrick Lauer <patrick@gentoo.org> btyacc-3.0-r1.ebuild:
+  Adding ~amd64 keyword
 
   21 Feb 2010; Jonathan Callen <abcd@gentoo.org> btyacc-3.0-r1.ebuild:
   Transfer prefix keywords, add fix for Darwin



1.3                  dev-util/btyacc/btyacc-3.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild?r1=1.2&r2=1.3

Index: btyacc-3.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- btyacc-3.0-r1.ebuild	21 Feb 2010 01:10:04 -0000	1.2
+++ btyacc-3.0-r1.ebuild	18 Nov 2010 19:37:08 -0000	1.3
@@ -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/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.2 2010/02/21 01:10:04 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/btyacc/btyacc-3.0-r1.ebuild,v 1.3 2010/11/18 19:37:08 patrick Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="freedist"
 SLOT="0"
-KEYWORDS="~ppc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos ~x86-macos"
 
 S="${WORKDIR}"
 






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

end of thread, other threads:[~2010-11-18 19:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-18 19:37 [gentoo-commits] gentoo-x86 commit in dev-util/btyacc: ChangeLog btyacc-3.0-r1.ebuild Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-21  1:10 Jonathan Callen (abcd)
2009-09-04 13:34 Jeroen Roovers (jer)

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