Remove version numbers from docdir paths.

Most Unix systems prefer to omit the versions.
This commit is contained in:
John "Elwin" Edwards 2017-10-16 19:53:38 -04:00
parent 79765ae3b2
commit 359d0987a4
15 changed files with 22 additions and 76 deletions

View file

@ -12,8 +12,8 @@
# See the file LICENSE.TXT for full copyright and licensing information.
#
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
PROGRAM=@PROGRAM@
SCOREFILE=@SCOREFILE@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([ARogue],[5.8.2], [yendor@rogueforge.net])
AC_INIT([ARogue],[5.8.2], [yendor@rogueforge.net], [arogue5])
AC_CONFIG_HEADERS([config.h])
# May not be needed for the documentation
AC_CONFIG_FILES([Makefile])
@ -169,13 +169,4 @@ AC_DEFINE_UNQUOTED([MAXLOAD], [$enable_maxusers], [Define if maxusers feature sh
AC_MSG_RESULT([$enable_maxusers])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -17,9 +17,9 @@
#
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PROGRAM=@PROGRAM@
PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
SAVEDIR=@SAVEDIR@
SCOREFILE=@SCOREFILE@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([ARogue],[7.7.1], [yendor@rogueforge.net])
AC_INIT([ARogue],[7.7.1], [yendor@rogueforge.net], [arogue7])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])

View file

@ -9,8 +9,8 @@
# See the file LICENSE.TXT for full copyright and licensing information.
#
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
PROGRAM=@PROGRAM@
SCOREFILE=@SCOREFILE@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([Rogue],[3.6.4], [yendor@rogueforge.net])
AC_INIT([Rogue],[3.6.4], [yendor@rogueforge.net], [rogue3])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile rogue.6 rogue.r])
@ -166,13 +166,4 @@ AC_DEFINE_UNQUOTED([MAXLOAD], [$enable_maxusers], [Define if maxusers feature sh
AC_MSG_RESULT([$enable_maxusers])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -9,8 +9,8 @@
# See the file LICENSE.TXT for full copyright and licensing information.
#
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PROGRAM=@PROGRAM@
CC = @CC@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([Rogue],[5.2.2], [yendor@rogueforge.net])
AC_INIT([Rogue],[5.2.2], [yendor@rogueforge.net], [rogue4])
AC_CONFIG_SRCDIR([armor.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile rogue.6 rogue.me])
@ -198,13 +198,4 @@ AC_DEFINE_UNQUOTED([MAXLOAD], [$enable_maxusers], [Define if maxusers feature sh
AC_MSG_RESULT([$enable_maxusers])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -16,8 +16,8 @@
# This section could be manually configured if autoconf/configure fails
###############################################################################
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PROGRAM=@PROGRAM@
O=o

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([Rogue],[5.4.5], [yendor@rogueforge.net])
AC_INIT([Rogue],[5.4.5], [yendor@rogueforge.net], [rogue5])
AC_CONFIG_SRCDIR([armor.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile rogue.6 rogue.me rogue.html])
@ -274,13 +274,4 @@ AC_DEFINE_UNQUOTED([UTMP], [$enable_ucount], [utmp like file to pass to ucount()
AC_MSG_RESULT([$enable_ucount])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -11,8 +11,8 @@
#
# See the file LICENSE.TXT for full copyright and licensing information.
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
PROGRAM=@PROGRAM@
SCOREFILE=@SCOREFILE@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([SRogue],[9.0], [yendor@rogueforge.net])
AC_INIT([SRogue],[9.0], [yendor@rogueforge.net], [srogue])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
@ -133,13 +133,4 @@ AC_DEFINE([WIZARD], [], [Define to include wizard mode])
AC_MSG_RESULT([yes])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([UltraRogue],[1.07], [yendor@rogueforge.net])
AC_INIT([UltraRogue],[1.07], [yendor@rogueforge.net], [urogue])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
@ -158,13 +158,4 @@ AC_DEFINE([WIZARD], [], [Define to include wizard mode])
AC_MSG_RESULT([yes])
fi
AC_MSG_CHECKING([whether to docdir is defined])
if test "x$docdir" = "x" ; then
AC_MSG_RESULT([docdir undefined])
docdir=\${datadir}/doc/\${PACKAGE_TARNAME}
AC_SUBST(docdir)
else
AC_MSG_RESULT([docdir defined])
fi
AC_OUTPUT

View file

@ -12,9 +12,9 @@
#
# See the file LICENSE.TXT for full copyright and licensing information.
DISTNAME=@PACKAGE_TARNAME@@PACKAGE_VERSION@
DISTNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PROGRAM=@PROGRAM@
PACKAGE_TARNAME=@PACKAGE_TARNAME@-@PACKAGE_VERSION@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
SAVEDIR=@SAVEDIR@
SCOREFILE=@SCOREFILE@

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([XRogue],[8.0.3], [yendor@rogueforge.net])
AC_INIT([XRogue],[8.0.3], [yendor@rogueforge.net], [xrogue])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])