summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/yasm/yasm-0.6.2.ebuild')
-rw-r--r--dev-lang/yasm/yasm-0.6.2.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-lang/yasm/yasm-0.6.2.ebuild b/dev-lang/yasm/yasm-0.6.2.ebuild
deleted file mode 100644
index a7aea4fb2232..000000000000
--- a/dev-lang/yasm/yasm-0.6.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.6.2.ebuild,v 1.6 2008/10/11 08:29:42 corsair 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 ~x86-fbsd"
-IUSE="nls"
-
-RDEPEND="nls? ( virtual/libintl )"
-DEPEND="nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # Remove macho tests (gas{32,64},nasm{32,64}) until fixed upstream.
- # Necessary to pass test phase on at least amd64 with gcc-4.1.2.
- sed -i \
- -e '/modules\/objfmts\/macho\/tests\/.*\/.*macho.*_test.sh/d' \
- Makefile.in
-}
-
-src_compile() {
- econf $(use_enable nls) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS INSTALL
-}