public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: nasm-2.03.01.ebuild ChangeLog nasm-2.04.ebuild nasm-0.98.39-r3.ebuild nasm-2.05.01.ebuild
@ 2008-12-07  5:58 Mike Frysinger (vapier)
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2008-12-07  5:58 UTC (permalink / raw
  To: gentoo-commits

vapier      08/12/07 05:58:55

  Modified:             nasm-2.03.01.ebuild ChangeLog nasm-2.04.ebuild
                        nasm-0.98.39-r3.ebuild nasm-2.05.01.ebuild
  Log:
  Remove pointless USE=build support.
  (Portage version: 2.2_rc17/cvs/Linux 2.6.27.8 x86_64)

Revision  Changes    Path
1.2                  dev-lang/nasm/nasm-2.03.01.ebuild

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

Index: nasm-2.03.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.03.01.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nasm-2.03.01.ebuild	17 Jun 2008 19:00:13 -0000	1.1
+++ nasm-2.03.01.ebuild	7 Dec 2008 05:58:55 -0000	1.2
@@ -1,6 +1,6 @@
 # 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.03.01.ebuild,v 1.1 2008/06/17 19:00:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.03.01.ebuild,v 1.2 2008/12/07 05:58:55 vapier Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -11,9 +11,9 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
-IUSE="doc build"
+IUSE="doc"
 
-DEPEND="!build? ( dev-lang/perl )
+DEPEND="dev-lang/perl
 	doc? ( virtual/ghostscript sys-apps/texinfo )"
 RDEPEND=""
 
@@ -32,30 +32,22 @@
 	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
+	emake all || die "emake failed"
+	emake rdf || die "emake failed"
+	if use doc ; then
+		emake doc || die "emake failed"
 	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
+	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
 }



1.55                 dev-lang/nasm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	30 Oct 2008 02:07:24 -0000	1.54
+++ ChangeLog	7 Dec 2008 05:58:55 -0000	1.55
@@ -1,6 +1,10 @@
 # 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.54 2008/10/30 02:07:24 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.55 2008/12/07 05:58:55 vapier Exp $
+
+  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:
+  Remove pointless USE=build support.
 
 *nasm-2.05.01 (30 Oct 2008)
 



1.4                  dev-lang/nasm/nasm-2.04.ebuild

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

Index: nasm-2.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.04.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nasm-2.04.ebuild	9 Oct 2008 20:15:42 -0000	1.3
+++ nasm-2.04.ebuild	7 Dec 2008 05:58:55 -0000	1.4
@@ -1,6 +1,6 @@
 # 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.04.ebuild,v 1.3 2008/10/09 20:15:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.04.ebuild,v 1.4 2008/12/07 05:58:55 vapier Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -11,9 +11,9 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="-* amd64 x86 ~x86-fbsd"
-IUSE="doc build"
+IUSE="doc"
 
-DEPEND="!build? ( dev-lang/perl )
+DEPEND="dev-lang/perl
 	doc? ( virtual/ghostscript sys-apps/texinfo )"
 RDEPEND=""
 
@@ -32,30 +32,22 @@
 	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
+	emake all || die "emake failed"
+	emake rdf || die "emake failed"
+	if use doc ; then
+		emake doc || die "emake failed"
 	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
+	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
 }



1.6                  dev-lang/nasm/nasm-0.98.39-r3.ebuild

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

Index: nasm-0.98.39-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-0.98.39-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nasm-0.98.39-r3.ebuild	24 Feb 2007 10:45:19 -0000	1.5
+++ nasm-0.98.39-r3.ebuild	7 Dec 2008 05:58:55 -0000	1.6
@@ -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-lang/nasm/nasm-0.98.39-r3.ebuild,v 1.5 2007/02/24 10:45:19 kugelfang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-0.98.39-r3.ebuild,v 1.6 2008/12/07 05:58:55 vapier Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -11,9 +11,9 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="-* amd64 x86 ~x86-fbsd"
-IUSE="doc build"
+IUSE="doc"
 
-DEPEND="!build? ( dev-lang/perl )
+DEPEND="dev-lang/perl
 	doc? ( virtual/ghostscript sys-apps/texinfo )"
 RDEPEND=""
 
@@ -38,30 +38,22 @@
 	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
+	emake all || die "emake failed"
+	emake rdf || die "emake failed"
+	if use doc ; then
+		emake doc || die "emake failed"
 	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
+	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
 }



1.2                  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.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild?r1=1.1&r2=1.2

Index: nasm-2.05.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nasm-2.05.01.ebuild	30 Oct 2008 02:07:24 -0000	1.1
+++ nasm-2.05.01.ebuild	7 Dec 2008 05:58:55 -0000	1.2
@@ -1,6 +1,6 @@
 # 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.05.01.ebuild,v 1.2 2008/12/07 05:58:55 vapier Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -11,9 +11,9 @@
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
-IUSE="doc build"
+IUSE="doc"
 
-DEPEND="!build? ( dev-lang/perl )
+DEPEND="dev-lang/perl
 	doc? ( virtual/ghostscript sys-apps/texinfo )"
 RDEPEND=""
 
@@ -21,30 +21,22 @@
 	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
+	emake all || die "emake failed"
+	emake rdf || die "emake failed"
+	if use doc ; then
+		emake doc || die "emake failed"
 	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
+	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
 }






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-12-07  5:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-07  5:58 [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: nasm-2.03.01.ebuild ChangeLog nasm-2.04.ebuild nasm-0.98.39-r3.ebuild nasm-2.05.01.ebuild Mike Frysinger (vapier)

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