diff options
author | Jim Mock <jim@FreeBSD.org> | 2000-10-16 21:33:01 +0000 |
---|---|---|
committer | Jim Mock <jim@FreeBSD.org> | 2000-10-16 21:33:01 +0000 |
commit | 71f3afc8ec46478cb5def43c8f122bacfba235d0 (patch) | |
tree | 7e66b857c74b1060f1c8ecfd103bbca1a4a05dfa /textproc/sgmlformat/Makefile | |
parent | ed0e1375ea67953bc38556f86f703f59a3907425 (diff) | |
download | ports-71f3afc8ec46478cb5def43c8f122bacfba235d0.tar.gz ports-71f3afc8ec46478cb5def43c8f122bacfba235d0.zip |
Make this play nice when WITH_OPENJADE is defined.
Ok'd by: nik
Notes
Notes:
svn path=/head/; revision=33908
Diffstat (limited to 'textproc/sgmlformat/Makefile')
-rw-r--r-- | textproc/sgmlformat/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/textproc/sgmlformat/Makefile b/textproc/sgmlformat/Makefile index c2eb52c32a03..3430aecff124 100644 --- a/textproc/sgmlformat/Makefile +++ b/textproc/sgmlformat/Makefile @@ -24,8 +24,16 @@ RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/sp RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/jade .endif +.if defined(WITH_OPENJADE) +RUN_DEPENDS= onsgmls:${PORTSDIR}/textproc/openjade +.endif + +.if ${MACHINE_ARCH} == "alpha" +WITH_OPENJADE= yes +.endif + RUN_DEPENDS+= ${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \ - ${PREFIX}/share/sgml/docbook:${PORTSDIR}/textproc/docbook \ + ${PREFIX}/share/sgml/docbook:${PORTSDIR}/textproc/docbook USE_PERL5= yes |