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.6.2.ebuild
Date: Sat, 22 Sep 2007 00:50:25
Message-Id: E1IYt4G-0001Hf-Ad@stork.gentoo.org
1 vapier 07/09/22 00:41:56
2
3 Modified: ChangeLog
4 Added: yasm-0.6.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.17 dev-lang/yasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 24 Jul 2007 03:34:41 -0000 1.16
23 +++ ChangeLog 22 Sep 2007 00:41:55 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/yasm
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.16 2007/07/24 03:34:41 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.17 2007/09/22 00:41:55 vapier Exp $
29 +
30 +*yasm-0.6.2 (22 Sep 2007)
31 +
32 + 22 Sep 2007; Mike Frysinger <vapier@g.o> +yasm-0.6.2.ebuild:
33 + Version bump.
34
35 *yasm-0.6.1 (24 Jul 2007)
36
37
38
39
40 1.1 dev-lang/yasm/yasm-0.6.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.6.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.6.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: yasm-0.6.2.ebuild
46 ===================================================================
47 # Copyright 1999-2007 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.6.2.ebuild,v 1.1 2007/09/22 00:41:55 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 ~x86"
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 }
82
83
84
85 --
86 gentoo-commits@g.o mailing list