diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-26 16:39:14 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-26 16:39:14 +0000 |
commit | bc62127a69294fd3340ea793685953d98ff835dc (patch) | |
tree | d124c4d6f965d5152806ebfbf40e1b5a25860ddb /graphics/gimageview | |
parent | e8dd5f52410bdf2a989023706699373d47296008 (diff) | |
download | ports-bc62127a69294fd3340ea793685953d98ff835dc.tar.gz ports-bc62127a69294fd3340ea793685953d98ff835dc.zip |
Convert from USE_GETTEXT to USES= gettext
While here:
- Trim some headers
- Convert to new options framework
Notes
Notes:
svn path=/head/; revision=316624
Diffstat (limited to 'graphics/gimageview')
-rw-r--r-- | graphics/gimageview/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/gimageview/Makefile b/graphics/gimageview/Makefile index 0d9c3057a87e..cb36c42d2002 100644 --- a/graphics/gimageview/Makefile +++ b/graphics/gimageview/Makefile @@ -31,14 +31,14 @@ USE_XORG= xinerama ice CONFIGURE_ARGS= --with-gtk2 CFLAGS+= -DUSE_GTK2 -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if empty(PORT_OPTIONS:MSPLASH) +.if ! ${PORT_OPTIONS:MSPLASH} CONFIGURE_ARGS+= --disable-splash .endif .if ${PORT_OPTIONS:MNLS} -USE_GETTEXT= yes +USES+= gettext PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+= --disable-nls @@ -113,4 +113,4 @@ post-configure: 's/^(GDK_IMLIB_(CFLAGS|LIBS) =).*$$/$${1}/' .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |