diff options
Diffstat (limited to 'security/kwallet/Makefile')
-rw-r--r-- | security/kwallet/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/security/kwallet/Makefile b/security/kwallet/Makefile index 508f22d74d90..80195deac0fa 100644 --- a/security/kwallet/Makefile +++ b/security/kwallet/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 USE_BZIP2= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-objprelink +CONFIGURE_ARGS?= +.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 |