blob: 5a388aace35fa4a487d0325b4395f7254b4072d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.4.0.ebuild,v 1.3 2006/03/01 00:42:17 kugelfang Exp $
DESCRIPTION="assembler that supports amd64"
HOMEPAGE="http://www.tortall.net/projects/yasm/"
SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="-* amd64 ~x86"
IUSE=""
DEPEND=""
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS INSTALL
}
|