diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-10 15:22:52 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-10 15:22:52 +0000 |
commit | 679032a2066f13b07f7d4b3f419c0225693ef2f8 (patch) | |
tree | 452252a84e3e627cf9157c20ed7fb5e44cd6746b /x11/kde4-workspace | |
parent | e87af08d876fa373a8b697bde4e9b69df3075bf0 (diff) | |
download | ports-679032a2066f13b07f7d4b3f419c0225693ef2f8.tar.gz ports-679032a2066f13b07f7d4b3f419c0225693ef2f8.zip |
USE_MOTIF by default now - netscape plugins compat is en vogue again
thanks to the libmap-flashplugin hack.
Notes
Notes:
svn path=/head/; revision=100561
Diffstat (limited to 'x11/kde4-workspace')
-rw-r--r-- | x11/kde4-workspace/Makefile | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/x11/kde4-workspace/Makefile b/x11/kde4-workspace/Makefile index fa24519d655a..fbc50933f025 100644 --- a/x11/kde4-workspace/Makefile +++ b/x11/kde4-workspace/Makefile @@ -41,27 +41,20 @@ CONFIGURE_ARGS+=--without-java \ .include "${.CURDIR}/../../x11/kde3/Makefile.kde" .include <bsd.port.pre.mk> -.if exists(${X11BASE}/include/Xm/Xm.h) -WITH_MOTIF= yes -.endif # exists(${X11BASE}/include/Xm/Xm.h) - .if defined(WITHOUT_MOTIF) -.undef WITH_MOTIF CONFIGURE_ARGS+= --without-motif -.endif # defined(WITHOUT_MOTIF) - -.if defined(WITH_MOTIF) +.else USE_MOTIF= yes PLIST_APPEND+= plist.motif -.else + pre-extract:: @${ECHO_MSG} - @${ECHO_MSG} "If you want to compile with Motif support," - @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_MOTIF=yes\"" + @${ECHO_MSG} "If you want to compile WITHOUT Motif support, hit" + @${ECHO_MSG} "Ctrl-C right now and use \"make WITHOUT_MOTIF=yes\"" @${ECHO_MSG} - @${ECHO_MSG} "Motif is used for Netscape plugin compatibility." + @${ECHO_MSG} "This will DISABLE netscape plugin compatibility." @${ECHO_MSG} -.endif # defined(WITH_MOTIF) +.endif # defined(WITHOUT_MOTIF) post-extract: @${ECHO} "#!/bin/sh" > ${WRKSRC}/mkpamserv |