diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-28 20:07:34 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-28 20:07:34 +0000 |
commit | 0f7e12184374ef05ee63b7442868c34e7cad3e73 (patch) | |
tree | d42162206199fc934694f0afbc3c76f46f1f04e7 /dev-lang/nasm | |
parent | New addition (diff) | |
download | gentoo-2-0f7e12184374ef05ee63b7442868c34e7cad3e73.tar.gz gentoo-2-0f7e12184374ef05ee63b7442868c34e7cad3e73.tar.bz2 gentoo-2-0f7e12184374ef05ee63b7442868c34e7cad3e73.zip |
clean older, buggy version
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'dev-lang/nasm')
-rw-r--r-- | dev-lang/nasm/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/nasm/nasm-2.09.02.ebuild | 44 |
2 files changed, 4 insertions, 45 deletions
diff --git a/dev-lang/nasm/ChangeLog b/dev-lang/nasm/ChangeLog index 7380da3aece9..574055f0a982 100644 --- a/dev-lang/nasm/ChangeLog +++ b/dev-lang/nasm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/nasm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.72 2010/10/28 19:52:11 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.73 2010/10/28 20:07:34 mr_bones_ Exp $ + + 28 Oct 2010; Michael Sterrett <mr_bones_@gentoo.org> -nasm-2.09.02.ebuild: + clean older, buggy version *nasm-2.10_rc1 (28 Oct 2010) *nasm-2.09.03 (28 Oct 2010) diff --git a/dev-lang/nasm/nasm-2.09.02.ebuild b/dev-lang/nasm/nasm-2.09.02.ebuild deleted file mode 100644 index 3e9c770f6fba..000000000000 --- a/dev-lang/nasm/nasm-2.09.02.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.09.02.ebuild,v 1.1 2010/09/28 17:06:40 mr_bones_ Exp $ - -EAPI=2 -inherit flag-o-matic - -DESCRIPTION="groovy little assembler" -HOMEPAGE="http://nasm.sourceforge.net/" -SRC_URI="http://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.bz2" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos" -IUSE="doc" - -DEPEND="dev-lang/perl - doc? ( app-text/ghostscript-gpl sys-apps/texinfo )" -RDEPEND="" - -S=${WORKDIR}/${P/_} - -src_configure() { - strip-flags - econf -} - -src_compile() { - emake nasmlib.o || die - emake all || die - if use doc ; then - emake doc || die - fi -} - -src_install() { - emake INSTALLROOT="${D}" install install_rdf || die - dodoc AUTHORS CHANGES ChangeLog README TODO - if use doc ; then - doinfo doc/info/* - dohtml doc/html/* - dodoc doc/nasmdoc.* - fi -} |