diff options
author | Will Andrews <will@FreeBSD.org> | 2002-03-30 09:07:53 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-03-30 09:07:53 +0000 |
commit | 97e6d164088095904ab49eafe23f9e1c67c494de (patch) | |
tree | 2a01fc85decccff8ce009661334e22692c899251 /audio/kdemultimedia3 | |
parent | Update to 0.5.0. (diff) |
Fix the KDE ports to not use objprelink, if OSVERSION >= 500029. This is
not tested other than for syntax, but should DTRT from what I understand
of the problem.
Submitted by: bento
Diffstat (limited to 'audio/kdemultimedia3')
-rw-r--r-- | audio/kdemultimedia3/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/audio/kdemultimedia3/Makefile b/audio/kdemultimedia3/Makefile index ddaa492bc2ef..d67ccbedea49 100644 --- a/audio/kdemultimedia3/Makefile +++ b/audio/kdemultimedia3/Makefile @@ -28,14 +28,17 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \ --with-qt-libraries=${X11BASE}/lib -_NO_KDE_FINAL= yes -.include "${.CURDIR}/../../x11/kde2/Makefile.kde" - USE_GMAKE= yes MAKE_ENV= ${CONFIGURE_ENV} .include <bsd.port.pre.mk> +_NO_KDE_FINAL= yes +.if ${OSVERSION} >= 500029 +_NO_KDE_OBJPRELINK=yes +.endif +.include "${.CURDIR}/../../x11/kde2/Makefile.kde" + pre-configure: ${PERL} -pi -e "s@all_includes=\"@all_includes=\"-I/usr/include @g" \ ${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 |