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
|
AC_INIT(system-config-printer, 1.2.3)
AC_CONFIG_SRCDIR(system-config-printer.py)
AM_INIT_AUTOMAKE([dist-xz dist-bzip2 subdir-objects 1.6])
IT_PROG_INTLTOOL
AM_GNU_GETTEXT([external])
AM_PATH_PYTHON
PACKAGE="AC_PACKAGE_NAME"
VERSION="AC_PACKAGE_VERSION"
GETTEXT_PACKAGE="AC_PACKAGE_NAME"
CATOBJEXT=".gmo"
DATADIRNAME=share
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_SUBST(GETTEXT_PACKAGE)
AC_SUBST(CATOBJEXT)
AC_SUBST(DATADIRNAME)
# Let distributor specify if they want to use a vendor with desktop-file-install
AC_ARG_WITH(desktop-vendor,
[AC_HELP_STRING([--with-desktop-vendor],
[Specify the vendor for use in calls to desktop-file-install @<:@default=@:>@])],,
[with_desktop_vendor=""])
VENDOR=$with_desktop_vendor
if test "x$VENDOR" = "x"; then
DESKTOPVENDOR=
DESKTOPPREFIX=
else
DESKTOPVENDOR="--vendor $VENDOR"
DESKTOPPREFIX="$VENDOR-"
fi
AC_SUBST(DESKTOPVENDOR)
AC_SUBST(DESKTOPPREFIX)
PKG_CHECK_MODULES(GLIB, glib-2.0, has_glib=yes, has_glib=no)
PKG_CHECK_MODULES(libudev, libudev, has_libudev=yes, has_libudev=no)
PKG_CHECK_MODULES(libusb, libusb, has_libusb=yes, has_libusb=no)
AC_ARG_WITH(udev-rules,
[AC_HELP_STRING([--with-udev-rules],
[Enable automatic USB print queue configuration @<:@default=no@:>@])],
[],
[with_udev_rules=no])
AM_CONDITIONAL([UDEV_RULES], [test x$with_udev_rules])
if test x$with_udev_rules != xno; then
if test x$has_glib == xno -o \
x$has_libudev == xno -o \
x$has_libusb == xno; then
AC_MSG_ERROR([Missing libraries])
fi
AM_PROG_CC_C_O
fi
ALL_LINGUAS="ar as bg bn_IN bn br bs ca cs cy da de el en_GB es et fa fi fr gu he hi hr hu hy id is it ja ka kn ko lo lv mai mk ml mr ms my nb nl nn or pa pl pt_BR pt ro ru si sk sl sr@latin sr sv ta te th tr uk vi zh_CN zh_TW"
AC_CONFIG_FILES([
Makefile
po/Makefile.in
system-config-printer
system-config-printer-applet
])
AC_OUTPUT
|