diff options
author | will <will@FreeBSD.org> | 2002-01-05 02:29:15 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-01-05 02:29:15 +0000 |
commit | 505481ccf3bef290cc1f4bc479f1301fcdf862b6 (patch) | |
tree | 91d4e03368661bbc9e9b31f090129fb7c61b5839 /math | |
parent | 6197c75904d4e9a34849cea83c831f9290990e21 (diff) | |
download | FreeBSD-ports-505481ccf3bef290cc1f4bc479f1301fcdf862b6.zip FreeBSD-ports-505481ccf3bef290cc1f4bc479f1301fcdf862b6.tar.gz |
Conditionalize use of objprelink based on whether we're running on
MACHINE_ARCH=i386 *and* whether NO_KDE_OBJPRELINK is defined.
Requested by: several
Diffstat (limited to 'math')
-rw-r--r-- | math/kcalc/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index 508f22d..80195de 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/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 |