Revision: 729 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=729&view=rev Author: hyperair Date: 2009-06-14 17:13:58 +0000 (Sun, 14 Jun 2009)
Log Message: ----------- Make the build/ tree shallower
* Move build/m4/plugins/* to build/* * Use build/cache instead of build/m4/cache for libtool files
Modified Paths: -------------- trunk/geany-plugins/Makefile.am trunk/geany-plugins/autogen.sh trunk/geany-plugins/configure.ac
Added Paths: ----------- trunk/geany-plugins/build/addons.m4 trunk/geany-plugins/build/geanygdb.m4 trunk/geany-plugins/build/geanylatex.m4 trunk/geany-plugins/build/geanylipsum.m4 trunk/geany-plugins/build/geanysendmail.m4 trunk/geany-plugins/build/shiftcolumn.m4 trunk/geany-plugins/build/spellcheck.m4
Removed Paths: ------------- trunk/geany-plugins/build/m4/plugins/addons.m4 trunk/geany-plugins/build/m4/plugins/geanygdb.m4 trunk/geany-plugins/build/m4/plugins/geanylatex.m4 trunk/geany-plugins/build/m4/plugins/geanylipsum.m4 trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 trunk/geany-plugins/build/m4/plugins/spellcheck.m4
Modified: trunk/geany-plugins/Makefile.am =================================================================== --- trunk/geany-plugins/Makefile.am 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/Makefile.am 2009-06-14 17:13:58 UTC (rev 729) @@ -1,6 +1,6 @@ plugins = addons geanygdb geanylatex geanylipsum geanysendmail shiftcolumn spellcheck
-ACLOCAL_AMFLAGS = -I build/m4/cache -I build/m4/plugins --install +ACLOCAL_AMFLAGS = -I build/cache -I build --install
SUBDIRS = \ po \
Modified: trunk/geany-plugins/autogen.sh =================================================================== --- trunk/geany-plugins/autogen.sh 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/autogen.sh 2009-06-14 17:13:58 UTC (rev 729) @@ -1,6 +1,6 @@ #!/bin/sh
-mkdir -p build/m4/cache +mkdir -p build/cache intltoolize -c -f autoreconf -vfi
Copied: trunk/geany-plugins/build/addons.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/addons.m4) =================================================================== --- trunk/geany-plugins/build/addons.m4 (rev 0) +++ trunk/geany-plugins/build/addons.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_ADDONS], +[ + AC_CONFIG_FILES([ + addons/Makefile + addons/src/Makefile + ]) +])
Copied: trunk/geany-plugins/build/geanygdb.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/geanygdb.m4) =================================================================== --- trunk/geany-plugins/build/geanygdb.m4 (rev 0) +++ trunk/geany-plugins/build/geanygdb.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,8 @@ +AC_DEFUN([GP_CHECK_GEANYGDB], +[ + AC_CONFIG_FILES([ + geanygdb/Makefile + geanygdb/src/Makefile + geanygdb/tests/Makefile + ]) +])
Copied: trunk/geany-plugins/build/geanylatex.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/geanylatex.m4) =================================================================== --- trunk/geany-plugins/build/geanylatex.m4 (rev 0) +++ trunk/geany-plugins/build/geanylatex.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_GEANYLATEX], +[ + AC_CONFIG_FILES([ + geanylatex/Makefile + geanylatex/src/Makefile + ]) +])
Copied: trunk/geany-plugins/build/geanylipsum.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/geanylipsum.m4) =================================================================== --- trunk/geany-plugins/build/geanylipsum.m4 (rev 0) +++ trunk/geany-plugins/build/geanylipsum.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_GEANYLIPSUM], +[ + AC_CONFIG_FILES([ + geanylipsum/Makefile + geanylipsum/src/Makefile + ]) +])
Copied: trunk/geany-plugins/build/geanysendmail.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/geanysendmail.m4) =================================================================== --- trunk/geany-plugins/build/geanysendmail.m4 (rev 0) +++ trunk/geany-plugins/build/geanysendmail.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_GEANYSENDMAIL], +[ + AC_CONFIG_FILES([ + geanysendmail/Makefile + geanysendmail/src/Makefile + ]) +])
Deleted: trunk/geany-plugins/build/m4/plugins/addons.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/addons.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/addons.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,7 +0,0 @@ -AC_DEFUN([GP_CHECK_ADDONS], -[ - AC_CONFIG_FILES([ - addons/Makefile - addons/src/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/geanygdb.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/geanygdb.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/geanygdb.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,8 +0,0 @@ -AC_DEFUN([GP_CHECK_GEANYGDB], -[ - AC_CONFIG_FILES([ - geanygdb/Makefile - geanygdb/src/Makefile - geanygdb/tests/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/geanylatex.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/geanylatex.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/geanylatex.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,7 +0,0 @@ -AC_DEFUN([GP_CHECK_GEANYLATEX], -[ - AC_CONFIG_FILES([ - geanylatex/Makefile - geanylatex/src/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/geanylipsum.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/geanylipsum.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/geanylipsum.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,7 +0,0 @@ -AC_DEFUN([GP_CHECK_GEANYLIPSUM], -[ - AC_CONFIG_FILES([ - geanylipsum/Makefile - geanylipsum/src/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,7 +0,0 @@ -AC_DEFUN([GP_CHECK_GEANYSENDMAIL], -[ - AC_CONFIG_FILES([ - geanysendmail/Makefile - geanysendmail/src/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,7 +0,0 @@ -AC_DEFUN([GP_CHECK_SHIFTCOLUMN], -[ - AC_CONFIG_FILES([ - shiftcolumn/Makefile - shiftcolumn/src/Makefile - ]) -])
Deleted: trunk/geany-plugins/build/m4/plugins/spellcheck.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/spellcheck.m4 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/build/m4/plugins/spellcheck.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -1,8 +0,0 @@ -AC_DEFUN([GP_CHECK_SPELLCHECK], -[ - PKG_CHECK_MODULES(ENCHANT, [enchant >= 0.13]) - AC_CONFIG_FILES([ - spellcheck/Makefile - spellcheck/src/Makefile - ]) -])
Copied: trunk/geany-plugins/build/shiftcolumn.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4) =================================================================== --- trunk/geany-plugins/build/shiftcolumn.m4 (rev 0) +++ trunk/geany-plugins/build/shiftcolumn.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_SHIFTCOLUMN], +[ + AC_CONFIG_FILES([ + shiftcolumn/Makefile + shiftcolumn/src/Makefile + ]) +])
Copied: trunk/geany-plugins/build/spellcheck.m4 (from rev 728, trunk/geany-plugins/build/m4/plugins/spellcheck.m4) =================================================================== --- trunk/geany-plugins/build/spellcheck.m4 (rev 0) +++ trunk/geany-plugins/build/spellcheck.m4 2009-06-14 17:13:58 UTC (rev 729) @@ -0,0 +1,8 @@ +AC_DEFUN([GP_CHECK_SPELLCHECK], +[ + PKG_CHECK_MODULES(ENCHANT, [enchant >= 0.13]) + AC_CONFIG_FILES([ + spellcheck/Makefile + spellcheck/src/Makefile + ]) +])
Modified: trunk/geany-plugins/configure.ac =================================================================== --- trunk/geany-plugins/configure.ac 2009-06-14 15:50:28 UTC (rev 728) +++ trunk/geany-plugins/configure.ac 2009-06-14 17:13:58 UTC (rev 729) @@ -4,7 +4,7 @@
AC_CONFIG_SRCDIR([po/LINGUAS]) AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIR([build/m4/cache]) +AC_CONFIG_MACRO_DIR([build/cache])
AC_PROG_CC AC_PROG_LIBTOOL
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.