Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-1.0.1.ebuild
Date: Thu, 03 Jun 2010 19:46:13
Message-Id: 20100603194610.372B92CF48@corvid.gentoo.org
1 polynomial-c 10/06/03 19:46:10
2
3 Modified: ChangeLog
4 Added: yasm-1.0.1.ebuild
5 Log:
6 Version bump (bug #322655)
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.38 dev-lang/yasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 12 Apr 2010 19:50:02 -0000 1.37
23 +++ ChangeLog 3 Jun 2010 19:46:10 -0000 1.38
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/yasm
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.37 2010/04/12 19:50:02 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.38 2010/06/03 19:46:10 polynomial-c Exp $
29 +
30 +*yasm-1.0.1 (03 Jun 2010)
31 +
32 + 03 Jun 2010; Lars Wendler <polynomial-c@g.o> +yasm-1.0.1.ebuild:
33 + Version bump (bug #322655).
34
35 12 Apr 2010; Samuli Suominen <ssuominen@g.o> yasm-1.0.0.ebuild:
36 LICENSE is all of Artistic, BSD, GPL-2 and LGPL-2.
37
38
39
40 1.1 dev-lang/yasm/yasm-1.0.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.0.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.0.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: yasm-1.0.1.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/yasm/yasm-1.0.1.ebuild,v 1.1 2010/06/03 19:46:10 polynomial-c Exp $
50
51 EAPI=2
52
53 DESCRIPTION="Assembler that supports amd64"
54 HOMEPAGE="http://www.tortall.net/projects/yasm/"
55 SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"
56
57 LICENSE="Artistic BSD GPL-2 LGPL-2"
58 SLOT="0"
59 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
60 IUSE="nls"
61
62 RDEPEND="nls? ( virtual/libintl )"
63 DEPEND="nls? ( sys-devel/gettext )"
64
65 src_configure() {
66 econf \
67 --disable-dependency-tracking \
68 $(use_enable nls)
69 }
70
71 src_install() {
72 emake DESTDIR="${D}" install || die
73 dodoc AUTHORS
74 }