Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 449550
Collapse All | Expand All

(-)a/configure.ac (-6 / +5 lines)
Lines 47-61 dnl - define PACKAGE_VERSION_* variables Link Here
47
AS_VERSION
47
AS_VERSION
48
AS_NANO
48
AS_NANO
49
AM_SANITY_CHECK
49
AM_SANITY_CHECK
50
AM_MAINTAINER_MODE
50
AM_MAINTAINER_MODE(enable)
51
AM_DISABLE_STATIC
51
AC_DISABLE_STATIC
52
AC_PROG_CC
52
AC_PROG_CC
53
AM_PROG_CC_C_O
53
AM_PROG_CC_C_O
54
AC_PROG_CXX
54
AC_PROG_CXX
55
AC_ISC_POSIX
56
AC_HEADER_STDC
55
AC_HEADER_STDC
57
AM_PROG_LIBTOOL
56
AC_PROG_LIBTOOL
58
IT_PROG_INTLTOOL([0.35.0])
57
IT_PROG_INTLTOOL([0.41.1])
59
58
60
dnl - For dislpay Date
59
dnl - For dislpay Date
61
m4_define(ibus_datedisplay,
60
m4_define(ibus_datedisplay,
Lines 210-216 AC_MSG_CHECKING([whether you enable pygt Link Here
210
AC_ARG_ENABLE(pygtk2-anthy,
211
AC_ARG_ENABLE(pygtk2-anthy,
211
              AS_HELP_STRING([--enable-pygtk2-anthy=no/yes],
212
              AS_HELP_STRING([--enable-pygtk2-anthy=no/yes],
212
                             [Install pygtk2 anthy default=no]),
213
                             [Install pygtk2 anthy default=no]),
213
              enable_pygtk2_anthy=yes,
214
              [],
214
              enable_pygtk2_anthy=no)
215
              enable_pygtk2_anthy=no)
215
AC_MSG_RESULT($enable_pygtk2_anthy)
216
AC_MSG_RESULT($enable_pygtk2_anthy)
216
217
(-)a/engine/Makefile.am (-4 / +1 lines)
Lines 38-47 engine_anthydir = $(pkgdatadir)/engine Link Here
38
engine_anthy_built_files = $(BUILT_SOURCES)
38
engine_anthy_built_files = $(BUILT_SOURCES)
39
engine_anthy_built_in_files = $(addsuffix .in, $(engine_anthy_built_files))
39
engine_anthy_built_in_files = $(addsuffix .in, $(engine_anthy_built_files))
40
40
41
if HAVE_PYGTK2_ANTHY
42
PYGTK2_ANTHY_RAW = anthy.i
41
PYGTK2_ANTHY_RAW = anthy.i
43
PYGTK2_ANTHY_GEN = anthy.py anthy_wrap.c
42
PYGTK2_ANTHY_GEN = anthy.py anthy_wrap.c
44
43
44
if HAVE_PYGTK2_ANTHY
45
anthy_DATA = \
45
anthy_DATA = \
46
	anthy.py \
46
	anthy.py \
47
	$(NULL)
47
	$(NULL)
Lines 69-77 _anthy_la_LDFLAGS = \ Link Here
69
69
70
anthy.py anthy_wrap.c: anthy.i
70
anthy.py anthy_wrap.c: anthy.i
71
	$(SWIG) -python $(ANTHY_CFLAGS) -I/usr/include -o anthy_wrap.c $(srcdir)/anthy.i
71
	$(SWIG) -python $(ANTHY_CFLAGS) -I/usr/include -o anthy_wrap.c $(srcdir)/anthy.i
72
else
73
PYGTK2_ANTHY_RAW =
74
PYGTK2_ANTHY_GEN =
75
endif
72
endif
76
73
77
libexec_SCRIPTS = ibus-engine-anthy
74
libexec_SCRIPTS = ibus-engine-anthy

Return to bug 449550