~ubuntu-branches/ubuntu/karmic/gedit/karmic

« back to all changes in this revision

Viewing changes to plugins/sample/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Moog
  • Date: 2009-05-27 14:00:44 UTC
  • mfrom: (1.1.62 upstream)
  • Revision ID: james.westby@ubuntu.com-20090527140044-4h5ypu02i3s4zi0q
Tags: 2.27.1-0ubuntu1
* New upstream release: (LP: #380924)
  - Remove the mmap document loader (Paolo Borelli)
  - Remove open location dialog and sample plugin (Paolo Borelli)
  - Added public API for document saving (Jesse van den Kieboom)
  - Put external tools in a submenu (Jesse van den Kieboom)
  - Added language support for external tools (Jesse van den Kieboom)
  - Implemented asynchronous reading and writing on external tools (Jesse van den Kieboom)
  - Add Quick Open plugin (Jesse van den Kieboom)
  - Misc bugfixes
  - New and updated translations
* debian/patches/90_autoconf.patch
  - updated for new version
* Launchpad bugs fixed:
  - various crasher bugs (LP: #348536, LP: #368262, LP: #368495)
  - fix modeline scanning (LP: #367160)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Sample plugin
2
 
plugindir = $(GEDIT_PLUGINS_LIBS_DIR)
3
 
 
4
 
INCLUDES = \
5
 
        -I$(top_srcdir)                                 \
6
 
        $(GEDIT_CFLAGS)                                 \
7
 
        $(WARN_CFLAGS)                                  \
8
 
        $(DISABLE_DEPRECATED_CFLAGS)
9
 
 
10
 
plugin_LTLIBRARIES = libsample.la
11
 
 
12
 
libsample_la_SOURCES = \
13
 
        gedit-sample-plugin.h   \
14
 
        gedit-sample-plugin.c
15
 
        
16
 
libsample_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
17
 
libsample_la_LIBADD  = $(GEDIT_LIBS)
18
 
 
19
 
uidir = $(GEDIT_PLUGINS_DATA_DIR)/sample
20
 
ui_DATA =
21
 
 
22
 
plugin_in_files = sample.gedit-plugin.desktop.in
23
 
 
24
 
%.gedit-plugin: %.gedit-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
25
 
 
26
 
plugin_DATA = $(plugin_in_files:.gedit-plugin.desktop.in=.gedit-plugin)
27
 
 
28
 
EXTRA_DIST = $(ui_DATA) $(plugin_in_files)
29
 
 
30
 
CLEANFILES = $(plugin_DATA)
31
 
DISTCLEANFILES = $(plugin_DATA)
32