diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-12-20 22:13:14 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-12-20 22:13:14 +0000 |
commit | 04371995aff59bf43ddf3f238a3e11e32730a61e (patch) | |
tree | 52f5b0aef974dfbbb3933c91cc25074c695549bf /dev-lang/nasm | |
parent | Fix ChangeLog entry (diff) | |
download | gentoo-2-04371995aff59bf43ddf3f238a3e11e32730a61e.tar.gz gentoo-2-04371995aff59bf43ddf3f238a3e11e32730a61e.tar.bz2 gentoo-2-04371995aff59bf43ddf3f238a3e11e32730a61e.zip |
version bump (bug #447982)
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang/nasm')
-rw-r--r-- | dev-lang/nasm/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/nasm/nasm-2.10.06.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-lang/nasm/ChangeLog b/dev-lang/nasm/ChangeLog index fe5e480d46c6..3c3b1e5bc0c2 100644 --- a/dev-lang/nasm/ChangeLog +++ b/dev-lang/nasm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/nasm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.102 2012/10/30 17:04:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.103 2012/12/20 22:13:14 mr_bones_ Exp $ + +*nasm-2.10.06 (20 Dec 2012) + + 20 Dec 2012; Michael Sterrett <mr_bones_@gentoo.org> +nasm-2.10.06.ebuild: + version bump (bug #447982) 30 Oct 2012; Agostino Sarubbo <ago@gentoo.org> nasm-2.10.05.ebuild: Stable for amd64, wrt bug #440152 diff --git a/dev-lang/nasm/nasm-2.10.06.ebuild b/dev-lang/nasm/nasm-2.10.06.ebuild new file mode 100644 index 000000000000..ae7074e08757 --- /dev/null +++ b/dev-lang/nasm/nasm-2.10.06.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.10.06.ebuild,v 1.1 2012/12/20 22:13:14 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 ~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 || 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 +} |