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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
AC_INIT(src/Main.cs)
AM_CONFIG_HEADER(config.h)
AC_CANONICAL_SYSTEM
AC_PREREQ(2.13)
VERSION_MAJOR=0
VERSION_MINOR=9
VERSION_MICRO=7
VERSION_REVIS=no
VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO"
ASM_VERSION="$VERSION.*"
if test ! "x$VERSION_REVIS" = "xno" ; then
VERSION="$VERSION.$VERSION_REVIS"
ASM_VERSION=$VERSION
fi
AM_INIT_AUTOMAKE(banshee, $VERSION)
AC_SUBST(ASM_VERSION)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
AC_PROG_INSTALL
AC_ISC_POSIX
AC_HEADER_STDC
AM_PROG_LIBTOOL
GNOME_COMPILE_WARNINGS
AM_PATH_GLIB_2_0
dnl configure options
AC_ARG_ENABLE(helix, AC_HELP_STRING([--enable-helix], [Enable Helix/RealPlayer engine]), , enable_helix="yes")
AM_CONDITIONAL(ENABLE_HELIX, test "x$enable_helix" = "xyes")
AC_ARG_WITH(helix-libs, AC_HELP_STRING([--with-helix-libs], [Specify Helix/RealPlayer Library/Codecs Path]), helix_libs="$withval", helix_libs="no")
AC_ARG_ENABLE(xing, AC_HELP_STRING([--enable-xing], [Enable Real's Xing MP3 Encoder]), , enable_xing="no")
AM_CONDITIONAL(ENABLE_XING, test "x$enable_xing" = "xyes")
AC_ARG_ENABLE(dev-tests, AC_HELP_STRING([--enable-dev-tests], [Whether or not to build various test programs for components in libbanshee and mediaengines]), , enable_dev_tests="no")
AM_CONDITIONAL(ENABLE_TESTS, test "x$enable_dev_tests" = "xyes")
if test "x$enable_xing" = "xyes"; then
AC_DEFINE(ENABLE_XING, 1, [Define if the Xing Mp3 encoder should be compiled and linked into libbanshee])
fi
dnl pkg-config, install programs
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
AC_PATH_PROG(INSTALL, install, no)
if test "x$INSTALL" = "xno"; then
AC_MSG_ERROR([You need to install 'install'])
fi
AC_SUBST(INSTALL)
AC_SUBST(PKG_CONFIG)
MONO_REQUIRED_VERSION=1.1.8
PKG_CHECK_MODULES(MONO, mono >= $MONO_REQUIRED_VERSION)
dnl Mono programs
MONODIR=`$PKG_CONFIG --variable=exec_prefix mono`
MONOBIN="$MONODIR/bin"
MONO="$MONOBIN/mono"
MCS="$MONOBIN/mcs"
AC_MSG_CHECKING([for mono.pc])
if test -z `$PKG_CONFIG --variable=prefix mono`; then
AC_MSG_ERROR([missing the mono.pc file, usually found in the mono-devel package])
else
AC_MSG_RESULT([found])
fi
required_assemblies="Mono.Data.SqliteClient Mono.Posix System.Runtime.Remoting System.Web System.Web.Services"
for asm in $required_assemblies; do
AC_MSG_CHECKING([for $asm.dll])
if test ! -e `$PKG_CONFIG --variable=prefix mono`/lib/mono/1.0/$asm.dll; then
AC_MSG_ERROR([missing required Mono DLL: $asm.dll])
else
AC_MSG_RESULT([found])
fi
done
if test ! -x "$MONO"; then
AC_MSG_ERROR([No Mono runtime found])
fi
CS="C#"
if test ! -x "$MCS"; then
AC_MSG_ERROR([No $CS compiler found])
fi
AC_SUBST(MCS)
AC_SUBST(MONO)
dnl gtk-sharp, other CLR deps
GTKSHARP_REQUIRED=1.9
PKG_CHECK_MODULES(GTKSHARP,
gtk-sharp-2.0 >= $GTKSHARP_REQUIRED \
gnome-sharp-2.0 >= $GTKSHARP_REQUIRED \
gnome-vfs-sharp-2.0 >= $GTKSHARP_REQUIRED \
glade-sharp-2.0 >= $GTKSHARP_REQUIRED \
gconf-sharp-2.0 >= $GTKSHARP_REQUIRED)
AC_SUBST(GTKSHARP_LIBS)
PKG_CHECK_MODULES(IPODSHARP, ipod-sharp >= 0.5.4)
AC_SUBST(IPODSHARP_LIBS)
PKG_CHECK_MODULES(DBUSSHARP, dbus-sharp)
AC_SUBST(DBUSSHARP)
dnl sqlite devel dep
PKG_CHECK_MODULES(SQLITE, sqlite3)
dnl gstreamer devel deps
GSTREAMER_REQUIRED_VERSION=0.8.8
GSTREAMER_PLUGINS_REQUIRED_VERSION=0.8.7
AC_SUBST(GSTREAMER_REQUIRED_VERSION)
AC_SUBST(GSTREAMER_PLUGINS_REQUIRED_VERSION)
gst_pkg_name="gstreamer"
PKG_CHECK_MODULES(GST,
gstreamer >= $GSTREAMER_REQUIRED_VERSION
gstreamer-gconf >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-interfaces >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-play >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-plugins >= $GSTREAMER_PLUGINS_REQUIRED_VERSION,
enable_gst=yes, enable_gst=no)
if test "x$enable_gst" = "xno" ; then
PKG_CHECK_MODULES(GST,
gstreamer-0.8 >= $GSTREAMER_REQUIRED_VERSION
gstreamer-gconf-0.8 >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-interfaces-0.8 >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-play-0.8 >= $GSTREAMER_PLUGINS_REQUIRED_VERSION
gstreamer-plugins-0.8 >= $GSTREAMER_PLUGINS_REQUIRED_VERSION,
enable_gst=yes, enable_gst=no)
gst_pkg_name="gstreamer-0.8"
if test "x$enable_gst" = "xno" ; then
AC_MSG_ERROR([Install gstreamer, gstreamer-plugins gstreamer-gconf, gstreamer-interfaces, and gstreamer-play])
fi
fi
AC_SUBST(GST_CFLAGS)
AC_SUBST(GST_LIBS)
GST_PLUGINS_DIR="`$PKG_CONFIG --variable=libdir $gst_pkg_name`/$gst_pkg_name"
if test ! -d "$GST_PLUGINS_DIR"; then
AC_MSG_ERROR([GStreamer plugins directory could not be found])
fi
AC_SUBST(GST_PLUGINS_DIR)
AM_PATH_ORBIT2
dnl GTK+-2.0 C devel deps
GTK_REQUIRED=2.6
PKG_CHECK_MODULES(GTK,
glib-2.0 \
libgnome-2.0 \
libgnomeui-2.0 \
libbonobo-2.0 \
gconf-2.0 \
gdk-pixbuf-2.0 \
gnome-vfs-2.0 \
gnome-desktop-2.0 \
gtk+-2.0 >= $GTK_REQUIRED)
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
IDL_MODULES="bonobo-activation-2.0 libbonobo-2.0 libbonoboui-2.0"
IDL_INCLUDES="`$PKG_CONFIG --variable=idldir $IDL_MODULES | sed -e 's/^/ /' -e 's/ \+$//' -e 's/ / -I /g' -e 's/^ \+//'`"
AC_SUBST(IDL_INCLUDES)
dnl HAL devel deps
PKG_CHECK_MODULES(HAL,
gobject-2.0 \
glib-2.0 \
dbus-1 \
dbus-glib-1 \
hal >= 0.5.2)
AC_SUBST(HAL_CFLAGS)
AC_SUBST(HAL_LIBS)
dnl libnautilus-burn devel deps
PKG_CHECK_MODULES(LIBNAUTILUS_BURN, libnautilus-burn >= 2.10)
AC_SUBST(LIBNAUTILUS_BURN_CFLAGS)
AC_SUBST(LIBNAUTILUS_BURN_LIBS)
dnl GConf
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
AM_GCONF_SOURCE_2
dnl HELIX_LIBS stuff
if test "x$enable_helix" = "xyes"; then
POSSIBLE_HELIX_LIBS="/usr/lib/RealPlayer10 /usr/lib/RealPlayer /usr/lib/realplayer /usr/local/realplayer /usr/local/RealPlayer10 /usr/local/RealPlayer /opt/realplayer /usr/lib/realplay-10.0.5 /usr/lib/realplay-10.0.4 /usr/lib/realplay-10.0.3 /usr/lib/realplay-10.0.2 /usr/lib/realplay-10.0.1 /usr/lib/realplay-10.0.0 /usr/lib/realplay-10.0 /usr/lib/helix /usr/local/Helix /usr/local/HelixPlayer /usr/lib/helix/player /usr/local/helix/player /usr/local/lib/helix/player"
COMMON_HELIX_SIGNATURE="common/clntcore.so"
if test ! -e $helix_libs/$COMMON_HELIX_SIGNATURE; then
helix_libs="no";
for possible in $POSSIBLE_HELIX_LIBS; do
if test -e $possible/$COMMON_HELIX_SIGNATURE ; then
helix_libs="$possible";
break;
fi
done
fi
if test "x$helix_libs" = "xyes"; then
AC_MSG_ERROR([
You have enabled the Helix Player Engine, but configure could not
find a RealPlayer or Helix Player installation.
Please configure with --with-helix-libs=/path/to/install or to
disable the Helix engine, configure with --disable-helix])
else
HELIX_LIBRARY_PATH="$helix_libs";
AC_SUBST(HELIX_LIBRARY_PATH)
fi
fi
dnl Find the real @libdir@
expanded_libdir=`( case $prefix in NONE) prefix=$ac_default_prefix ;; *) ;; esac
case $exec_prefix in NONE) exec_prefix=$prefix ;; *) ;; esac
eval echo $libdir )`
AC_SUBST(expanded_libdir)
dnl Intl
ALL_LINGUAS=""
GETTEXT_PACKAGE=banshee
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext Package])
AM_GLIB_GNU_GETTEXT
dnl generated files
AC_OUTPUT([
Makefile
banshee.pc
entagged-sharp/Makefile
hal-sharp/Makefile
mediaengines/Makefile
mediaengines/gst/Makefile
mediaengines/gst/gst-player.dll.config
mediaengines/helix/Makefile
mediaengines/helix/helix-sharp.dll.config
libbanshee/Makefile
libbanshee/xing/Makefile
burn-sharp/Makefile
burn-sharp/burn-sharp.dll.config
plugincore/Makefile
src/Makefile
src/AssemblyInfo.cs
src/ConfigureDefines.cs
src/banshee
src/banshee.exe.config
src/ipod-sharp.dll.config
data/Makefile
data/banshee.desktop.in
data/org.gnome.Banshee.service
data/glade/Makefile
data/images/Makefile
po/Makefile.in
])
echo "
banshee-$VERSION
Install Prefix: ${prefix}
C Compiler: ${CC}
Mono C# Compiler: ${MCS}
Mono Runtime: ${MONO}
Engines:
GStreamer: yes
Helix: ${enable_helix}
Xing MP3 Encoder: ${enable_xing}
GStreamer Plugins: ${GST_PLUGINS_DIR}
"
if test "x${enable_helix}" = "xyes"; then
echo " Helix/RealPlayer: ${helix_libs}
"
fi
|