diff options
author | tonio <tonio@pkgsrc.org> | 2006-01-08 14:13:48 +0000 |
---|---|---|
committer | tonio <tonio@pkgsrc.org> | 2006-01-08 14:13:48 +0000 |
commit | a5a34197c1f42b8749a1bb5ec016523f66ab2796 (patch) | |
tree | 609945b300f429b7cd2e6687e960b291cef7efbf | |
parent | 4e16ed9aebaec0e0b1d0aad4e886dd1528de1780 (diff) | |
download | pkgsrc-a5a34197c1f42b8749a1bb5ec016523f66ab2796.tar.gz |
do not use tex.buildlink3.mk when the only accepted version is teTeX1, to
allow bulk build to create packages
-rw-r--r-- | print/teTeX/module.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/print/teTeX/module.mk b/print/teTeX/module.mk index e3514c2f02d..7dc8d834887 100644 --- a/print/teTeX/module.mk +++ b/print/teTeX/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.7 2005/12/29 06:22:07 jlam Exp $ +# $NetBSD: module.mk,v 1.8 2006/01/08 14:13:48 tonio Exp $ # # This Makefile fragment is intended to be included by packages that # install TeX packages. It takes care of rebuilding the ls-R database @@ -32,6 +32,12 @@ DEINSTALL_EXTRA_TMPL+= ../../print/teTeX/files/texmf.tmpl PRINT_PLIST_AWK+= /^(@dirrm )?${PKG_LOCALTEXMFPREFIX:S|${PREFIX}/||:S|/|\\/|g}(\/ls-R)?$$/ \ { next; } +# do not use tex.buildlink3.mk when the only accepted version is teTeX1, to +# allow bulk build to create packages +.if ${TEX_ACCEPTED} == "teTeX1" +.include "../../print/teTeX1-bin/buildlink3.mk" +.else .include "../../mk/tex.buildlink3.mk" +.endif .endif # TEX_PACKAGE_MK |