1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
AC_INIT([caja-extensions], 1.7.1, [https://github.com/mate-desktop/caja-extensions])
AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz tar-ustar])
AC_CONFIG_HEADERS(config.h)
AM_DISABLE_STATIC
AC_PROG_CC
AM_PROG_LIBTOOL
AC_PROG_INSTALL
AC_PROG_MAKE_SET
CAJA_REQUIRED=1.7.0
LIBMATE_DESKTOP_REQUIRED=1.7.0
GLIB_REQUIRED=2.26.0
GLIB_GSETTINGS
GTK_DOC_CHECK(1.9)
MATE_COMMON_INIT
# Check for pkgconfig first
AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
# Give error and exit if we dont have pkgconfig
if test "x$HAVE_PKGCONFIG" = "xno"; then
AC_MSG_ERROR([you need to have pkgconfig installed !])
fi
GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
AC_MSG_CHECKING([GTK+ version])
AC_ARG_WITH([gtk],
[AS_HELP_STRING([--with-gtk=2.0|3.0],[which gtk+ version to compile against (default: 2.0)])],
[case "$with_gtk" in
2.0|3.0) ;;
*) AC_MSG_ERROR([invalid gtk version specified]) ;;
esac],
[with_gtk=2.0])
AC_MSG_RESULT([$with_gtk])
case "$with_gtk" in
2.0) GTK_API_VERSION=2.0
GTK_REQUIRED=2.18.0
;;
3.0) GTK_API_VERSION=3.0
GTK_REQUIRED=3.0.0
;;
esac
# Common requirements
PKG_CHECK_MODULES(CAJA,
libcaja-extension >= $CAJA_REQUIRED)
AC_SUBST(CAJA_CFLAGS)
AC_SUBST(CAJA_LIBS)
# image-converter extension
AC_ARG_ENABLE([image-converter],
AS_HELP_STRING([--enable-image-converter], [Enable image-converter plugin]),
[enable_image_converter=$enableval],
[enable_image_converter=yes])
if test "x$enable_image-converter" = "xyes"; then
PKG_CHECK_MODULES(IMAGE_CONVERTER,
gtk+-$GTK_API_VERSION >= $GTK_REQUIRED
glib-2.0 >= $GLIB_REQUIRED
gio-2.0 >= $GLIB_REQUIRED)
AC_SUBST(IMAGE_CONVERTER_CFLAGS)
AC_SUBST(IMAGE_CONVERTER_LIBS)
fi
AM_CONDITIONAL(ENABLE_IMAGE_CONVERTER, test x"$enable_image_converter" = "xyes")
# open-terminal extension
AC_ARG_ENABLE([open-terminal],
AS_HELP_STRING([--enable-open-terminal], [Enable open-terminal plugin]),
[enable_open_terminal=$enableval],
[enable_open_terminal=yes])
if test "x$enable_open_terminal" = "xyes"; then
PKG_CHECK_MODULES(OPENTERMINAL,
glib-2.0 >= $GLIB_REQUIRED
mate-desktop-2.0 >= $LIBMATE_DESKTOP_REQUIRED)
AC_SUBST(OPENTERMINAL_CFLAGS)
AC_SUBST(OPENTERMINAL_LIBS)
fi
AM_CONDITIONAL(ENABLE_OPEN_TERMINAL, test x"$enable_open_terminal" = "xyes")
# sendto extension
AC_ARG_ENABLE([sendto],
AS_HELP_STRING([--enable-sendto], [Enable sendto plugin]),
[enable_sendto=$enableval],
[enable_sendto=yes])
if test "x$enable_sendto" = "xyes"; then
GTHREAD_REQUIRED=2.6.0
DBUS_REQUIRED=1.0
DBUS_GLIB_REQUIRED=0.60
GUPNP_REQUIRED=0.13
PKG_CHECK_MODULES(SENDTO,
glib-2.0 >= $GLIB_REQUIRED
gio-2.0 >= $GLIB_REQUIRED
gthread-2.0 >= $GTHREAD_REQUIRED
gmodule-2.0 >= $GLIB_REQUIRED
gobject-2.0 >= $GLIB_REQUIRED
gtk+-$GTK_API_VERSION >= $GTK_REQUIRED
dbus-1 >= $DBUS_REQUIRED
dbus-glib-1 >= $DBUS_GLIB_REQUIRED
gupnp-1.0 >= $GUPNP_REQUIRED)
AC_SUBST(SENDTO_CFLAGS)
AC_SUBST(SENDTO_LIBS)
AC_DEFINE_UNQUOTED(GAJIM_SHARE_DIR, "$prefix/share/gajim", [path to gajim share dir])
fi
AM_CONDITIONAL(ENABLE_SENDTO, test x"$enable_sendto" = "xyes")
# share extension
AC_ARG_ENABLE([share],
AS_HELP_STRING([--enable-share], [Enable share plugin]),
[enable_share=$enableval],
[enable_share=yes])
if test "x$enable_share" = "xyes"; then
PKG_CHECK_MODULES(SHARE,
glib-2.0 >= $GLIB_REQUIRED)
AC_SUBST(SHARE_CFLAGS)
AC_SUBST(SHARE_LIBS)
fi
AM_CONDITIONAL(ENABLE_SHARE, test x"$enable_share" = "xyes")
# gksu extenstion
AC_ARG_ENABLE([gksu],
AS_HELP_STRING([--enable-gksu], [Enable gksu plugin]),
[enable_gksu=$enableval],
[enable_gksu=yes])
AM_CONDITIONAL(ENABLE_GKSU, test x"$enable_gksu" = "xyes")
# Get caja extensions directory
AC_ARG_WITH(cajadir,
AS_HELP_STRING([--with-cajadir=DIR],[Installation path for Caja extension @<:@auto@:>@]),
[ac_with_cajadir=$withval],
[ac_with_cajadir=""])
if test "${ac_with_cajadir}" = ""; then
ac_with_cajadir=`$PKG_CONFIG --variable=extensiondir libcaja-extension`
fi
AC_MSG_NOTICE([Installing caja plugins in ${ac_with_cajadir}])
AC_SUBST([CAJA_EXTENSION_DIR],[${ac_with_cajadir}])
# intltool stuff
AC_PROG_INTLTOOL(0.18)
GETTEXT_PACKAGE=caja-extensions
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [gettext package])
AM_GLIB_GNU_GETTEXT
AC_OUTPUT([
Makefile
gksu/Makefile
image-converter/Makefile
open-terminal/Makefile
sendto/Makefile
sendto/caja-sendto.pc
sendto/docs/Makefile
sendto/docs/version.xml
sendto/plugins/Makefile
sendto/plugins/emailclient/Makefile
sendto/plugins/gajim/Makefile
sendto/plugins/caja-burn/Makefile
sendto/plugins/pidgin/Makefile
sendto/plugins/removable-devices/Makefile
sendto/plugins/upnp/Makefile
share/Makefile
po/Makefile.in
])
echo "
caja-extensions-$VERSION:
prefix: ${prefix}
compiler: ${CC}
caja-extension dir ${ac_with_cajadir}
Gtk+ version: ${GTK_API_VERSION}
Plugins to be build:
Image Converter: $enable_image_converter
Open Terminal: $enable_open_terminal
Sendto: $enable_sendto
Share: $enable_share
Gksu: $enable_gksu
"
|