~audio-recorder/audio-recorder/trunk

1 by Osmo Antero Maatta
Initial import 17.jan.2011
1
## Process this file with automake to produce Makefile.in
2
326 by Osmo Antero
Version 1.2. First build for Ubuntu 13.10 (Saucy Salamander). Renamed configure.in to configure.ac.
3
AM_CPPFLAGS = -DDATA_DIR=\""$(datadir)"\" \
1 by Osmo Antero Maatta
Initial import 17.jan.2011
4
    -DPACKAGE_LOCALE_DIR=\""$(datadir)/locale/"\" \
5
    -DPACKAGE_BIN_DIR=\""$(bindir)"\" \
6
    -DG_LOG_DOMAIN=\""Audio Recorder"\" \
7
    -DPIXMAPS_DIR=\""$(datadir)/pixmaps/$(PACKAGE)/"\" \
8
    -DDATADIR=\""$(datadir)"\" \
9
    -DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
10
    -DSYSCONFDIR=\""$(sysconfdir)"\" \
11
    -DPREFIX=\""$(prefix)"\" \
12
    -I$(top_srcdir) \
101 by Osmo Antero
New media-player interface that's based on the MediaPlayer2 standard. See src/dbus-mpris2.c.
13
    $(GLIB_CFLAGS) $(GIO_CFLAGS) $(GDK_CFLAGS) $(GTK_CFLAGS) \
412 by Osmo Antero
Code cleanups.
14
    $(GSTREAMER_CFLAGS) $(GSTREAMER_PBUTILS_CFLAGS) $(GTHREAD_CFLAGS) \
309 by Osmo Antero
Upgraded dbus-skype.c to use the newer GDBus intrerface.
15
    $(DBUS_CFLAGS) $(APP_INDICATOR_CFLAGS)
1 by Osmo Antero Maatta
Initial import 17.jan.2011
16
101 by Osmo Antero
New media-player interface that's based on the MediaPlayer2 standard. See src/dbus-mpris2.c.
17
LIBS = $(GLIB_LIBS) $(GIO_LIBS) $(GDK_LIBS) $(GTK_LIBS) \
412 by Osmo Antero
Code cleanups.
18
       $(GSTREAMER_LIBS) $(GSTREAMER_PBUTILS_LIBS) $(GTHREAD_LIBS) \
309 by Osmo Antero
Upgraded dbus-skype.c to use the newer GDBus intrerface.
19
       $(DBUS_LIBS) $(APP_INDICATOR_LIBS) $(MATH_LIB)
1 by Osmo Antero Maatta
Initial import 17.jan.2011
20
21
bin_PROGRAMS = audio-recorder
22
189 by osmoma at gmail
Replaced all GTK3's deprecated methods with new syntax.
23
audio_recorder_SOURCES = rec-window.h config.h \
1 by Osmo Antero Maatta
Initial import 17.jan.2011
24
    systray-icon.c \
25
    auto-start.c auto-start.h \
26
    help.c help.h \
27
    audio-sources.c audio-sources.h \
101 by Osmo Antero
New media-player interface that's based on the MediaPlayer2 standard. See src/dbus-mpris2.c.
28
    dbus-server.c dbus-server.h \
29
    dbus-mpris2.c dbus-mpris2.h \
3 by Osmo Antero Maatta
Updated some filenames and traslations
30
    dbus-player.c dbus-player.h \
69 by Osmo Antero
Ported this application to GTK/GDK 3. Using now GSettings (and dconf) instead of GConf2
31
    dconf.c dconf.h \
326 by Osmo Antero
Version 1.2. First build for Ubuntu 13.10 (Saucy Salamander). Renamed configure.in to configure.ac.
32
    gst-pipeline.c gst-pipeline.h \
173 by Osmo Antero
Support new systems; Ubuntu 12.10, Fedora 18. Improved timer and VAD-modules. Better gst-pipeline.
33
    gst-vad.c gst-vad.h \
1 by Osmo Antero Maatta
Initial import 17.jan.2011
34
    gst-recorder.c gst-recorder.h \
35
    log.c log.h \
36
    media-profiles.c media-profiles.h \
404 by Osmo Antero
Removed dependency to libpulse-dev. Using now Gstreamer to get the device list. Completed src/win-settings-pipe.[ch] module.
37
    gst-devices.c gst-devices.h \
173 by Osmo Antero
Support new systems; Ubuntu 12.10, Fedora 18. Improved timer and VAD-modules. Better gst-pipeline.
38
    rec-manager.c rec-manager.h rec-manager-struct.h \
1 by Osmo Antero Maatta
Initial import 17.jan.2011
39
    support.c support.h \
40 by Osmo Antero Maatta
Added ability to record from multiple devices. Major changes in all modules.
40
    timer.c timer.h \
41
	timer-parser.c \
1 by Osmo Antero Maatta
Initial import 17.jan.2011
42
    utility.c utility.h \
402 by Osmo Antero
Modifications towards version 1.5. Please see ChangeLog file.
43
    settings.c settings-pipe.c settings.h \
81 by Osmo Antero Maatta
New GtkLevelBar widget for the level indicator.
44
    about.c about.h \
472.1.2 by Osmo Antero
GTK3+ has now a standard GtkLevelBar widget. I renamed our 'GtkLevelBar' widet to 'LevelBar'.
45
    levelbar.c levelbar.h \
189 by osmoma at gmail
Replaced all GTK3's deprecated methods with new syntax.
46
    main.c
1 by Osmo Antero Maatta
Initial import 17.jan.2011
47
48
40 by Osmo Antero Maatta
Added ability to record from multiple devices. Major changes in all modules.
49