diff options
author | 2010-09-29 17:47:22 +0000 | |
---|---|---|
committer | 2010-09-29 17:47:22 +0000 | |
commit | 40de5a58a2013c86bc0d952fd9fd2da1204bca45 (patch) | |
tree | 5f6668ee6819625555a70b5a7bf062afa0c1c531 /app-text/xindy/files | |
parent | Version bump with some fixes. (diff) | |
download | gentoo-2-40de5a58a2013c86bc0d952fd9fd2da1204bca45.tar.gz gentoo-2-40de5a58a2013c86bc0d952fd9fd2da1204bca45.tar.bz2 gentoo-2-40de5a58a2013c86bc0d952fd9fd2da1204bca45.zip |
Version bump (bug #281677). Update to EAPI=3, fix configure script issue, and remove extra external clisp setup as the build system defaults to using it properly.
(Portage version: 2.2_rc87/cvs/Linux x86_64)
Diffstat (limited to 'app-text/xindy/files')
-rw-r--r-- | app-text/xindy/files/xindy-2.4-configure.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app-text/xindy/files/xindy-2.4-configure.patch b/app-text/xindy/files/xindy-2.4-configure.patch new file mode 100644 index 000000000000..b76341f1f759 --- /dev/null +++ b/app-text/xindy/files/xindy-2.4-configure.patch @@ -0,0 +1,21 @@ +--- xindy-2.4/configure.ac.orig 2010-05-10 16:12:10.000000000 -0700 ++++ xindy-2.4/configure.ac 2010-09-28 23:43:39.591495118 -0700 +@@ -42,12 +42,16 @@ + + # Test for building make-rules + AC_ARG_ENABLE(make-rules, AS_HELP_STRING([--enable-make-rules ],[build and install make-rules package (default is YES)]),[BUILDRULES=$enableval],[BUILDRULES=yes]) +-test "$BUILDRULES" = "yes" && AC_PROG_LATEX ++if test "x$BUILDRULES" = "xyes"; then ++ AC_PROG_LATEX ++fi + AM_CONDITIONAL(BUILDRULES, test "$BUILDRULES" = "yes") + + # Test for building Documentation + AC_ARG_ENABLE(docs, AS_HELP_STRING([--enable-docs ],[build and install documentation (default is YES)]),[BUILDDOCS=$enableval],[BUILDDOCS=yes]) +-test "$BUILDDOCS" = "yes" && AC_PROG_PDFLATEX ++if test "x$BUILDDOCS" = "xyes"; then ++ AC_PROG_PDFLATEX ++fi + AM_CONDITIONAL(BUILDDOCS, test "$BUILDDOCS" = "yes") + + # Checks for programs: |