blob: dfa6cd3f75ce15cc5a04af7a3ebafb79b1ef6b76 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/intel2gas/intel2gas-1.3.3.ebuild,v 1.4 2004/07/02 05:09:32 eradicator Exp $
DESCRIPTION="Converts assembler source from Intel (NASM), to AT&T (gas)"
HOMEPAGE="http://www.niksula.cs.hut.fi/~mtiihone/intel2gas/"
SRC_URI="http://www.niksula.cs.hut.fi/~mtiihone/intel2gas/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc
sys-devel/gcc"
RDEPEND="virtual/libc"
src_compile() {
econf || die "./configure failed"
emake || die "emake failed"
}
src_install() {
emake \
prefix=${D}/usr \
install || die
dodoc README DATAFILES BUGS
}
|