mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Update to 0.6.0.
- Hand over maintainership to submitter (who also happens to be the author of yasm) PR: ports/109511 Submitted by: Peter Johnson <johnson.peter@gmail.com>
This commit is contained in:
parent
d6404064d7
commit
b07cc6da86
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188898
4 changed files with 13 additions and 12 deletions
|
@ -7,18 +7,18 @@
|
|||
#
|
||||
|
||||
PORTNAME= yasm
|
||||
PORTVERSION= 0.5.0
|
||||
PORTVERSION= 0.6.0
|
||||
CATEGORIES= devel lang
|
||||
MASTER_SITES= http://www.tortall.net/projects/yasm/releases/
|
||||
|
||||
MAINTAINER= shaun@FreeBSD.org
|
||||
MAINTAINER= johnson.peter@gmail.com
|
||||
COMMENT= A complete rewrite of the NASM assembler
|
||||
|
||||
USE_ICONV= yes
|
||||
USE_AUTOTOOLS= autoconf:259 libltdl:15
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --mandir=${MANPREFIX}/man
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
|
@ -35,7 +35,7 @@ USE_GETTEXT= yes
|
|||
.if !defined(NOPORTDOCS)
|
||||
INSTALL_TARGET= install install-man
|
||||
MAN1= yasm.1
|
||||
MAN7= yasm_arch.7
|
||||
MAN7= yasm_arch.7 yasm_dbgfmts.7 yasm_objfmts.7 yasm_parsers.7
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (yasm-0.5.0.tar.gz) = d4931fcce497bd4f80ed349384704240
|
||||
SHA256 (yasm-0.5.0.tar.gz) = a5629aea24b0e10e23bfd88663b52544888ebed5a59b57be24042ccbbeff823e
|
||||
SIZE (yasm-0.5.0.tar.gz) = 1171590
|
||||
MD5 (yasm-0.6.0.tar.gz) = 3246a73ee7e1d523ca1be8587cebac8b
|
||||
SHA256 (yasm-0.6.0.tar.gz) = b3d28aa6613fe745dfdb9e46bd43d5dbaa98c7633992e13e7a6a43c8c8b7261d
|
||||
SIZE (yasm-0.6.0.tar.gz) = 1192453
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
YASM is a complete rewrite of the NASM assembler under the "new" BSD License
|
||||
(some portions are currently under the GNU Lesser General Public License
|
||||
(LGPL)). Yasm currently supports the x86 and AMD64 instruction sets, accepts
|
||||
NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, COFF, Win32,
|
||||
and Win64 object formats, and generates source debugging information in
|
||||
STABS, DWARF 2, and CodeView 8 formats.
|
||||
NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, COFF, Mach-O
|
||||
(32 and 64), RDOFF2, Win32, and Win64 object formats, and generates source
|
||||
debugging information in STABS, DWARF 2, and CodeView 8 formats.
|
||||
|
||||
WWW: http://www.tortall.net/projects/yasm/
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
bin/yasm
|
||||
include/libyasm.h
|
||||
include/libyasm-stdint.h
|
||||
include/libyasm/arch.h
|
||||
include/libyasm/assocdat.h
|
||||
include/libyasm/bc-int.h
|
||||
|
@ -15,12 +16,12 @@ include/libyasm/file.h
|
|||
include/libyasm/floatnum.h
|
||||
include/libyasm/hamt.h
|
||||
include/libyasm/intnum.h
|
||||
include/libyasm/linemgr.h
|
||||
include/libyasm/inttree.h
|
||||
include/libyasm/linemap.h
|
||||
include/libyasm/listfmt.h
|
||||
include/libyasm/md5.h
|
||||
include/libyasm/module.h
|
||||
include/libyasm/objfmt.h
|
||||
include/libyasm/optimizer.h
|
||||
include/libyasm/parser.h
|
||||
include/libyasm/phash.h
|
||||
include/libyasm/preproc.h
|
||||
|
|
Loading…
Add table
Reference in a new issue