Project:
PiTiVi
Code Location:
git://git.gnome.org/pitivimaster
configure.ac
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
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
AC_PREREQ(2.52) dnl Note for packagers: see pitivi/check.py for the dependencies dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, cvs and prerelease does Werror too AC_INIT(PiTiVi, 0.15.2, https://bugzilla.gnome.org/browse.cgi?product=pitivi, pitivi) dnl initialize automake AM_INIT_AUTOMAKE dnl define PACKAGE_VERSION_* variables AS_VERSION dnl check if this is a release version AS_NANO(PITIVI_CVS="no", PITIVI_CVS="yes") dnl can autoconf find the source ? AC_CONFIG_SRCDIR([pitivi/application.py]) AC_SUBST_FILE(AUTHORS) AUTHORS=$srcdir/AUTHORS AM_INIT_AUTOMAKE($PACKAGE, $VERSION) AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4") AS_AC_EXPAND(LIBDIR, $libdir) AC_MSG_NOTICE(Storing library files in $LIBDIR) AS_AC_EXPAND(DATADIR, $datadir) AC_MSG_NOTICE(Storing data files in $DATADIR) AS_AC_EXPAND(SYSCONFDIR, $sysconfdir) AC_MSG_NOTICE(Storing configuration files in $SYSCONFDIR) AS_AC_EXPAND(LOCALSTATEDIR, $localstatedir) AC_MSG_NOTICE(Using localstatedir $LOCALSTATEDIR) dnl check for python AS_PATH_PYTHON(2.5) dnl ALL_LINGUAS="fr" GETTEXT_PACKAGE="pitivi" AC_SUBST([GETTEXT_PACKAGE]) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE", [Gettext package]) AM_GLIB_GNU_GETTEXT IT_PROG_INTLTOOL([0.35.0]) CONFIGURED_PYTHONPATH=$PYTHONPATH AC_SUBST(CONFIGURED_PYTHONPATH) CONFIGURED_LD_LIBRARY_PATH=$LD_LIBRARY_PATH AC_SUBST(CONFIGURED_LD_LIBRARY_PATH) CONFIGURED_GST_PLUGIN_PATH=$GST_PLUGIN_PATH AC_SUBST(CONFIGURED_GST_PLUGIN_PATH) AC_CONFIG_FILES([bin/pitivi], [chmod +x bin/pitivi]) GNOME_DOC_INIT([0.18.0]) dnl output stuff AC_OUTPUT( Makefile bin/Makefile common/Makefile common/m4/Makefile help/Makefile pitivi/Makefile pitivi/configure.py pitivi/dialogs/Makefile pitivi/undo/Makefile pitivi/utils/Makefile pitivi/timeline/Makefile po/Makefile.in tests/Makefile data/Makefile data/pitivi.desktop.in data/icons/Makefile data/icons/16x16/Makefile data/icons/22x22/Makefile data/icons/24x24/Makefile data/icons/32x32/Makefile data/icons/48x48/Makefile data/icons/256x256/Makefile data/icons/scalable/Makefile data/pixmaps/Makefile data/ui/Makefile data/renderpresets/Makefile data/audiopresets/Makefile data/videopresets/Makefile )
