diff options
author | garga <garga@FreeBSD.org> | 2006-04-26 01:54:44 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-04-26 01:54:44 +0800 |
commit | 92385c6318c49d4d8507981ece6a6653231eed80 (patch) | |
tree | 2b5966915527344e424aaa0bba73362a7d1239cf /devel/yasm | |
parent | f36cc3b3845b47175544fe4c717faf17699800d7 (diff) | |
download | freebsd-ports-gnome-92385c6318c49d4d8507981ece6a6653231eed80.tar.gz freebsd-ports-gnome-92385c6318c49d4d8507981ece6a6653231eed80.tar.zst freebsd-ports-gnome-92385c6318c49d4d8507981ece6a6653231eed80.zip |
- Respect WITHOUT_NLS knob
- Take maintainership
PR: ports/96290
Submitted by: Shaun Amott <shaun@inerd.com>
Diffstat (limited to 'devel/yasm')
-rw-r--r-- | devel/yasm/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/devel/yasm/Makefile b/devel/yasm/Makefile index 6092ec450ed2..67d3f6fdace0 100644 --- a/devel/yasm/Makefile +++ b/devel/yasm/Makefile @@ -11,17 +11,22 @@ PORTVERSION= 0.4.0 CATEGORIES= devel lang MASTER_SITES= http://www.tortall.net/projects/yasm/releases/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= shaun@inerd.com COMMENT= A complete rewrite of the NASM assembler -USE_REINPLACE= yes USE_ICONV= yes USE_AUTOTOOLS= autoconf:259 libltdl:15 -USE_GETTEXT= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes + +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+=--disable-nls +.else +USE_GETTEXT= yes +.endif + .if !defined(NOPORTDOCS) INSTALL_TARGET= install install-man MAN1= yasm.1 |