diff options
author | jgh <jgh@FreeBSD.org> | 2013-05-02 14:36:43 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2013-05-02 14:36:43 +0800 |
commit | 39a5b214fccf0f0502bd1b6939f7eb5199da4eac (patch) | |
tree | 521db25fba49526f3a7c5b55bb6d701a528683c6 /emulators | |
parent | 073e28818a3ec622f0a382be0675f3cd5cb672b6 (diff) | |
download | freebsd-ports-gnome-39a5b214fccf0f0502bd1b6939f7eb5199da4eac.tar.gz freebsd-ports-gnome-39a5b214fccf0f0502bd1b6939f7eb5199da4eac.tar.zst freebsd-ports-gnome-39a5b214fccf0f0502bd1b6939f7eb5199da4eac.zip |
- adoption of USES for gettext
Approved by: portmgr (bapt@)
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/dolphin-emu-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/dolphin-emu-devel/Makefile b/emulators/dolphin-emu-devel/Makefile index ffbca9f5ab06..d282fe6350a0 100644 --- a/emulators/dolphin-emu-devel/Makefile +++ b/emulators/dolphin-emu-devel/Makefile @@ -52,10 +52,10 @@ PORTAUDIO_DESC= Enable PortAudio (mic) support FRAMEDUMPS_DESC= Encode framedumps in AVI format OPTIONS_DEFAULT= PORTAUDIO FRAMEDUMPS -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNLS} -USE_GETTEXT= yes +USES+= gettext PLIST_SUB+= NLS="" .else CMAKE_ARGS+= -DDISABLE_NLS:BOOL=ON @@ -95,4 +95,4 @@ CMAKE_ARGS+= -DENCODE_FRAMEDUMPS:BOOL=OFF post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |