pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/teTeX Handle packages that only accept teTeX2 si...
details: https://anonhg.NetBSD.org/pkgsrc/rev/b547b13ea807
branches: trunk
changeset: 506267:b547b13ea807
user: wiz <wiz%pkgsrc.org@localhost>
date: Fri Jan 13 17:56:43 2006 +0000
description:
Handle packages that only accept teTeX2 similarly to ones
that only accept teTeX2; should fix ja-ptex-share bulk build.
diffstat:
print/teTeX/module.mk | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diffs (24 lines):
diff -r d00be3fa224e -r b547b13ea807 print/teTeX/module.mk
--- a/print/teTeX/module.mk Fri Jan 13 17:55:27 2006 +0000
+++ b/print/teTeX/module.mk Fri Jan 13 17:56:43 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: module.mk,v 1.10 2006/01/10 13:25:01 tonio Exp $
+# $NetBSD: module.mk,v 1.11 2006/01/13 17:56:43 wiz 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,10 +32,12 @@
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
+# do not use tex.buildlink3.mk when the only accepted version is teTeX1 or teTeX2, to
# allow bulk build to create packages
-.if defined(TEX_ACCEPTED) && (${TEX_ACCEPTED} == "teTeX1")
+.if defined(TEX_ACCEPTED) && ${TEX_ACCEPTED} == "teTeX1"
.include "../../print/teTeX1-bin/buildlink3.mk"
+.elif defined(TEX_ACCEPTED) && ${TEX_ACCEPTED} == "teTeX2"
+.include "../../print/teTeX-bin/buildlink3.mk"
.else
.include "../../mk/tex.buildlink3.mk"
.endif
Home |
Main Index |
Thread Index |
Old Index