~ubuntu-branches/ubuntu/raring/gnome-photo-printer/raring

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Michael Schlueter
  • Date: 2007-01-14 13:56:09 UTC
  • mfrom: (1.2.3 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20070114135609-mz4hcg50xnkaeg17
Tags: 0.7.0-1
* New upstream release
* Bug fix: gnome-photo-printer: No integration into GNOME menu, thanks
  to Sebastien NOBILI (closes: #406296)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
dnl (Process this file with autoconf to produce a configure script.)
5
5
AC_REVISION($Revision$)dnl
6
6
 
7
 
AC_INIT(gnome-photo-printer,0.6.7,sv@fogman.de,gpp)
 
7
AC_INIT(gnome-photo-printer,0.7.0,sv@fogman.de,gpp)
8
8
AC_PREREQ(2.57)
9
9
AC_CONFIG_SRCDIR(src/gpp.c)
10
10
AM_CONFIG_HEADER(config.h)
14
14
AC_ISC_POSIX
15
15
AC_HEADER_STDC
16
16
 
 
17
IT_PROG_INTLTOOL([0.35.0])
 
18
 
17
19
AC_PATH_PROG(PKGCONFIG, pkg-config, no)
18
20
if test "$PKGCONFIG" = no ; then
19
21
        AC_MSG_ERROR(pkg-config was not found. Please install version 0.6.0 or newer from http://www.freedesktop.org/software.)
63
65
AC_SUBST(GPP_DATADIR)
64
66
AC_SUBST(GPP_LIBDIR)
65
67
 
 
68
dnl -----------------------------------------------------------
 
69
dnl Language Support
 
70
dnl -----------------------------------------------------------
 
71
GETTEXT_PACKAGE=gnome-photo-printer
 
72
AC_SUBST(GETTEXT_PACKAGE)
 
73
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",[Gettext package name])
 
74
 
 
75
AM_GLIB_GNU_GETTEXT
 
76
 
 
77
localdir='${prefix}/${DATADIRNAME}/locale'
 
78
AC_SUBST(localdir)
 
79
 
 
80
dnl -----------------------------------------------------------
 
81
dnl .desktop file and icon support
 
82
dnl -----------------------------------------------------------
 
83
 
 
84
 
 
85
# =================
66
86
AC_OUTPUT([
67
 
gpp.spec
68
 
VERSION
69
 
Makefile
70
 
src/Makefile
71
 
glade/Makefile
72
 
pixmaps/Makefile
 
87
        gpp.spec
 
88
        VERSION
 
89
        Makefile
 
90
        src/Makefile
 
91
        data/Makefile
 
92
        data/glade/Makefile
 
93
        data/pixmaps/Makefile
 
94
        data/desktop/Makefile
 
95
        data/icons/Makefile
 
96
        po/Makefile.in
73
97
])