From dff9b7f20708818d9df6b3c9c22d4d6b702fa00c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20H=C3=B8jgaard-Hansen?= Date: Tue, 16 Aug 2011 14:39:52 +0200 Subject: [PATCH] nasm moved to ::arbor --- .../files/nasm-2.05.01-automagic-deps.patch | 25 ------------- packages/dev-lang/nasm/nasm-2.09.10.exheres-0 | 18 --------- packages/dev-lang/nasm/nasm.exlib | 37 ------------------- 3 files changed, 80 deletions(-) delete mode 100644 packages/dev-lang/nasm/files/nasm-2.05.01-automagic-deps.patch delete mode 100644 packages/dev-lang/nasm/nasm-2.09.10.exheres-0 delete mode 100644 packages/dev-lang/nasm/nasm.exlib diff --git a/packages/dev-lang/nasm/files/nasm-2.05.01-automagic-deps.patch b/packages/dev-lang/nasm/files/nasm-2.05.01-automagic-deps.patch deleted file mode 100644 index 72529b5..0000000 --- a/packages/dev-lang/nasm/files/nasm-2.05.01-automagic-deps.patch +++ /dev/null @@ -1,25 +0,0 @@ -Upstream: No -Reason: no need to require pstopdf during the build -Source: Daniel Mierswa - ---- ./configure.in.orig 2008-12-05 17:57:11.000000000 +0100 -+++ ./configure.in 2008-12-05 17:57:05.000000000 +0100 -@@ -67,10 +67,14 @@ - PA_ADD_CFLAGS([-pedantic]) - - dnl Look for programs... --AC_CHECK_PROGS(NROFF, nroff, echo) --AC_CHECK_PROGS(ACRODIST, acrodist, false) --AC_CHECK_PROGS(PS2PDF, ps2pdf, false) --AC_CHECK_PROGS(PSTOPDF, pstopdf, false) -+AC_ARG_WITH([nroff], [AS_HELP_STRING([--with-nroff], [use nroff])]) -+test "$with_nroff" != no && AC_CHECK_PROGS(NROFF, nroff, echo) -+AC_ARG_WITH([acrodist], [AS_HELP_STRING([--with-acrodist], [use acrodist])]) -+test "$with_acrodist" != no && AC_CHECK_PROGS(ACRODIST, acrodist, false) -+AC_ARG_WITH([ps2pdf], [AS_HELP_STRING([--with-ps2pdf], [use ps2pdf])]) -+test "$with_ps2pdf" != no && AC_CHECK_PROGS(PS2PDF, ps2pdf, false) -+AC_ARG_WITH([pstopdf], [AS_HELP_STRING([--with-pstopdf], [use pstopdf])]) -+test "$with_pstopdf" != no && AC_CHECK_PROGS(PSTOPDF, pstopdf, false) - - dnl Checks for header files. - AC_HEADER_STDC diff --git a/packages/dev-lang/nasm/nasm-2.09.10.exheres-0 b/packages/dev-lang/nasm/nasm-2.09.10.exheres-0 deleted file mode 100644 index dd77774..0000000 --- a/packages/dev-lang/nasm/nasm-2.09.10.exheres-0 +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2008, 2009 Daniel Mierswa -# Distributed under the terms of the GNU General Public License v2 - -require nasm autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.10 1.11 ] ] - -DEFAULT_SRC_PREPARE_PATCHES+=( - "${FILES}/${PN}-2.05.01-automagic-deps.patch" -) - -DEFAULT_SRC_CONFIGURE_PARAMS+=( - --without-acrodist - --without-ps2pdf - --without-pstopdf -) - -SLOT="0" -PLATFORMS="~amd64 ~x86" - diff --git a/packages/dev-lang/nasm/nasm.exlib b/packages/dev-lang/nasm/nasm.exlib deleted file mode 100644 index 008a187..0000000 --- a/packages/dev-lang/nasm/nasm.exlib +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2009 Daniel Mierswa -# Distributed under the terms of the GNU General Public License v2 - -MY_PV="${PV/_rc/rc}" -MY_PNV="${PN}-${MY_PV}" - -SUMMARY="An 80x86 and x86-64 assembler designed for portability and modularity." -DESCRIPTION=" - It supports a range of object file formats, including Linux and *BSD a.out, - ELF, COFF, Mach-O, Microsoft 16-bit OBJ, Win32 and Win64. It will also - output plain binary files. Its syntax is designed to be simple and easy to - understand, similar to Intel's but less complex -" -HOMEPAGE="http://www.${PN}.us/" -DOWNLOADS="${HOMEPAGE}/pub/${PN}/releasebuilds/${MY_PV}/${MY_PNV}.tar.bz2" - -LICENCES="BSD-2" -MYOPTIONS="" - -DEPENDENCIES="" - -REMOTE_IDS="freshmeat:nasm" - -UPSTREAM_DOCUMENTATION="${HOMEPAGE}/doc/" - -WORK="${WORKBASE}/${MY_PNV}" - -src_test() { - emake -C test golden - emake -C test test -} - -src_install() { - emake -j1 INSTALLROOT="${IMAGE}" install - emagicdocs -} -