diff options
author | bapt <bapt@FreeBSD.org> | 2013-04-30 06:27:05 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-04-30 06:27:05 +0800 |
commit | 31426e557795495adeb04aa9e16edb4c93184379 (patch) | |
tree | 8583dfe71adaea6ce266633e1799cd602516b801 /games/glchess | |
parent | b36431c8212c7fe9fc83e2f7412d5935b6e10e6e (diff) | |
download | freebsd-ports-gnome-31426e557795495adeb04aa9e16edb4c93184379.tar.gz freebsd-ports-gnome-31426e557795495adeb04aa9e16edb4c93184379.tar.zst freebsd-ports-gnome-31426e557795495adeb04aa9e16edb4c93184379.zip |
Convert a bunch of ports from WITHOUT_NLS -> ${PORT_OPTIONS:MNLS}
While here:
- trim headers
- convert to new options framework
Diffstat (limited to 'games/glchess')
-rw-r--r-- | games/glchess/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/games/glchess/Makefile b/games/glchess/Makefile index 8f5b3ec8af36..6ace8df4e212 100644 --- a/games/glchess/Makefile +++ b/games/glchess/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: glchess -# Date created: Wed Jul 18 08:35:56 EDT 2001 -# Whom: Patrick Li <pat@databits.net> -# +# Created by: Patrick Li <pat@databits.net> # $FreeBSD$ -# PORTNAME= glchess PORTVERSION= 1.0.6 @@ -23,12 +19,14 @@ USE_PYDISTUTILS= yes GCONF_SCHEMAS= glchess.schemas -.if defined(WITHOUT_NLS) -PLIST_SUB+= NLS="@comment" -CONFIGURE_ARGS+= --disable-nls -.else +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNLS} PLIST_SUB+= NLS="" USES+= gettext +.else +PLIST_SUB+= NLS="@comment" +CONFIGURE_ARGS+= --disable-nls .endif post-patch: @@ -49,7 +47,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/po/$$lang.mo \ ${PREFIX}/share/locale/$$lang/LC_MESSAGES/glchess.mo ; \ done) -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for file in ChangeLog README TODO ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} |