summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron>2006-01-09 11:59:55 +0000
committertron <tron>2006-01-09 11:59:55 +0000
commit168a91bc8e95083252648756f216eee05af9d809 (patch)
tree99e42baca4ab9f2bda8b34b88d01a962c9563450
parente6cf08a14cf08ed9de1db692401f7fc97a4c25c1 (diff)
downloadpkgsrc-168a91bc8e95083252648756f216eee05af9d809.tar.gz
Patch the "texconfig-dialog" script (patching the "texconfig" script
doesn't help any more) so it calls the "dialog" program without requiring the "DIALOG_PROG" environment variable to be set. Bump package revision because of this fix.
-rw-r--r--print/teTeX3-bin/Makefile4
-rw-r--r--print/teTeX3-bin/distinfo3
-rw-r--r--print/teTeX3-bin/patches/patch-ac20
3 files changed, 24 insertions, 3 deletions
diff --git a/print/teTeX3-bin/Makefile b/print/teTeX3-bin/Makefile
index badbf254c7b..b82fa5e38d5 100644
--- a/print/teTeX3-bin/Makefile
+++ b/print/teTeX3-bin/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2005/11/15 07:00:08 minskim Exp $
+# $NetBSD: Makefile,v 1.12 2006/01/09 11:59:55 tron Exp $
DISTNAME= tetex-src-3.0
PKGNAME= ${DISTNAME:C/tetex/teTeX/:C/src/bin/}
-PKGREVISION= 4
+PKGREVISION= 5
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=systems/unix/teTeX/3.0/distrib/}
diff --git a/print/teTeX3-bin/distinfo b/print/teTeX3-bin/distinfo
index 1577acbf438..18594d13346 100644
--- a/print/teTeX3-bin/distinfo
+++ b/print/teTeX3-bin/distinfo
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.2 2005/05/25 13:35:26 wiz Exp $
+$NetBSD: distinfo,v 1.3 2006/01/09 11:59:55 tron Exp $
SHA1 (teTeX/tetex-src-3.0.tar.gz) = 7637789f7f4929694aed1b89820f5bad4753e8fc
RMD160 (teTeX/tetex-src-3.0.tar.gz) = 15a139f5f36993e4ed3583260e175cfb13ce7bcc
Size (teTeX/tetex-src-3.0.tar.gz) = 12749314 bytes
SHA1 (patch-aa) = 77feabef32c612ac5d0250b1e4db50a3fc497990
SHA1 (patch-ab) = af4e90102afeb6e6dbd46ffbec51e14dd6d4fed5
+SHA1 (patch-ac) = af7d8c65cece55b7f37e7cf3c99c85e75cb911a1
SHA1 (patch-ad) = 23d8e8729bc10748cceba5be3272484ab50f34e6
SHA1 (patch-ae) = 68825699db129b82f476c37ba3b6e20a8831ad6e
SHA1 (patch-af) = d5fd0e1b30b1ea9fd96fe5983088df5a723f04b7
diff --git a/print/teTeX3-bin/patches/patch-ac b/print/teTeX3-bin/patches/patch-ac
new file mode 100644
index 00000000000..aa5c425e39f
--- /dev/null
+++ b/print/teTeX3-bin/patches/patch-ac
@@ -0,0 +1,20 @@
+$NetBSD: patch-ac,v 1.1 2006/01/09 11:59:55 tron Exp $
+
+--- texk/tetex/texconfig-dialog.orig 2005-02-01 21:00:42.000000000 +0000
++++ texk/tetex/texconfig-dialog 2006-01-09 11:47:52.000000000 +0000
+@@ -82,14 +82,7 @@
+ runDialog()
+ {
+ termCtl clear
+- if test -n "$DIALOG_PROG"; then
+- $DIALOG_PROG --title "TeX setup utility" ${1+"$@"}
+- runDialogRc=$?
+- else
+- TERM=$DIALOG_TERM TERMINFO=$DIALOG_TERMINFO \
+- tcdialog --title "TeX setup utility" ${1+"$@"}
+- runDialogRc=$?
+- fi
++ dialog --title "TeX setup utility" ${1+"$@"}
+ termCtl clear
+ (exit $runDialogRc)
+ return $runDialogRc