~ubuntu-branches/debian/squeeze/ibus-table/squeeze

« back to all changes in this revision

Viewing changes to engine/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-05-04 13:27:30 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090504132730-ik9jsczoat6kamh0
Tags: 1.1.0.20090504-1
* initial release to Debian (closes: #521630)  
* new upstream release (LP: #370216)
* debian/control: 
  - build depends on pkg-config and libibus-dev.
  - change maintainer's email.
  - bump standards version to 3.8.1.
  - add ${python:Depends} to depends.
* debian/rules: change "dh_clean -k" to "dh_prep". 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:set noet ts=4:
 
1
# vim:set noet ts=4
2
2
#
3
3
# ibus-table - The Tables engine for IBus
4
4
#
17
17
# You should have received a copy of the GNU Lesser General Public
18
18
# License along with this library; if not, write to the Free Software
19
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20
 
 
 
20
#
21
21
 
22
22
engine_table_PYTHON = \
23
23
        factory.py \
32
32
        $(NULL)
33
33
engine_tabledir = $(datadir)/ibus-table/engine
34
34
 
35
 
bin_SCRIPTS = ibus-engine-table \
36
 
                          ibus-table-createdb \
37
 
                          $(NULL)
38
 
 
 
35
bin_SCRIPTS = ibus-table-createdb 
 
36
 
 
37
libexec_SCRIPTS = ibus-engine-table
 
38
 
 
39
engine_DATA = table.xml
 
40
enginedir = $(datadir)/ibus/component
39
41
 
40
42
EXTRA_DIST = \
41
43
        ibus-table-createdb.in \
42
44
        ibus-engine-table.in \
 
45
        table.xml.in \
43
46
        $(NULL)
44
47
 
45
48
CLEANFILES = \
47
50
        *.pyo \
48
51
        ibus-engine-table \
49
52
        ibus-table-createdb \
 
53
        table.xml \
50
54
        $(NULL)
51
55
 
52
56
MAINTAINERCLEANFILES = \
53
57
        Makefile.in \
54
58
        $(NULL)
55
59
 
 
60
table.xml: table.xml.in
 
61
        ( \
 
62
                libexecdir=${libexecdir}; \
 
63
                pkgdatadir=${pkgdatadir}; \
 
64
                s=`cat $<`; \
 
65
                eval "echo \"$${s}\""; \
 
66
        ) > $@
 
67
 
56
68
test:
57
69
        $(ENV) \
58
70
                IBUS_TABLE_LOCATION=$(abs_top_srcdir) \