Revision: 726 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=726&view=rev Author: hyperair Date: 2009-06-14 15:47:11 +0000 (Sun, 14 Jun 2009)
Log Message: ----------- geanysendmail, shiftcolumn, spellcheck build sys
Modified Paths: -------------- trunk/geany-plugins/Makefile.am trunk/geany-plugins/configure.ac
Added Paths: ----------- trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 trunk/geany-plugins/build/m4/plugins/spellcheck.m4 trunk/geany-plugins/geanysendmail/Makefile.am trunk/geany-plugins/geanysendmail/src/Makefile.am trunk/geany-plugins/shiftcolumn/Makefile.am trunk/geany-plugins/shiftcolumn/src/Makefile.am trunk/geany-plugins/spellcheck/Makefile.am trunk/geany-plugins/spellcheck/src/Makefile.am
Modified: trunk/geany-plugins/Makefile.am =================================================================== --- trunk/geany-plugins/Makefile.am 2009-06-14 15:41:50 UTC (rev 725) +++ trunk/geany-plugins/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -1,4 +1,4 @@ -plugins = addons geanygdb geanylatex geanylipsum +plugins = addons geanygdb geanylatex geanylipsum geanysendmail shiftcolumn spellcheck
ACLOCAL_AMFLAGS = -Ibuild/m4/cache -Ibuild/m4/plugins --install
Added: trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 (rev 0) +++ trunk/geany-plugins/build/m4/plugins/geanysendmail.m4 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_GEANYSENDMAIL], +[ + AC_CONFIG_FILES([ + geanysendmail/Makefile + geanysendmail/src/Makefile + ]) +])
Added: trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 (rev 0) +++ trunk/geany-plugins/build/m4/plugins/shiftcolumn.m4 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1,7 @@ +AC_DEFUN([GP_CHECK_SHIFTCOLUMN], +[ + AC_CONFIG_FILES([ + shiftcolumn/Makefile + shiftcolumn/src/Makefile + ]) +])
Added: trunk/geany-plugins/build/m4/plugins/spellcheck.m4 =================================================================== --- trunk/geany-plugins/build/m4/plugins/spellcheck.m4 (rev 0) +++ trunk/geany-plugins/build/m4/plugins/spellcheck.m4 2009-06-14 15:47:11 UTC (rev 726) @@ -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:41:50 UTC (rev 725) +++ trunk/geany-plugins/configure.ac 2009-06-14 15:47:11 UTC (rev 726) @@ -35,6 +35,9 @@ GP_CHECK_GEANYGDB GP_CHECK_GEANYLATEX GP_CHECK_GEANYLIPSUM +GP_CHECK_GEANYSENDMAIL +GP_CHECK_SHIFTCOLUMN +GP_CHECK_SPELLCHECK
AC_CONFIG_FILES([ Makefile
Added: trunk/geany-plugins/geanysendmail/Makefile.am =================================================================== --- trunk/geany-plugins/geanysendmail/Makefile.am (rev 0) +++ trunk/geany-plugins/geanysendmail/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1 @@ +SUBDIRS = src
Added: trunk/geany-plugins/geanysendmail/src/Makefile.am =================================================================== --- trunk/geany-plugins/geanysendmail/src/Makefile.am (rev 0) +++ trunk/geany-plugins/geanysendmail/src/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1,5 @@ +include $(top_srcdir)/build/vars.mk + +geanyplugins_LTLIBRARIES = geanysendmail.la +geanysendmail_la_SOURCES = geanysendmail.c icon.h +geanysendmail_la_LIBADD = $(COMMONLIBS)
Added: trunk/geany-plugins/shiftcolumn/Makefile.am =================================================================== --- trunk/geany-plugins/shiftcolumn/Makefile.am (rev 0) +++ trunk/geany-plugins/shiftcolumn/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1 @@ +SUBDIRS = src
Added: trunk/geany-plugins/shiftcolumn/src/Makefile.am =================================================================== --- trunk/geany-plugins/shiftcolumn/src/Makefile.am (rev 0) +++ trunk/geany-plugins/shiftcolumn/src/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1,5 @@ +include $(top_srcdir)/build/vars.mk + +geanyplugins_LTLIBRARIES = shiftcolumn.la +shiftcolumn_la_SOURCES = shiftcolumn.c +shiftcolumn_la_LIBADD = $(COMMONLIBS)
Added: trunk/geany-plugins/spellcheck/Makefile.am =================================================================== --- trunk/geany-plugins/spellcheck/Makefile.am (rev 0) +++ trunk/geany-plugins/spellcheck/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1 @@ +SUBDIRS = src
Added: trunk/geany-plugins/spellcheck/src/Makefile.am =================================================================== --- trunk/geany-plugins/spellcheck/src/Makefile.am (rev 0) +++ trunk/geany-plugins/spellcheck/src/Makefile.am 2009-06-14 15:47:11 UTC (rev 726) @@ -0,0 +1,18 @@ +include $(top_srcdir)/build/vars.mk + +geanyplugins_LTLIBRARIES = spellcheck.la +spellcheck_la_SOURCES = \ + scplugin.h \ + speller.h \ + gui.h \ + gui.c \ + speller.c \ + scplugin.c + +spellcheck_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(ENCHANT_CFLAGS) + +spellcheck_la_LIBADD = \ + $(COMMON_LIBS) \ + $(ENCHANT_LIBS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.