1
0
forked from ports/opt

yasm: New port.

This commit is contained in:
Brett Goulder 2008-03-29 22:22:37 -04:00
parent c86ef8b8f1
commit 033b866d57
3 changed files with 62 additions and 0 deletions

45
yasm/.footprint Normal file

@ -0,0 +1,45 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/yasm
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libyasm-stdint.h
-rw-r--r-- root/root usr/include/libyasm.h
drwxr-xr-x root/root usr/include/libyasm/
-rw-r--r-- root/root usr/include/libyasm/arch.h
-rw-r--r-- root/root usr/include/libyasm/assocdat.h
-rw-r--r-- root/root usr/include/libyasm/bitvect.h
-rw-r--r-- root/root usr/include/libyasm/bytecode.h
-rw-r--r-- root/root usr/include/libyasm/compat-queue.h
-rw-r--r-- root/root usr/include/libyasm/coretype.h
-rw-r--r-- root/root usr/include/libyasm/dbgfmt.h
-rw-r--r-- root/root usr/include/libyasm/errwarn.h
-rw-r--r-- root/root usr/include/libyasm/expr.h
-rw-r--r-- root/root usr/include/libyasm/file.h
-rw-r--r-- root/root usr/include/libyasm/floatnum.h
-rw-r--r-- root/root usr/include/libyasm/hamt.h
-rw-r--r-- root/root usr/include/libyasm/insn.h
-rw-r--r-- root/root usr/include/libyasm/intnum.h
-rw-r--r-- root/root usr/include/libyasm/inttree.h
-rw-r--r-- root/root usr/include/libyasm/linemap.h
-rw-r--r-- root/root usr/include/libyasm/listfmt.h
-rw-r--r-- root/root usr/include/libyasm/md5.h
-rw-r--r-- root/root usr/include/libyasm/module.h
-rw-r--r-- root/root usr/include/libyasm/objfmt.h
-rw-r--r-- root/root usr/include/libyasm/parser.h
-rw-r--r-- root/root usr/include/libyasm/phash.h
-rw-r--r-- root/root usr/include/libyasm/preproc.h
-rw-r--r-- root/root usr/include/libyasm/section.h
-rw-r--r-- root/root usr/include/libyasm/symrec.h
-rw-r--r-- root/root usr/include/libyasm/valparam.h
-rw-r--r-- root/root usr/include/libyasm/value.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libyasm.a
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/yasm.1.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/yasm_arch.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_dbgfmts.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_objfmts.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_parsers.7.gz

1
yasm/.md5sum Normal file

@ -0,0 +1 @@
a9d5508702991de2bdd0903b8ba680ba yasm-0.6.2.tar.gz

16
yasm/Pkgfile Normal file

@ -0,0 +1,16 @@
# Description: A complete rewrite of the NASM assembler under the new BSD License
# URL: http://www.tortall.net/projects/yasm/
# Maintainer: Brett Goulder, predatorfreak at dcaf-security dot org
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org
name=yasm
version=0.6.2
release=1
source=(http://www.tortall.net/projects/yasm/releases/$name-$version.tar.gz)
build () {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}