nasm moved to ::arbor
This commit is contained in:
parent
87ae747ff9
commit
dff9b7f207
3 changed files with 0 additions and 80 deletions
|
@ -1,25 +0,0 @@
|
||||||
Upstream: No
|
|
||||||
Reason: no need to require pstopdf during the build
|
|
||||||
Source: Daniel Mierswa <impulze@impulze.org>
|
|
||||||
|
|
||||||
--- ./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
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Copyright 2008, 2009 Daniel Mierswa <impulze@impulze.org>
|
|
||||||
# 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"
|
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
# Copyright 2009 Daniel Mierswa <impulze@impulze.org>
|
|
||||||
# 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
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue