diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-01-17 18:22:21 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-01-17 18:22:21 +0000 |
commit | f2313b9f66657de2d7bb5778f10bbee1d936f972 (patch) | |
tree | 2abe287747147ff518071887fbe99526361a08af /dev-lang | |
parent | EAPI bump (diff) | |
download | gentoo-2-f2313b9f66657de2d7bb5778f10bbee1d936f972.tar.gz gentoo-2-f2313b9f66657de2d7bb5778f10bbee1d936f972.tar.bz2 gentoo-2-f2313b9f66657de2d7bb5778f10bbee1d936f972.zip |
version bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/nasm/ChangeLog | 9 | ||||
-rw-r--r-- | dev-lang/nasm/nasm-2.11.ebuild | 42 |
2 files changed, 49 insertions, 2 deletions
diff --git a/dev-lang/nasm/ChangeLog b/dev-lang/nasm/ChangeLog index 8c1312aedfe3..aeb139161451 100644 --- a/dev-lang/nasm/ChangeLog +++ b/dev-lang/nasm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/nasm -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.111 2013/12/15 18:34:05 mr_bones_ Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.112 2014/01/17 18:22:21 mr_bones_ Exp $ + +*nasm-2.11 (17 Jan 2014) + + 17 Jan 2014; Michael Sterrett <mr_bones_@gentoo.org> +nasm-2.11.ebuild: + version bump *nasm-2.10.09 (15 Dec 2013) diff --git a/dev-lang/nasm/nasm-2.11.ebuild b/dev-lang/nasm/nasm-2.11.ebuild new file mode 100644 index 000000000000..9dba8038b566 --- /dev/null +++ b/dev-lang/nasm/nasm-2.11.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.11.ebuild,v 1.1 2014/01/17 18:22:21 mr_bones_ 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 +} |