summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-02-05 03:47:07 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-02-05 03:47:07 +0000
commitec823d181420cfa7dedfbb78ba6d7733711240e3 (patch)
tree212fc5378c70f1e20fc18ee43cac1deded034580
parentfix deps per depcheck (diff)
downloadgentoo-2-ec823d181420cfa7dedfbb78ba6d7733711240e3.tar.gz
gentoo-2-ec823d181420cfa7dedfbb78ba6d7733711240e3.tar.bz2
gentoo-2-ec823d181420cfa7dedfbb78ba6d7733711240e3.zip
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r--dev-lang/nasm/ChangeLog5
-rw-r--r--dev-lang/nasm/nasm-2.10.07.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-lang/nasm/ChangeLog b/dev-lang/nasm/ChangeLog
index acf642c34079..a0c9883b7c45 100644
--- a/dev-lang/nasm/ChangeLog
+++ b/dev-lang/nasm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/nasm
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.121 2015/02/01 13:46:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.122 2015/02/05 03:47:07 mr_bones_ Exp $
+
+ 05 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> -nasm-2.10.07.ebuild:
+ old
01 Feb 2015; Agostino Sarubbo <ago@gentoo.org> nasm-2.11.06.ebuild:
Stable for x86, wrt bug #538258
diff --git a/dev-lang/nasm/nasm-2.10.07.ebuild b/dev-lang/nasm/nasm-2.10.07.ebuild
deleted file mode 100644
index 9f5cfc347573..000000000000
--- a/dev-lang/nasm/nasm-2.10.07.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.10.07.ebuild,v 1.5 2013/02/14 12:09:23 ago Exp $
-
-EAPI=5
-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.xz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="-* amd64 x86 ~amd64-fbsd ~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
- emake all
- use doc && emake doc
-}
-
-src_install() {
- emake INSTALLROOT="${D}" install install_rdf
- dodoc AUTHORS CHANGES ChangeLog README TODO
- if use doc ; then
- doinfo doc/info/*
- dohtml doc/html/*
- dodoc doc/nasmdoc.*
- fi
-}