Revision: 437
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=437&view=rev
Author: eht16
Date: 2009-02-04 20:06:29 +0000 (Wed, 04 Feb 2009)
Log Message:
-----------
Fix broken compilation on FreeBSD, the plugin won't work at all though.
Modified Paths:
--------------
trunk/geanygdb/src/gdb-io.h
Modified: trunk/geanygdb/src/gdb-io.h
===================================================================
--- trunk/geanygdb/src/gdb-io.h 2009-02-03 17:20:43 UTC (rev 436)
+++ trunk/geanygdb/src/gdb-io.h 2009-02-04 20:06:29 UTC (rev 437)
@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <stdio.h>
+#include <unistd.h>
extern ssize_t getline(char **lineptr, size_t * n, FILE * stream);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 436
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=436&view=rev
Author: frlan
Date: 2009-02-03 17:20:43 +0000 (Tue, 03 Feb 2009)
Log Message:
-----------
Remove GeanyVC_menu_redesign-branch
Removed Paths:
-------------
branches/GeanyVC_menu_redesign/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 435
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=435&view=rev
Author: yurand
Date: 2009-02-02 23:48:22 +0000 (Mon, 02 Feb 2009)
Log Message:
-----------
GeanyVC: rename install directory to dist to avoid name conflict with INSTALL file
Added Paths:
-----------
trunk/geanyvc/dist/
Removed Paths:
-------------
trunk/geanyvc/install/
Property changes on: trunk/geanyvc/dist
___________________________________________________________________
Added: svn:mergeinfo
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 434
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=434&view=rev
Author: yurand
Date: 2009-02-02 23:47:05 +0000 (Mon, 02 Feb 2009)
Log Message:
-----------
GeanyPrj: rename install directory to dist to avoid name conflict with INSTALL file
Added Paths:
-----------
trunk/geanyprj/dist/
Removed Paths:
-------------
trunk/geanyprj/install/
Property changes on: trunk/geanyprj/dist
___________________________________________________________________
Added: svn:mergeinfo
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 433
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=433&view=rev
Author: yurand
Date: 2009-02-02 23:46:00 +0000 (Mon, 02 Feb 2009)
Log Message:
-----------
GeanyDoc: rename install directory to dist to avoid name conflict with INSTALL file
Added Paths:
-----------
trunk/geanydoc/dist/
Removed Paths:
-------------
trunk/geanydoc/install/
Property changes on: trunk/geanydoc/dist
___________________________________________________________________
Added: svn:mergeinfo
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 430
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=430&view=rev
Author: eht16
Date: 2009-02-02 20:29:37 +0000 (Mon, 02 Feb 2009)
Log Message:
-----------
Install documentation files into the geany-plugins doc dir.
Modified Paths:
--------------
trunk/spellcheck/ChangeLog
trunk/spellcheck/Makefile.am
trunk/spellcheck/configure.in
Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog 2009-02-02 20:19:27 UTC (rev 429)
+++ trunk/spellcheck/ChangeLog 2009-02-02 20:29:37 UTC (rev 430)
@@ -1,3 +1,9 @@
+2009-02-02 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * configure.in, Makefile.am:
+ Install documentation files into the geany-plugins doc dir.
+
+
2009-01-21 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/gui.c:
Modified: trunk/spellcheck/Makefile.am
===================================================================
--- trunk/spellcheck/Makefile.am 2009-02-02 20:19:27 UTC (rev 429)
+++ trunk/spellcheck/Makefile.am 2009-02-02 20:29:37 UTC (rev 430)
@@ -1,6 +1,8 @@
SUBDIRS = src po
+DOCDIR = $(DESTDIR)$(docdir)
+
EXTRA_DIST = \
autogen.sh \
makefile.win32 \
@@ -18,3 +20,12 @@
html:
rst2html README index.html
+
+install-data-local:
+ $(mkinstalldirs) $(DOCDIR)
+ $(INSTALL_DATA) $(top_srcdir)/README $(DOCDIR)
+ $(INSTALL_DATA) $(top_srcdir)/ChangeLog $(DOCDIR)
+ $(INSTALL_DATA) $(top_srcdir)/NEWS $(DOCDIR)
+ $(INSTALL_DATA) $(top_srcdir)/COPYING $(DOCDIR)
+ $(INSTALL_DATA) $(top_srcdir)/AUTHORS $(DOCDIR)
+
Modified: trunk/spellcheck/configure.in
===================================================================
--- trunk/spellcheck/configure.in 2009-02-02 20:19:27 UTC (rev 429)
+++ trunk/spellcheck/configure.in 2009-02-02 20:29:37 UTC (rev 430)
@@ -48,8 +48,9 @@
fi
# get the plugin installed at the correct location for Geany
-# TODO find a way to NOT override --libdir command line option if given
+# TODO find a way to NOT override --libdir/--docdir command line option if given
libdir="`$PKG_CONFIG --variable=libdir geany`/geany"
+docdir="${datarootdir}/doc/geany-plugins/${PACKAGE}"
AC_OUTPUT([
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.