View | Details | Raw Unified | Return to bug 109511
Collapse All | Expand All

(-)Makefile (-3 / +3 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	yasm
9
PORTNAME=	yasm
10
PORTVERSION=	0.5.0
10
PORTVERSION=	0.6.0
11
CATEGORIES=	devel lang
11
CATEGORIES=	devel lang
12
MASTER_SITES=	http://www.tortall.net/projects/yasm/releases/
12
MASTER_SITES=	http://www.tortall.net/projects/yasm/releases/
13
13
Lines 15-24 Link Here
15
COMMENT=	A complete rewrite of the NASM assembler
15
COMMENT=	A complete rewrite of the NASM assembler
16
16
17
USE_ICONV=	yes
17
USE_ICONV=	yes
18
USE_AUTOTOOLS=	autoconf:259 libltdl:15
19
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
20
CONFIGURE_ENV=	CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
19
CONFIGURE_ENV=	CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
21
		LDFLAGS="-L${LOCALBASE}/lib"
20
		LDFLAGS="-L${LOCALBASE}/lib"
21
CONFIGURE_ARGS=	--mandir=${MANPREFIX}/man
22
22
23
.include <bsd.port.pre.mk>
23
.include <bsd.port.pre.mk>
24
24
Lines 35-41 Link Here
35
.if !defined(NOPORTDOCS)
35
.if !defined(NOPORTDOCS)
36
INSTALL_TARGET=	install install-man
36
INSTALL_TARGET=	install install-man
37
MAN1=		yasm.1
37
MAN1=		yasm.1
38
MAN7=		yasm_arch.7
38
MAN7=		yasm_arch.7 yasm_dbgfmts.7 yasm_objfmts.7 yasm_parsers.7
39
.endif
39
.endif
40
40
41
.include <bsd.port.post.mk>
41
.include <bsd.port.post.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (yasm-0.5.0.tar.gz) = d4931fcce497bd4f80ed349384704240
1
MD5 (yasm-0.6.0.tar.gz) = 3246a73ee7e1d523ca1be8587cebac8b
2
SHA256 (yasm-0.5.0.tar.gz) = a5629aea24b0e10e23bfd88663b52544888ebed5a59b57be24042ccbbeff823e
2
SHA256 (yasm-0.6.0.tar.gz) = b3d28aa6613fe745dfdb9e46bd43d5dbaa98c7633992e13e7a6a43c8c8b7261d
3
SIZE (yasm-0.5.0.tar.gz) = 1171590
3
SIZE (yasm-0.6.0.tar.gz) = 1192453
(-)pkg-descr (-3 / +3 lines)
Lines 1-8 Link Here
1
YASM is a complete rewrite of the NASM assembler under the "new" BSD License
1
YASM is a complete rewrite of the NASM assembler under the "new" BSD License
2
(some portions are currently under the GNU Lesser General Public License
2
(some portions are currently under the GNU Lesser General Public License
3
(LGPL)). Yasm currently supports the x86 and AMD64 instruction sets, accepts
3
(LGPL)). Yasm currently supports the x86 and AMD64 instruction sets, accepts
4
NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, COFF, Win32,
4
NASM and GAS assembler syntaxes, outputs binary, ELF32, ELF64, COFF, Mach-O
5
and Win64 object formats, and generates source debugging information in
5
(32 and 64), RDOFF2, Win32, and Win64 object formats, and generates source
6
STABS, DWARF 2, and CodeView 8 formats.
6
debugging information in STABS, DWARF 2, and CodeView 8 formats.
7
7
8
WWW: http://www.tortall.net/projects/yasm/
8
WWW: http://www.tortall.net/projects/yasm/
(-)pkg-plist (-2 / +3 lines)
Lines 1-5 Link Here
1
bin/yasm
1
bin/yasm
2
include/libyasm.h
2
include/libyasm.h
3
include/libyasm-stdint.h
3
include/libyasm/arch.h
4
include/libyasm/arch.h
4
include/libyasm/assocdat.h
5
include/libyasm/assocdat.h
5
include/libyasm/bc-int.h
6
include/libyasm/bc-int.h
Lines 15-26 Link Here
15
include/libyasm/floatnum.h
16
include/libyasm/floatnum.h
16
include/libyasm/hamt.h
17
include/libyasm/hamt.h
17
include/libyasm/intnum.h
18
include/libyasm/intnum.h
18
include/libyasm/linemgr.h
19
include/libyasm/inttree.h
20
include/libyasm/linemap.h
19
include/libyasm/listfmt.h
21
include/libyasm/listfmt.h
20
include/libyasm/md5.h
22
include/libyasm/md5.h
21
include/libyasm/module.h
23
include/libyasm/module.h
22
include/libyasm/objfmt.h
24
include/libyasm/objfmt.h
23
include/libyasm/optimizer.h
24
include/libyasm/parser.h
25
include/libyasm/parser.h
25
include/libyasm/phash.h
26
include/libyasm/phash.h
26
include/libyasm/preproc.h
27
include/libyasm/preproc.h

Return to bug 109511