[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: update: tetex - please test
- To: ports_(_at_)_openbsd_(_dot_)_org
- Subject: Re: update: tetex - please test
- From: Nikolay Sturm <sturm_(_at_)_sec_(_dot_)_informatik_(_dot_)_tu-darmstadt_(_dot_)_de>
- Date: Thu, 3 Apr 2003 10:21:41 +0200
- Mail-followup-to: ports_(_at_)_openbsd_(_dot_)_org
- Organization: Fnord!
* Nikolay Sturm [2003-04-02]:
> Comments, especially about this new setup mechanism, are greatly
> appreciated.
Gabriel Kihlman noted that I had different pathes for tetex.cfg in
Makefile and INSTALL. The attached patch is an updated version of the
original patch.
bye and thanks,
Nikolay
diff -uNr --exclude=CVS teTeX/Makefile teTeX.new/Makefile
--- teTeX/Makefile Tue Feb 18 17:04:49 2003
+++ teTeX.new/Makefile Sat Mar 15 22:37:49 2003
@@ -2,5 +2,6 @@
SUBDIR += texmf
SUBDIR += base
+SUBDIR += base,no_x11
.include <bsd.port.subdir.mk>
diff -uNr --exclude=CVS teTeX/base/Makefile teTeX.new/base/Makefile
--- teTeX/base/Makefile Wed Feb 19 13:14:45 2003
+++ teTeX.new/base/Makefile Wed Apr 2 21:19:57 2003
@@ -2,9 +2,9 @@
COMMENT= "TeX distribution, executables"
-VERSION= 2.0.1
+VERSION= 2.0.2
DISTNAME= tetex-base-${VERSION}
-PKGNAME= ${DISTNAME:S/tetex-/teTeX_/}p0
+PKGNAME= ${DISTNAME:S/tetex-/teTeX_/}
CATEGORIES= print
DISTFILES= tetex-src-${VERSION}.tar.gz
@@ -30,31 +30,21 @@
--with-pnglib-include=${PREFIX}/include/libpng \
--with-system-zlib
-FLAVORS= a4 no_x11
+FLAVORS= no_x11
FLAVOR?=
.if ${FLAVOR:L:Mno_x11}
CONFIGURE_ARGS+=--without-x
-. if ${FLAVOR:L:Ma4}
-CONFIGURE_ARGS+=--enable-a4
-. else
-CONFIGURE_ARGS+=--disable-a4
-. endif
.else
CONFIGURE_ARGS+=--with-system-t1lib \
--with-t1lib-libdir=${PREFIX}/lib \
--with-t1lib-include=${PREFIX}/include
LIB_DEPENDS+= t1.4::devel/t1lib
-USE_X11= Yes
-. if ${FLAVOR:L:Ma4}
-CONFIGURE_ARGS+=--enable-a4
-RUN_DEPENDS+= :ghostscript-*:print/ghostscript/gnu,a4
-. else
-CONFIGURE_ARGS+=--disable-a4
RUN_DEPENDS+= :ghostscript-*:print/ghostscript/gnu
-. endif
+USE_X11= Yes
.endif
WRKDIST= ${WRKDIR}/${DISTNAME:S/base/src/}
+TETEX_EXDIR= ${PREFIX}/share/examples/teTeX
# find texmf after fake
REGRESS_FLAGS= DESTDIR="${WRKINST}"
@@ -69,6 +59,13 @@
lndir ${TRUEPREFIX}/share/texmf ${TEXMF_DIR}
# mktexlsr is too smart for its own good
rm ${TEXMF_DIR}/ls-R
+
+post-install:
+ ${INSTALL_DATA_DIR} ${TETEX_EXDIR}
+ ${INSTALL_DATA} files/tetex.cfg ${TETEX_EXDIR}/tetex.cfg
+ ${INSTALL_SCRIPT} files/tetex_setup.sh ${PREFIX}/bin/tetex_setup
+ @perl -i -pe "s#%%SYSCONFDIR%%#${SYSCONFDIR}#;" \
+ -e "s#%%PREFIX%%#${TRUEPREFIX}#;" ${PREFIX}/bin/tetex_setup
# need the texmf part visible...
pre-regress: fake
diff -uNr --exclude=CVS teTeX/base/distinfo teTeX.new/base/distinfo
--- teTeX/base/distinfo Tue Feb 18 17:04:49 2003
+++ teTeX.new/base/distinfo Sat Mar 15 22:37:49 2003
@@ -1,3 +1,3 @@
-MD5 (teTeX/tetex-src-2.0.1.tar.gz) = 7291500481ca3f129026b91b1b6fa52e
-RMD160 (teTeX/tetex-src-2.0.1.tar.gz) = ad7ec64cbe9d90aadf21b7985638d925dbfe8970
-SHA1 (teTeX/tetex-src-2.0.1.tar.gz) = cdd6bd2d7f1b2b39aabd28b5b08d68f7c8a80422
+MD5 (teTeX/tetex-src-2.0.2.tar.gz) = a16f6bba227d55e79aeee46fbbd82d28
+RMD160 (teTeX/tetex-src-2.0.2.tar.gz) = 9bbb274c0598547bcecb00ff48e459d41bc65e93
+SHA1 (teTeX/tetex-src-2.0.2.tar.gz) = 6445206b14d659458ee352df78d2c2daf8e88ab3
diff -uNr --exclude=CVS teTeX/base/files/tetex.cfg teTeX.new/base/files/tetex.cfg
--- teTeX/base/files/tetex.cfg Thu Jan 1 01:00:00 1970
+++ teTeX.new/base/files/tetex.cfg Wed Apr 2 20:53:12 2003
@@ -0,0 +1,23 @@
+# $OpenBSD:$
+
+# teTeX is normally configured interactively through the use of
+# texconfig. To make your configuration persistent between updates
+# of teTeX, this port (and NOT teTeX itself!) contains this simplified
+# configuration file, which is parsed by tetex_setup. If you have any
+# questions or suggestions for improvement, please contact the
+# MAINTAINER of this port.
+
+# Any changes made to this file will only take effect, when running
+# tetex_setup! You have to run tetex_setup everytime you install the
+# port.
+
+# for a list of supported modes, run "texconfig mode"
+MODE="ljfour"
+
+# for a list of supported papersizes, run "texconfig xdvi"
+PAPERSIZE="a4"
+
+# For printing, the output will be piped to DVIPS_PRINTCMD.
+# Typically, DVIPS_PRINTCMD is set to "lpr" or "lpr -P foo".
+# Set to "-" to disable direct printing.
+DVIPS_PRINTCMD="-"
diff -uNr --exclude=CVS teTeX/base/files/tetex_setup.sh teTeX.new/base/files/tetex_setup.sh
--- teTeX/base/files/tetex_setup.sh Thu Jan 1 01:00:00 1970
+++ teTeX.new/base/files/tetex_setup.sh Wed Apr 2 19:44:18 2003
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# $OpenBSD:$
+#
+
+. %%SYSCONFDIR%%/tetex.cfg
+
+TEXCONFIG=%%PREFIX%%/bin/texconfig
+
+if [ "X${MODE}" != "X" ]; then
+ $TEXCONFIG mode $MODE
+ $TEXCONFIG dvips mode $MODE
+fi
+
+if [ "X${PAPERSIZE}" != "X" ]; then
+ $TEXCONFIG xdvi $PAPERSIZE
+ $TEXCONFIG dvips paper $PAPERSIZE
+ $TEXCONFIG dvipdfm paper $PAPERSIZE
+ $TEXCONFIG pdftex paper $PAPERSIZE
+fi
+
+if [ "X${DVIPS_PRINTCMD}" != "X" ]; then
+ $TEXCONFIG dvips printcmd $DVIPS_PRINTCMD
+fi
diff -uNr --exclude=CVS teTeX/base/pkg/DEINSTALL teTeX.new/base/pkg/DEINSTALL
--- teTeX/base/pkg/DEINSTALL Tue Feb 18 17:04:50 2003
+++ teTeX.new/base/pkg/DEINSTALL Wed Apr 2 20:05:31 2003
@@ -6,6 +6,7 @@
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
+CONFIG=${SYSCONFDIR}/tetex.cfg
TEXMFCNF=$PREFIX/share/texmf/web2c/texmf.cnf
if [ -f $TEXMFCNF ]; then
@@ -18,9 +19,10 @@
echo "| Your $TEXMFCNF file has been"
echo "| preserved as $TEXMFCNF.old."
echo "| To completely deinstall the $1 package you need to"
- echo "| perform this step as root:"
+ echo "| perform these steps as root:"
echo "|"
echo "| rm -f $TEXMFCNF.old"
+ echo "| rm -f $CONFIG"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
diff -uNr --exclude=CVS teTeX/base/pkg/DESCR teTeX.new/base/pkg/DESCR
--- teTeX/base/pkg/DESCR Tue Feb 18 17:04:50 2003
+++ teTeX.new/base/pkg/DESCR Wed Apr 2 20:23:41 2003
@@ -3,8 +3,12 @@
you need for happy TeX'ing. For more information have a look at
the lengthy FEATURES file of the distribution.
+This port comes with a simplified setup procedure. See
+SYSCONFDIR/tetex.cfg for details. This procedure is NOT part of the
+official teTeX distribution, so send all questions regarding tetex.cfg
+or tetex_setup to the MAINTAINER of this port!
+
FLAVORS:
- a4 -- use a4/cm instead of letter/in
no_x11 -- no support for x11
WWW: ${HOMEPAGE}
diff -uNr --exclude=CVS teTeX/base/pkg/INSTALL teTeX.new/base/pkg/INSTALL
--- teTeX/base/pkg/INSTALL Tue Feb 18 17:04:50 2003
+++ teTeX.new/base/pkg/INSTALL Thu Apr 3 10:06:21 2003
@@ -8,6 +8,7 @@
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
+CONFIG=${SYSCONFDIR}/tetex.cfg
TEXMFCNF=$PREFIX/share/texmf/web2c/texmf.cnf
do_prenotice()
@@ -16,20 +17,10 @@
echo "+---------------"
}
-do_notice()
-{
- echo "| Run $PREFIX/bin/texconfig to adjust for your local"
- echo "| environment."
- echo "+---------------"
- echo
-}
-
-do_install()
+do_texmf_cnf_install()
{
mv $TEXMFCNF $TEXMFCNF.dist
mv $TEXMFCNF.old $TEXMFCNF
- echo
- echo "+---------------"
echo "| The existing $TEXMFCNF.old has been"
echo "| installed as $TEXMFCNF. You may want"
echo "| to compare it to the distribution's file"
@@ -38,6 +29,29 @@
echo "|"
}
+do_tetex_cfg_install()
+{
+ cp -p $PREFIX/share/examples/teTeX/tetex.cfg $CONFIG
+}
+
+do_tetex_cfg_notice()
+{
+ echo "| The existing configuration file $CONFIG has not been updated."
+ echo "| You may want to compare it to the distribution's file"
+ echo "| $PREFIX/share/examples/teTeX/tetex.cfg and update"
+ echo "| your configuration as needed."
+ echo "|"
+}
+
+do_notice()
+{
+ echo "| Run $PREFIX/bin/texconfig to adjust for your local"
+ echo "| environment or see $CONFIG."
+ echo "+---------------"
+ echo
+}
+
+
# verify proper execution
#
if [ $# -ne 2 ]; then
@@ -52,10 +66,14 @@
: nothing to pre-install for this port
;;
POST-INSTALL)
+ do_prenotice
if [ -f $TEXMFCNF.old ]; then
- do_install $1
+ do_texmf_cnf_install $1
+ fi
+ if [ -f $CONFIG ]; then
+ do_tetex_cfg_notice
else
- do_prenotice
+ do_tetex_cfg_install
fi
do_notice
;;
diff -uNr --exclude=CVS teTeX/base/pkg/PLIST teTeX.new/base/pkg/PLIST
--- teTeX/base/pkg/PLIST Wed Feb 19 12:42:50 2003
+++ teTeX.new/base/pkg/PLIST Wed Apr 2 21:20:48 2003
@@ -1,4 +1,4 @@
-_(_at_)_comment $OpenBSD: PLIST,v 1.11 2003/02/19 11:42:50 sturm Exp $
+_(_at_)_comment $OpenBSD$
@pkgcfl dvipdfm-*
!%%no_x11%%
@unexec install-info --delete --info-dir=%D/info %D/info/dvips.info
@@ -110,12 +110,13 @@
bin/ps2frag
bin/ps2pk
bin/pslatex
-bin/readlink
+_(_at_)_comment bin/readlink
bin/rubibtex
bin/rumakeindex
@comment bin/t1mapper
bin/tangle
bin/tcdialog
+bin/tetex_setup
bin/tex
bin/texconfig
bin/texdoc
@@ -250,9 +251,11 @@
man/man1/inimpost.1
man/man1/iniomega.1
man/man1/initex.1
+man/man1/kpsepath.1
man/man1/kpsestat.1
man/man1/kpsetool.1
man/man1/kpsewhich.1
+man/man1/kpsexpand.1
man/man1/lambda.1
man/man1/latex.1
man/man1/mag.1
@@ -284,7 +287,7 @@
man/man1/ps2frag.1
man/man1/ps2pk.1
man/man1/pslatex.1
-man/man1/readlink.1
+_(_at_)_comment man/man1/readlink.1
man/man1/rubibtex.1
man/man1/rumakeindex.1
@comment man/man1/t1mapper.1
@@ -317,6 +320,7 @@
man/man8/fmtutil.8
man/man8/mkfontdesc.8
man/man8/texlinks.8
+share/examples/teTeX/tetex.cfg
share/texmf/doc/tetex/TETEXDOC.dvi
share/texmf/doc/tetex/TETEXDOC.pdf
share/texmf/doc/tetex/TETEXDOC.ps
@@ -365,7 +369,6 @@
share/texmf/web2c/mf.log
share/texmf/web2c/mf.pool
@comment share/texmf/web2c/mfw.base
-_(_at_)_comment share/texmf/web2c/mfw.log
share/texmf/web2c/mktex.opt
share/texmf/web2c/mktexdir
share/texmf/web2c/mktexdir.opt
@@ -410,6 +413,7 @@
@comment no checksum
share/texmf/web2c/texmf.cnf
@comment share/texmf/xdvi/xdvi.cfg
+_(_at_)_dirrm share/examples/teTeX
@dirrm share/texmf/texconfig/x
@dirrm share/texmf/texconfig/v
@dirrm share/texmf/texconfig/g
diff -uNr --exclude=CVS teTeX/texmf/Makefile teTeX.new/texmf/Makefile
--- teTeX/texmf/Makefile Wed Feb 19 13:14:45 2003
+++ teTeX.new/texmf/Makefile Sat Mar 15 22:37:49 2003
@@ -2,7 +2,7 @@
COMMENT= "TeX distribution, common support files"
-DISTNAME= tetex-texmf-2.0.1
+DISTNAME= tetex-texmf-2.0.2
PKGNAME= ${DISTNAME:S/tetex-/teTeX_/}
CATEGORIES= print
@@ -16,6 +16,6 @@
do-install:
@${INSTALL_DATA_DIR} ${TEXMF_DIR}
@cd ${TEXMF_DIR} && tar zxf ${FULLDISTDIR}/${DISTFILES}
- @perl -pi -e "s/zcat/gzcat/" ${TEXMF_DIR}/dvipdfm/config
+ @perl -pi -e "s/zcat/gzcat/" ${TEXMF_DIR}/dvipdfm/config/config
.include <bsd.port.mk>
diff -uNr --exclude=CVS teTeX/texmf/distinfo teTeX.new/texmf/distinfo
--- teTeX/texmf/distinfo Tue Feb 18 17:04:50 2003
+++ teTeX.new/texmf/distinfo Sat Mar 15 22:37:49 2003
@@ -1,3 +1,3 @@
-MD5 (teTeX/tetex-texmf-2.0.1.tar.gz) = 6fe5d77a3f4fe491eda9d4c74654bd0f
-RMD160 (teTeX/tetex-texmf-2.0.1.tar.gz) = e1b0aa2bf83525499df9821e743a0987cf2566a3
-SHA1 (teTeX/tetex-texmf-2.0.1.tar.gz) = e66fada16623da7565ed69dc8ee54b693cb211c4
+MD5 (teTeX/tetex-texmf-2.0.2.tar.gz) = d3bdb96f9077e43b2115d3cc471743b3
+RMD160 (teTeX/tetex-texmf-2.0.2.tar.gz) = ff88622c2d97416a4f67fbdf7a00d837af35d94e
+SHA1 (teTeX/tetex-texmf-2.0.2.tar.gz) = 9ad88d5fc1df7e10b3538f7b5e3871ceefe8ee2f
diff -uNr --exclude=CVS teTeX/texmf/pkg/PLIST teTeX.new/texmf/pkg/PLIST
--- teTeX/texmf/pkg/PLIST Tue Feb 18 17:04:50 2003
+++ teTeX.new/texmf/pkg/PLIST Sat Mar 15 22:37:49 2003
@@ -1,4 +1,4 @@
-_(_at_)_comment $OpenBSD: PLIST,v 1.7 2003/02/18 16:04:50 sturm Exp $
+_(_at_)_comment $OpenBSD$
@pkgcfl dvipdfm-*
share/texmf/ChangeLog
share/texmf/LICENSE.texmf
@@ -28,6 +28,9 @@
share/texmf/bibtex/bst/germbib/gerapali.bst
share/texmf/bibtex/bst/germbib/gerplain.bst
share/texmf/bibtex/bst/germbib/gerunsrt.bst
+share/texmf/bibtex/bst/jurabib/jurabib.bst
+share/texmf/bibtex/bst/jurabib/jureco.bst
+share/texmf/bibtex/bst/jurabib/jurunsrt.bst
share/texmf/bibtex/bst/misc/acm.bst
share/texmf/bibtex/bst/natbib/abbrvnat.bst
share/texmf/bibtex/bst/natbib/plainnat.bst
@@ -591,6 +594,7 @@
share/texmf/doc/help/Catalogue/entries/bitstrea.html
share/texmf/doc/help/Catalogue/entries/bizcard.html
share/texmf/doc/help/Catalogue/entries/blackboard.html
+share/texmf/doc/help/Catalogue/entries/blackletter1.html
share/texmf/doc/help/Catalogue/entries/blkarray.html
share/texmf/doc/help/Catalogue/entries/blkcntrl.html
share/texmf/doc/help/Catalogue/entries/block.html
@@ -712,6 +716,7 @@
share/texmf/doc/help/Catalogue/entries/context.html
share/texmf/doc/help/Catalogue/entries/contour.html
share/texmf/doc/help/Catalogue/entries/cooking.html
+share/texmf/doc/help/Catalogue/entries/corelfonts.html
share/texmf/doc/help/Catalogue/entries/corelpak.html
share/texmf/doc/help/Catalogue/entries/count1to.html
share/texmf/doc/help/Catalogue/entries/covfonts.html
@@ -877,6 +882,7 @@
share/texmf/doc/help/Catalogue/entries/euxm.html
share/texmf/doc/help/Catalogue/entries/everysel.html
share/texmf/doc/help/Catalogue/entries/everyshi.html
+share/texmf/doc/help/Catalogue/entries/evweek.html
share/texmf/doc/help/Catalogue/entries/exam.html
share/texmf/doc/help/Catalogue/entries/examdesign.html
share/texmf/doc/help/Catalogue/entries/exams.html
@@ -907,6 +913,7 @@
share/texmf/doc/help/Catalogue/entries/feynmf.html
share/texmf/doc/help/Catalogue/entries/fig2sty.html
share/texmf/doc/help/Catalogue/entries/figcaps.html
+share/texmf/doc/help/Catalogue/entries/figfrag.html
share/texmf/doc/help/Catalogue/entries/fihyph.html
share/texmf/doc/help/Catalogue/entries/filecontents.html
share/texmf/doc/help/Catalogue/entries/filehdr.html
@@ -1189,6 +1196,7 @@
share/texmf/doc/help/Catalogue/entries/lshort-russian.html
share/texmf/doc/help/Catalogue/entries/lshort-slovak.html
share/texmf/doc/help/Catalogue/entries/lshort-spanish.html
+share/texmf/doc/help/Catalogue/entries/lshort-ukr.html
share/texmf/doc/help/Catalogue/entries/ltablex.html
share/texmf/doc/help/Catalogue/entries/ltnews.html
share/texmf/doc/help/Catalogue/entries/ltoh.html
@@ -1556,6 +1564,7 @@
share/texmf/doc/help/Catalogue/entries/scalefnt.html
share/texmf/doc/help/Catalogue/entries/schedule.html
share/texmf/doc/help/Catalogue/entries/scientificviewer.html
+share/texmf/doc/help/Catalogue/entries/sciwordconv.html
share/texmf/doc/help/Catalogue/entries/script.html
share/texmf/doc/help/Catalogue/entries/scrnger.html
share/texmf/doc/help/Catalogue/entries/secdot.html
@@ -2421,8 +2430,6 @@
share/texmf/doc/latex/floatflt/floatflt.dvi
share/texmf/doc/latex/footmisc/README
share/texmf/doc/latex/footmisc/footmisc.dvi
-share/texmf/doc/latex/g-brief/beispiel.tex
-share/texmf/doc/latex/g-brief/g-brief.dvi
share/texmf/doc/latex/general/a.ps
share/texmf/doc/latex/general/guide.dvi
share/texmf/doc/latex/general/guide.ps
@@ -2450,6 +2457,12 @@
share/texmf/doc/latex/images/redball.gif
share/texmf/doc/latex/jknappen/mathbbol.rme
share/texmf/doc/latex/jknappen/mathrsfs.rme
+share/texmf/doc/latex/jurabib/jb-bibtex-ref.html
+share/texmf/doc/latex/jurabib/jb-com-ref.html
+share/texmf/doc/latex/jurabib/jb-opt-ref.html
+share/texmf/doc/latex/jurabib/jbendoc.dvi
+share/texmf/doc/latex/jurabib/jbgerdoc.dvi
+share/texmf/doc/latex/jurabib/jurabib-faq.dvi
share/texmf/doc/latex/koma-script/INSTALL.TXT
share/texmf/doc/latex/koma-script/INSTALLD.TXT
share/texmf/doc/latex/koma-script/LEGAL.TXT
@@ -2717,6 +2730,8 @@
share/texmf/doc/latex/lettrine/00README
share/texmf/doc/latex/lettrine/demo.pdf
share/texmf/doc/latex/lettrine/lettrine.dvi
+share/texmf/doc/latex/listings/README
+share/texmf/doc/latex/listings/listings.dvi
share/texmf/doc/latex/mathtime/0readme
share/texmf/doc/latex/mathtime/mathtime.dvi
share/texmf/doc/latex/mdwtools/COPYING
@@ -2788,12 +2803,12 @@
share/texmf/doc/latex/pb-diagram/pb-manual.aux
share/texmf/doc/latex/pb-diagram/pb-manual.dvi
share/texmf/doc/latex/pb-diagram/pb-manual.tex
-share/texmf/doc/latex/pdfpages/README
share/texmf/doc/latex/pdfpages/dummy-l.pdf
share/texmf/doc/latex/pdfpages/dummy.pdf
share/texmf/doc/latex/pdfpages/pdf-ex.tex
share/texmf/doc/latex/pdfpages/pdf-hyp.tex
share/texmf/doc/latex/pdfpages/pdfpages.dvi
+share/texmf/doc/latex/pdfpages/readme
share/texmf/doc/latex/platex/00readme
share/texmf/doc/latex/platex/conowego.txt
share/texmf/doc/latex/platex/czytaj.txt
@@ -2903,6 +2918,8 @@
share/texmf/doc/latex/styles/mathcomp.dvi
share/texmf/doc/latex/styles/mflogo.dvi
share/texmf/doc/latex/styles/moreverb.dvi
+share/texmf/doc/latex/styles/mparhack.dvi
+share/texmf/doc/latex/styles/multiple-span.txt
share/texmf/doc/latex/styles/paralist.dvi
share/texmf/doc/latex/styles/picinpar.dvi
share/texmf/doc/latex/styles/picins.txt
@@ -3039,7 +3056,6 @@
share/texmf/doc/polish/context/cont-pl.html
share/texmf/doc/polish/index.html
share/texmf/doc/polish/mex/00readme
-share/texmf/doc/polish/mex/mex.htm
share/texmf/doc/polish/mex/mex.html
share/texmf/doc/polish/mex/mexinfo.eng
share/texmf/doc/polish/mex/mexinfo.pol
@@ -3061,9 +3077,9 @@
share/texmf/doc/tetex.png
share/texmf/doc/tetex/eurotex98-te.pdf
share/texmf/doc/texdoctk/README
-share/texmf/dvipdfm/README.config
+share/texmf/dvipdfm/config/README.config
@comment no checksum
-share/texmf/dvipdfm/config
+share/texmf/dvipdfm/config/config
share/texmf/dvips/antp/antp.enc
share/texmf/dvips/antp/antp.map
share/texmf/dvips/antp/config.antp
@@ -9953,6 +9969,7 @@
share/texmf/tex/generic/hyphen/plhyph.tex
share/texmf/tex/generic/hyphen/pt8hyph.tex
share/texmf/tex/generic/hyphen/rohyphen.tex
+share/texmf/tex/generic/hyphen/sihyph23.tex
share/texmf/tex/generic/hyphen/skhyph.tex
share/texmf/tex/generic/hyphen/skhyph2e.tex
share/texmf/tex/generic/hyphen/sphyph.tex
@@ -10584,8 +10601,6 @@
share/texmf/tex/latex/fp/fp.sty
share/texmf/tex/latex/fp/fp.tex
share/texmf/tex/latex/fp/lfp.sty
-share/texmf/tex/latex/g-brief/g-brief.cls
-share/texmf/tex/latex/g-brief/g-brief.sty
share/texmf/tex/latex/graphics/color.sty
share/texmf/tex/latex/graphics/dvipdf.def
share/texmf/tex/latex/graphics/dvipdfm.def
@@ -10642,6 +10657,16 @@
share/texmf/tex/latex/jknappen/mathrsfs.sty
share/texmf/tex/latex/jknappen/ubbold.fd
share/texmf/tex/latex/jknappen/ursfs.fd
+share/texmf/tex/latex/jurabib/dejbbib.ldf
+share/texmf/tex/latex/jurabib/dujbbib.ldf
+share/texmf/tex/latex/jurabib/enjbbib.ldf
+share/texmf/tex/latex/jurabib/frjbbib.ldf
+share/texmf/tex/latex/jurabib/itjbbib.ldf
+share/texmf/tex/latex/jurabib/jblong.cfg
+share/texmf/tex/latex/jurabib/jurabib.cfg
+share/texmf/tex/latex/jurabib/jurabib.sty
+share/texmf/tex/latex/jurabib/nojbbib.ldf
+share/texmf/tex/latex/jurabib/spjbbib.ldf
share/texmf/tex/latex/koma-script/DIN.lco
share/texmf/tex/latex/koma-script/DINmtext.lco
share/texmf/tex/latex/koma-script/KOMAold.lco
@@ -10664,6 +10689,13 @@
share/texmf/tex/latex/koma-script/typearea.sty
share/texmf/tex/latex/labels/labels.sty
share/texmf/tex/latex/labels/olabels.sty
+share/texmf/tex/latex/listings/listings.cfg
+share/texmf/tex/latex/listings/lstdoc.sty
+share/texmf/tex/latex/listings/lstlang1.sty
+share/texmf/tex/latex/listings/lstlang2.sty
+share/texmf/tex/latex/listings/lstlang3.sty
+share/texmf/tex/latex/listings/lstmisc.sty
+share/texmf/tex/latex/listings/lstpatch.sty
share/texmf/tex/latex/lucida/ly1hlce.fd
share/texmf/tex/latex/lucida/ly1hlcf.fd
share/texmf/tex/latex/lucida/ly1hlcn.fd
@@ -10860,6 +10892,7 @@
share/texmf/tex/latex/misc/marvosym.sty
share/texmf/tex/latex/misc/mathcomp.sty
share/texmf/tex/latex/misc/moreverb.sty
+share/texmf/tex/latex/misc/mparhack.sty
share/texmf/tex/latex/misc/mt11p.sty
share/texmf/tex/latex/misc/multibox.sty
share/texmf/tex/latex/misc/multind.sty
@@ -11461,12 +11494,13 @@
@dirrm share/texmf/tex/latex/mathpple
@dirrm share/texmf/tex/latex/lucidabr
@dirrm share/texmf/tex/latex/lucida
+_(_at_)_dirrm share/texmf/tex/latex/listings
@dirrm share/texmf/tex/latex/labels
@dirrm share/texmf/tex/latex/koma-script
+_(_at_)_dirrm share/texmf/tex/latex/jurabib
@dirrm share/texmf/tex/latex/jknappen
@dirrm share/texmf/tex/latex/hyperref
@dirrm share/texmf/tex/latex/graphics
-_(_at_)_dirrm share/texmf/tex/latex/g-brief
@dirrm share/texmf/tex/latex/fp
@dirrm share/texmf/tex/latex/fancyvrb
@dirrm share/texmf/tex/latex/fancyheadings
@@ -11966,6 +12000,7 @@
@dirrm share/texmf/dvips/antt
@dirrm share/texmf/dvips/antp
@dirrm share/texmf/dvips
+_(_at_)_dirrm share/texmf/dvipdfm/config
@dirrm share/texmf/dvipdfm
@dirrm share/texmf/doc/texdoctk
@dirrm share/texmf/doc/tetex
@@ -12024,17 +12059,18 @@
@dirrm share/texmf/doc/latex/mfnfss
@dirrm share/texmf/doc/latex/mdwtools
@dirrm share/texmf/doc/latex/mathtime
+_(_at_)_dirrm share/texmf/doc/latex/listings
@dirrm share/texmf/doc/latex/lettrine
@dirrm share/texmf/doc/latex/leftidx
@dirrm share/texmf/doc/latex/latex2e-html
@dirrm share/texmf/doc/latex/koma-script
+_(_at_)_dirrm share/texmf/doc/latex/jurabib
@dirrm share/texmf/doc/latex/jknappen
@dirrm share/texmf/doc/latex/images
@dirrm share/texmf/doc/latex/hyperref
@dirrm share/texmf/doc/latex/graphics
@dirrm share/texmf/doc/latex/geometry
@dirrm share/texmf/doc/latex/general
-_(_at_)_dirrm share/texmf/doc/latex/g-brief
@dirrm share/texmf/doc/latex/footmisc
@dirrm share/texmf/doc/latex/floatflt
@dirrm share/texmf/doc/latex/fancyvrb
@@ -12142,6 +12178,7 @@
@dirrm share/texmf/bibtex/bst/plbib
@dirrm share/texmf/bibtex/bst/natbib
@dirrm share/texmf/bibtex/bst/misc
+_(_at_)_dirrm share/texmf/bibtex/bst/jurabib
@dirrm share/texmf/bibtex/bst/germbib
@dirrm share/texmf/bibtex/bst/base
@dirrm share/texmf/bibtex/bst/ams
Visit your host, monkey.org