diff options
author | marcus <marcus@FreeBSD.org> | 2004-02-06 12:06:14 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-02-06 12:06:14 +0800 |
commit | 5127ee7af50123129a77edaf9dcd4772b6dacabf (patch) | |
tree | 88f8845ff8640bb565f14aeb1ced001e2083c222 /editors | |
parent | e935fd8f1992d506841027f3ca9276c085b9afe7 (diff) | |
download | freebsd-ports-gnome-5127ee7af50123129a77edaf9dcd4772b6dacabf.tar.gz freebsd-ports-gnome-5127ee7af50123129a77edaf9dcd4772b6dacabf.tar.zst freebsd-ports-gnome-5127ee7af50123129a77edaf9dcd4772b6dacabf.zip |
Optionally depend on AbiWord based on whether or not we think it will build
on the given architecture.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gnome2-office/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editors/gnome2-office/Makefile b/editors/gnome2-office/Makefile index 6bef4a8c64be..8f1f3928ac20 100644 --- a/editors/gnome2-office/Makefile +++ b/editors/gnome2-office/Makefile @@ -20,11 +20,16 @@ RUN_DEPENDS= gnumeric:${PORTSDIR}/math/gnumeric2 \ dia:${PORTSDIR}/graphics/dia \ glabels:${PORTSDIR}/deskutils/glabels \ evolution:${PORTSDIR}/mail/evolution \ - AbiWord-2.0:${PORTSDIR}/editors/AbiWord2 \ mergeant:${PORTSDIR}/databases/mergeant NO_BUILD= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} != "alpha" || ${OSVERSION} >= 500000 +RUN_DEPENDS+= AbiWord-2.0:${PORTSDIR}/editors/AbiWord2 +.endif + do-install: # empty -.include <bsd.port.mk> +.include <bsd.port.post.mk> |