Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-1.1.0.ebuild
Date: Fri, 20 Aug 2010 13:20:40
Message-Id: 20100820132036.751512004C@flycatcher.gentoo.org
1 ssuominen 10/08/20 13:20:36
2
3 Modified: ChangeLog
4 Added: yasm-1.1.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.41 dev-lang/yasm/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 12 Jul 2010 18:01:12 -0000 1.40
23 +++ ChangeLog 20 Aug 2010 13:20:35 -0000 1.41
24 @@ -1,6 +1,12 @@
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.40 2010/07/12 18:01:12 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.41 2010/08/20 13:20:35 ssuominen Exp $
29 +
30 +*yasm-1.1.0 (20 Aug 2010)
31 +
32 + 20 Aug 2010; Samuli Suominen <ssuominen@g.o> +yasm-1.1.0.ebuild,
33 + +files/yasm-1.1.0-skip_cython_check.patch:
34 + Version bump.
35
36 12 Jul 2010; Christian Faulhammer <fauli@g.o> yasm-1.0.1.ebuild:
37 stable x86, bug 325273
38
39
40
41 1.1 dev-lang/yasm/yasm-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: yasm-1.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-1.1.0.ebuild,v 1.1 2010/08/20 13:20:35 ssuominen Exp $
51
52 EAPI=2
53 PYTHON_DEPEND="python? 2:2.4"
54
55 inherit autotools eutils python
56
57 DESCRIPTION="An assembler for x86 and x86_64 instruction sets"
58 HOMEPAGE="http://www.tortall.net/projects/yasm/"
59 SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"
60
61 LICENSE="Artistic BSD GPL-2 LGPL-2"
62 SLOT="0"
63 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
64 IUSE="nls python"
65
66 RDEPEND="nls? ( virtual/libintl )"
67 DEPEND="nls? ( sys-devel/gettext )
68 python? ( >=dev-python/cython-0.11.3 )"
69
70 pkg_setup() {
71 if use python; then
72 python_set_active_version 2
73 python_pkg_setup
74 fi
75 }
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${PN}-1.1.0-skip_cython_check.patch
79 eautoreconf
80 }
81
82 src_configure() {
83 econf \
84 $(use_enable python) \
85 $(use_enable python python-bindings) \
86 --disable-dependency-tracking \
87 $(use_enable nls)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die
92 dodoc AUTHORS
93 }