diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-29 22:27:05 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-29 22:27:05 +0000 |
commit | 9ff06b3cbf038359059e40e0db31ba0cbe996d0f (patch) | |
tree | 8583dfe71adaea6ce266633e1799cd602516b801 /devel/motor | |
parent | 25c4307da135103ea810d65f96f2f1c21e0547b4 (diff) | |
download | ports-9ff06b3cbf038359059e40e0db31ba0cbe996d0f.tar.gz ports-9ff06b3cbf038359059e40e0db31ba0cbe996d0f.zip |
Notes
Diffstat (limited to 'devel/motor')
-rw-r--r-- | devel/motor/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/devel/motor/Makefile b/devel/motor/Makefile index 25314a6aa3bb..2b411f7b9bc1 100644 --- a/devel/motor/Makefile +++ b/devel/motor/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: motor -# Date created: 20 February 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# +# Created by: Maxim Sobolev <sobomax@FreeBSD.org> # $FreeBSD$ -# PORTNAME= motor PORTVERSION= 3.4.0 @@ -19,7 +15,10 @@ USE_GMAKE= yes USES= iconv GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} -.if !defined(WITHOUT_NLS) + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} USES+= gettext CONFIGURE_ARGS+=--with-libintl-prefix=${LOCALBASE} PLIST_SUB= NLS="" @@ -35,7 +34,7 @@ post-patch: @${REINPLACE_CMD} -e 's|strndup|my_strndup|' ${WRKSRC}/parser/src/parser.c \ ${WRKSRC}/parser/src/strfn.c ${WRKSRC}/parser/include/strfn.h -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} post-install: @${MKDIR} ${DOCSDIR} @(cd ${WRKSRC} ; ${INSTALL_DATA} FAQ README ${DOCSDIR}) |