diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-06 14:41:15 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-06 14:41:15 +0800 |
commit | 13fbf93c41f4cea42f385da9cc22e36f96d66d51 (patch) | |
tree | 57e0d36f5252dfbcbd76ce8c591f83f1cd36486a /x11-fm/rodent | |
parent | 0ad33b7e0f1e94e8fd60f9d60aa9b63e0c1a4f81 (diff) | |
download | freebsd-ports-graphics-13fbf93c41f4cea42f385da9cc22e36f96d66d51.tar.gz freebsd-ports-graphics-13fbf93c41f4cea42f385da9cc22e36f96d66d51.tar.zst freebsd-ports-graphics-13fbf93c41f4cea42f385da9cc22e36f96d66d51.zip |
Finish converting x11* from WITHOUT_NLS to PORT_OPTIONS:MNLS
Diffstat (limited to 'x11-fm/rodent')
-rw-r--r-- | x11-fm/rodent/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/x11-fm/rodent/Makefile b/x11-fm/rodent/Makefile index 8b27a81ad37..a0567538453 100644 --- a/x11-fm/rodent/Makefile +++ b/x11-fm/rodent/Makefile @@ -1,9 +1,5 @@ -# Ports collection Makefile for: rodent -# Date created: 16 March 2012 -# Whom: Jens K. Loewe <bsd@tuxproject.de> -# +# Created by: Jens K. Loewe <bsd@tuxproject.de> # $FreeBSD$ -# PORTNAME= rodent PORTVERSION= 4.8.0 @@ -35,7 +31,9 @@ PORTDOCS= * MAN1= fgr.1 -.if !defined(WITHOUT_NLS) +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" .else @@ -47,10 +45,8 @@ post-patch: ${REINPLACE_CMD} -e 's,^\(docdir = \).*,\1${DOCSDIR},' \ ${WRKSRC}/Build/share/Makefile.in -.include <bsd.port.pre.mk> - .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |