diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-08-14 20:54:10 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-08-14 20:54:10 +0000 |
commit | 95edc249cff5d9a6e526a3c2e46d0e0216a3f149 (patch) | |
tree | bb2f29c0fd47ba95199b622dfc373ecc1701a92b /dev-lang | |
parent | Version bump due to gentoopm-0.2 compatibility bug. (diff) | |
download | gentoo-2-95edc249cff5d9a6e526a3c2e46d0e0216a3f149.tar.gz gentoo-2-95edc249cff5d9a6e526a3c2e46d0e0216a3f149.tar.bz2 gentoo-2-95edc249cff5d9a6e526a3c2e46d0e0216a3f149.zip |
version bump
(Portage version: 2.1.10.3/cvs/Linux i686)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/nasm/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/nasm/nasm-2.09.10.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-lang/nasm/ChangeLog b/dev-lang/nasm/ChangeLog index 897223579f5c..88a2759f838f 100644 --- a/dev-lang/nasm/ChangeLog +++ b/dev-lang/nasm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/nasm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.84 2011/07/13 22:37:54 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/ChangeLog,v 1.85 2011/08/14 20:54:10 mr_bones_ Exp $ + +*nasm-2.09.10 (14 Aug 2011) + + 14 Aug 2011; Michael Sterrett <mr_bones_@gentoo.org> +nasm-2.09.10.ebuild: + version bump *nasm-2.10_rc6 (13 Jul 2011) diff --git a/dev-lang/nasm/nasm-2.09.10.ebuild b/dev-lang/nasm/nasm-2.09.10.ebuild new file mode 100644 index 000000000000..1311004696e3 --- /dev/null +++ b/dev-lang/nasm/nasm-2.09.10.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nasm/nasm-2.09.10.ebuild,v 1.1 2011/08/14 20:54:10 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 +} |