public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: ChangeLog nasm-2.05.01.ebuild
@ 2008-10-30  2:07 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-10-30  2:07 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    08/10/30 02:07:24

  Modified:             ChangeLog
  Added:                nasm-2.05.01.ebuild
  Log:
  version bump
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.54                 dev-lang/nasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	9 Oct 2008 20:15:42 -0000	1.53
+++ ChangeLog	30 Oct 2008 02:07:24 -0000	1.54
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/nasm
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.53 2008/10/09 20:15:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.54 2008/10/30 02:07:24 mr_bones_ Exp $
+
+*nasm-2.05.01 (30 Oct 2008)
+
+  30 Oct 2008; Michael Sterrett <mr_bones_@gentoo.org> +nasm-2.05.01.ebuild:
+  version bump
 
   09 Oct 2008; Markus Meier <maekke@gentoo.org> nasm-2.04.ebuild:
   x86 stable, bug #240542



1.1                  dev-lang/nasm/nasm-2.05.01.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild?rev=1.1&content-type=text/plain

Index: nasm-2.05.01.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v 1.1 2008/10/30 02:07:24 mr_bones_ Exp $

inherit eutils toolchain-funcs flag-o-matic

DESCRIPTION="groovy little assembler"
HOMEPAGE="http://nasm.sourceforge.net/"
SRC_URI="mirror://sourceforge/nasm/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
IUSE="doc build"

DEPEND="!build? ( dev-lang/perl )
	doc? ( virtual/ghostscript sys-apps/texinfo )"
RDEPEND=""

src_compile() {
	strip-flags
	econf || die

	if use build; then
		emake nasm || die "emake failed"
	else
		emake all || die "emake failed"
		emake rdf || die "emake failed"
		if use doc ; then
			emake doc || die "emake failed"
		fi
	fi
}

src_install() {
	if use build; then
		dobin nasm || die "dobin failed"
	else
		dobin nasm ndisasm rdoff/{ldrdf,rdf2bin,rdf2ihx,rdfdump,rdflib,rdx} \
			|| die "dobin failed"
		dosym /usr/bin/rdf2bin /usr/bin/rdf2com
		doman nasm.1 ndisasm.1
		dodoc AUTHORS CHANGES ChangeLog README TODO
		if use doc; then
			doinfo doc/info/*
			dohtml doc/html/*
			dodoc doc/nasmdoc.*
		fi
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: ChangeLog nasm-2.05.01.ebuild
@ 2009-01-11 15:12 Markus Meier (maekke)
  0 siblings, 0 replies; 2+ messages in thread
From: Markus Meier (maekke) @ 2009-01-11 15:12 UTC (permalink / raw
  To: gentoo-commits

maekke      09/01/11 15:12:56

  Modified:             ChangeLog nasm-2.05.01.ebuild
  Log:
  amd64/x86 stable, bug #254511
  (Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.56                 dev-lang/nasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	7 Dec 2008 05:58:55 -0000	1.55
+++ ChangeLog	11 Jan 2009 15:12:56 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/nasm
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.55 2008/12/07 05:58:55 vapier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.56 2009/01/11 15:12:56 maekke Exp $
+
+  11 Jan 2009; Markus Meier <maekke@gentoo.org> nasm-2.05.01.ebuild:
+  amd64/x86 stable, bug #254511
 
   07 Dec 2008; Mike Frysinger <vapier@gentoo.org> nasm-0.98.39-r3.ebuild,
   nasm-2.03.01.ebuild, nasm-2.04.ebuild, nasm-2.05.01.ebuild:



1.3                  dev-lang/nasm/nasm-2.05.01.ebuild

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

Index: nasm-2.05.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nasm-2.05.01.ebuild	7 Dec 2008 05:58:55 -0000	1.2
+++ nasm-2.05.01.ebuild	11 Jan 2009 15:12:56 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v 1.2 2008/12/07 05:58:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v 1.3 2009/01/11 15:12:56 maekke Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~x86-fbsd"
 IUSE="doc"
 
 DEPEND="dev-lang/perl






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

end of thread, other threads:[~2009-01-11 15:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-30  2:07 [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: ChangeLog nasm-2.05.01.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2009-01-11 15:12 Markus Meier (maekke)

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