diff options
author | Andrey Slusar <anray@FreeBSD.org> | 2006-06-27 06:16:11 +0000 |
---|---|---|
committer | Andrey Slusar <anray@FreeBSD.org> | 2006-06-27 06:16:11 +0000 |
commit | c60189a901e521e5c486b4d5b0aaaf98ef3bcf27 (patch) | |
tree | a23e802825c5a72b80b3ee139258794fca43e49a /net-im | |
parent | 5425dcfbf25a8170c51e7ce05e20da62d01a8109 (diff) |
Notes
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/kf/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net-im/kf/Makefile b/net-im/kf/Makefile index 0a6934c25b83..224b6790cd04 100644 --- a/net-im/kf/Makefile +++ b/net-im/kf/Makefile @@ -27,12 +27,17 @@ GNU_CONFIGURE= yes CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +OPTIONS=GTKSPELL "Spell checking support" on \ + NLS "Native Language Support" on + +.include <bsd.port.pre.mk> + .ifndef(WITHOUT_GTKSPELL) LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell CONFIGURE_ARGS+= --enable-gtkspell .endif -.if !defined(WITHOUT_NLS) +.ifndef(WITHOUT_NLS) USE_GETTEXT= yes CONFIGURE_ARGS+= --enable-nls PLIST_SUB= NLS="" @@ -41,4 +46,4 @@ CONFIGURE_ARGS+= --disable-nls PLIST_SUB= NLS="@comment " .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |