SF.net SVN: geany-plugins:[722] trunk/geany-plugins

hyperair at users.sourceforge.net hyperair at xxxxx
Sun Jun 14 15:16:54 UTC 2009


Revision: 722
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=722&view=rev
Author:   hyperair
Date:     2009-06-14 15:16:54 +0000 (Sun, 14 Jun 2009)

Log Message:
-----------
Add geanylatex to the common build system

Modified Paths:
--------------
    trunk/geany-plugins/Makefile.am
    trunk/geany-plugins/configure.ac

Added Paths:
-----------
    trunk/geany-plugins/build/m4/plugins/geanylatex.m4
    trunk/geany-plugins/geanylatex/Makefile.am
    trunk/geany-plugins/geanylatex/src/Makefile.am

Modified: trunk/geany-plugins/Makefile.am
===================================================================
--- trunk/geany-plugins/Makefile.am	2009-06-14 15:12:13 UTC (rev 721)
+++ trunk/geany-plugins/Makefile.am	2009-06-14 15:16:54 UTC (rev 722)
@@ -1,4 +1,4 @@
-plugins = addons geanygdb
+plugins = addons geanygdb geanylatex
 
 ACLOCAL_AMFLAGS = -Ibuild/m4/cache -Ibuild/m4/plugins --install
 

Added: trunk/geany-plugins/build/m4/plugins/geanylatex.m4
===================================================================
--- trunk/geany-plugins/build/m4/plugins/geanylatex.m4	                        (rev 0)
+++ trunk/geany-plugins/build/m4/plugins/geanylatex.m4	2009-06-14 15:16:54 UTC (rev 722)
@@ -0,0 +1,7 @@
+AC_DEFUN([GP_CHECK_GEANYLATEX],
+[
+    AC_CONFIG_FILES([
+        geanylatex/Makefile
+        geanylatex/src/Makefile
+    ])
+])

Modified: trunk/geany-plugins/configure.ac
===================================================================
--- trunk/geany-plugins/configure.ac	2009-06-14 15:12:13 UTC (rev 721)
+++ trunk/geany-plugins/configure.ac	2009-06-14 15:16:54 UTC (rev 722)
@@ -33,6 +33,7 @@
 dnl plugin checks
 GP_CHECK_ADDONS
 GP_CHECK_GEANYGDB
+GP_CHECK_GEANYLATEX
 
 AC_CONFIG_FILES([
     Makefile

Added: trunk/geany-plugins/geanylatex/Makefile.am
===================================================================
--- trunk/geany-plugins/geanylatex/Makefile.am	                        (rev 0)
+++ trunk/geany-plugins/geanylatex/Makefile.am	2009-06-14 15:16:54 UTC (rev 722)
@@ -0,0 +1 @@
+SUBDIRS = src

Added: trunk/geany-plugins/geanylatex/src/Makefile.am
===================================================================
--- trunk/geany-plugins/geanylatex/src/Makefile.am	                        (rev 0)
+++ trunk/geany-plugins/geanylatex/src/Makefile.am	2009-06-14 15:16:54 UTC (rev 722)
@@ -0,0 +1,29 @@
+include $(top_srcdir)/build/vars.mk
+
+geanyplugins_LTLIBRARIES = geanylatex.la
+
+geanylatex_la_SOURCES = \
+	letters.h \
+	latexutils.h \
+	formatutils.h \
+	latexencodings.h \
+	latexkeybindings.h \
+	datatypes.h \
+	geanylatex.h \
+	reftex.h \
+	bibtex.h \
+	latexenvironments.h \
+	geanylatex.c \
+	latexencodings.c \
+	bibtex.c \
+	bibtexlabels.c \
+	latexutils.c \
+	formatpatterns.c \
+	latexenvironments.c \
+	letters.c \
+	latexkeybindings.c \
+	reftex.c \
+	formatutils.c
+
+geanylatex_la_LIBADD = $(COMMONLIBS)
+geanylatex_la_LDFLAGS = -module -avoid-version


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list