blob: 62d9349c8e89a3b0c32c37f188eb88b9b148d76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-0.98.39-r1.ebuild,v 1.3 2005/12/26 08:02:31 mr_bones_ Exp $
inherit toolchain-funcs
DESCRIPTION="groovy little assembler"
HOMEPAGE="http://nasm.sourceforge.net/"
SRC_URI="mirror://sourceforge/nasm/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE="doc build"
DEPEND="!build? ( dev-lang/perl )
doc? ( virtual/ghostscript sys-apps/texinfo )"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
if [ "$(gcc-major-version)" -eq "2" ] ; then
sed -i \
-e 's:-std=c99::g' \
configure \
|| die "sed failed"
fi
#security fix for bug #92991
sed -i \
-e '/vsprintf/c\ vsnprintf(buffer, sizeof(buffer), format, ap);
' output/outieee.c \
|| die "sed failed"
}
src_compile() {
econf || die
if use build; then
emake nasm || die "emake failed"
else
emake all || die "emake failed"
emake rdf || die "emake failed"
if use doc ; then
emake doc || die "emake failed"
fi
fi
}
src_install() {
if use build; then
dobin nasm || die "dobin failed"
else
dobin nasm ndisasm rdoff/{ldrdf,rdf2bin,rdf2ihx,rdfdump,rdflib,rdx} \
|| die "dobin failed"
dosym /usr/bin/rdf2bin /usr/bin/rdf2com
doman nasm.1 ndisasm.1
dodoc AUTHORS CHANGES ChangeLog README TODO
if use doc; then
doinfo doc/info/*
dohtml doc/html/*
dodoc doc/nasmdoc.*
fi
fi
}
|