diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-26 14:43:01 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-26 14:43:01 +0000 |
commit | b1e24043d2aabd989fd3f559481d58a9d9e3aede (patch) | |
tree | d99f098842ecd77658781c52ad5af9742c4f3313 /graphics/xmorph/Makefile | |
parent | c0bf853b8c5fb2eb4d61ac8e7512af70fbc1951b (diff) |
Notes
Diffstat (limited to 'graphics/xmorph/Makefile')
-rw-r--r-- | graphics/xmorph/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/graphics/xmorph/Makefile b/graphics/xmorph/Makefile index 309bd9521917..2374d1042041 100644 --- a/graphics/xmorph/Makefile +++ b/graphics/xmorph/Makefile @@ -22,7 +22,7 @@ CONFLICTS= libmorph* USE_X_PREFIX= yes WANT_GNOME= yes USE_GNOME= gnometarget lthack -USE_LIBTOOL_VER=13 +USE_LIBTOOL_VER= 13 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" INSTALLS_SHLIB= yes @@ -33,13 +33,21 @@ INFO= xmorph .include <bsd.port.pre.mk> .if ${HAVE_GNOME:Mgtk20}!="" -USE_GNOME+= gtk20 +USE_GNOME+= gtk20 CONFIGURE_ARGS+= --with-gtk2 MAN1+= gtkmorph.1 .else CONFIGURE_ARGS+= --without-gtkmorph .endif +.if defined(WITHOUT_NLS) +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.else +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.endif + post-extract: @${RM} -f ${WRKSRC}/doc/*.info* |