diff options
author | Will Andrews <will@FreeBSD.org> | 2002-01-05 02:29:15 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-01-05 02:29:15 +0000 |
commit | 06517618a812d2a1631079a20caf7f3450155bad (patch) | |
tree | 78d48542d953726af080bfe301c2607b5d780984 /x11-clocks/kdetoys3 | |
parent | 84a76d28958c9ce909d0e88281e6b8f2384ab39e (diff) | |
download | ports-06517618a812d2a1631079a20caf7f3450155bad.tar.gz ports-06517618a812d2a1631079a20caf7f3450155bad.zip |
Notes
Diffstat (limited to 'x11-clocks/kdetoys3')
-rw-r--r-- | x11-clocks/kdetoys3/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/x11-clocks/kdetoys3/Makefile b/x11-clocks/kdetoys3/Makefile index 58ddc6efd892..107fa7c5aaa2 100644 --- a/x11-clocks/kdetoys3/Makefile +++ b/x11-clocks/kdetoys3/Makefile @@ -15,14 +15,19 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= autoconf213:${PORTSDIR}/devel/autoconf213 \ - automake14:${PORTSDIR}/devel/automake14 \ - objprelink:${PORTSDIR}/devel/objprelink + automake14:${PORTSDIR}/devel/automake14 +.if ${MACHINE_ARCH} == "i386" && !defined(NO_KDE_OBJPRELINK) +BUILD_DEPENDS+= objprelink:${PORTSDIR}/devel/objprelink +.endif USE_KDELIBS_VER=2 MOC?= ${X11BASE}/bin/moc2 USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-qt-dir=${X11BASE} --enable-objprelink +CONFIGURE_ARGS+=--with-qt-dir=${X11BASE} +.if ${MACHINE_ARCH} == "i386" && !defined(NO_KDE_OBJPRELINK) +CONFIGURE_ARGS+=--enable-objprelink +.endif .if defined(PARALLEL_PACKAGE_BUILD) || defined(WANT_KDE_FINAL) CONFIGURE_ARGS+=--enable-final .endif |