Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/nasm: ChangeLog nasm-2.08.01.ebuild
Date: Wed, 31 Mar 2010 20:36:19
Message-Id: E1Nx4e9-0000wr-6D@stork.gentoo.org
1 mr_bones_ 10/03/31 20:36:17
2
3 Modified: ChangeLog
4 Added: nasm-2.08.01.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.7.17/cvs/Linux i686)
8
9 Revision Changes Path
10 1.63 dev-lang/nasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.63&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?rev=1.63&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/ChangeLog?r1=1.62&r2=1.63
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v
19 retrieving revision 1.62
20 retrieving revision 1.63
21 diff -u -r1.62 -r1.63
22 --- ChangeLog 2 Jan 2010 18:39:11 -0000 1.62
23 +++ ChangeLog 31 Mar 2010 20:36:17 -0000 1.63
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/nasm
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.62 2010/01/02 18:39:11 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.63 2010/03/31 20:36:17 mr_bones_ Exp $
29 +
30 +*nasm-2.08.01 (31 Mar 2010)
31 +
32 + 31 Mar 2010; Michael Sterrett <mr_bones_@g.o> +nasm-2.08.01.ebuild:
33 + version bump
34
35 02 Jan 2010; Christian Faulhammer <fauli@g.o> nasm-2.07.ebuild:
36 Transfer Prefix keywords
37
38
39
40 1.1 dev-lang/nasm/nasm-2.08.01.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.08.01.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/nasm/nasm-2.08.01.ebuild?rev=1.1&content-type=text/plain
44
45 Index: nasm-2.08.01.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.08.01.ebuild,v 1.1 2010/03/31 20:36:17 mr_bones_ Exp $
50
51 EAPI=2
52 inherit autotools eutils toolchain-funcs flag-o-matic
53
54 DESCRIPTION="groovy little assembler"
55 HOMEPAGE="http://nasm.sourceforge.net/"
56 SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.bz2"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos"
61 IUSE="doc"
62
63 DEPEND="dev-lang/perl
64 doc? ( app-text/ghostscript-gpl sys-apps/texinfo )"
65 RDEPEND=""
66
67 S=${WORKDIR}/${P/_}
68
69 src_configure() {
70 strip-flags
71 econf
72 }
73
74 src_compile() {
75 emake nasmlib.o || die
76 emake all || die
77 if use doc ; then
78 emake doc || die
79 fi
80 }
81
82 src_install() {
83 emake INSTALLROOT="${D}" install install_rdf || die
84 dodoc AUTHORS CHANGES ChangeLog README TODO
85 if use doc ; then
86 doinfo doc/info/*
87 dohtml doc/html/*
88 dodoc doc/nasmdoc.*
89 fi
90 }