# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.6.0.ebuild,v 1.1 2007/03/20 01:10:46 kugelfang Exp $ inherit versionator 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="-* ~x86 ~amd64" IUSE="nls" RDEPEND="nls? ( virtual/libintl )" DEPEND="nls? ( sys-devel/gettext )" src_compile() { econf $(use_enable nls) || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS INSTALL }