build: Use ACLTX_TEXMF_PATH for installation.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 16 Dec 2008 15:09:01 +0000 (15:09 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 16 Dec 2008 15:09:01 +0000 (15:09 +0000)
Also remove old CVS cruft and use autoconf-mode.

Makefile.m4
configure.in

index f52c85c..7712571 100644 (file)
@@ -1,7 +1,5 @@
 ## -*-makefile-*-
 ##
-## $Id: Makefile.m4,v 1.4 2003/09/05 16:16:31 mdw Exp $
-##
 ## Build system for mdwtools
 ##
 ## (c) 2002 Mark Wooding
@@ -27,9 +25,9 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-texmfdir = @texmfdir@
-pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE}
-pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE}
+texmfpath = @texmfpath@
+pkglatexdir = ${texmfpath}/tex/latex/${PACKAGE}
+pkgdocdir = ${texmfpath}/doc/latex/${PACKAGE}
 
 define(`addsuffix', `patsubst(`$1', `\>', `$2')')
 define(`BASE', `\
index edbad5d..ca080bd 100644 (file)
@@ -1,6 +1,4 @@
-dnl -*-fundamental-*-
-dnl
-dnl $Id: configure.in,v 1.4 2003/09/05 16:16:31 mdw Exp $
+dnl -*-autoconf-*-
 dnl
 dnl Configuration script for mdwtools
 dnl
@@ -27,7 +25,7 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 AC_INIT(mdwtools.ins)
 AM_INIT_AUTOMAKE(mdwtools, 1.7.0)
-mdw_DIR_TEXMF
+ACLTX_TEXMF_PATH
 AC_OUTPUT(Makefile)
 
 dnl ----- That's all, folks -------------------------------------------------