Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.7.2.ebuild
Date: Fri, 10 Oct 2008 21:29:40
Message-Id: E1KoPYH-0000bU-QM@stork.gentoo.org
1 vapier 08/10/10 21:29:37
2
3 Modified: ChangeLog
4 Added: yasm-0.7.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
8
9 Revision Changes Path
10 1.27 dev-lang/yasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 12 Aug 2008 18:13:09 -0000 1.26
23 +++ ChangeLog 10 Oct 2008 21:29:37 -0000 1.27
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/yasm
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.26 2008/08/12 18:13:09 beandog Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.27 2008/10/10 21:29:37 vapier Exp $
29 +
30 +*yasm-0.7.2 (10 Oct 2008)
31 +
32 + 10 Oct 2008; Mike Frysinger <vapier@g.o> +yasm-0.7.2.ebuild:
33 + Version bump.
34
35 *yasm-0.7.1 (12 Aug 2008)
36
37
38
39
40 1.1 dev-lang/yasm/yasm-0.7.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.7.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.7.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: yasm-0.7.2.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.7.2.ebuild,v 1.1 2008/10/10 21:29:37 vapier Exp $
50
51 DESCRIPTION="Assembler that supports amd64"
52 HOMEPAGE="http://www.tortall.net/projects/yasm/"
53 SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"
54
55 LICENSE="BSD"
56 SLOT="0"
57 KEYWORDS="-* ~amd64 ~ppc64 ~x86 ~x86-fbsd"
58 IUSE="nls"
59
60 RDEPEND="nls? ( virtual/libintl )"
61 DEPEND="nls? ( sys-devel/gettext )"
62
63 src_unpack() {
64 unpack ${A}
65 cd "${S}"
66 # Remove macho tests (gas{32,64},nasm{32,64}) until fixed upstream.
67 # Necessary to pass test phase on at least amd64 with gcc-4.1.2.
68 sed -i \
69 -e '/modules\/objfmts\/macho\/tests\/.*\/.*macho.*_test.sh/d' \
70 Makefile.in
71 }
72
73 src_compile() {
74 econf $(use_enable nls) || die "econf failed"
75 emake || die "emake failed"
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "make install failed"
80 dodoc AUTHORS INSTALL
81 }