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
|
AC_PREREQ(2.52)
dnl ==============================================================
dnl Process this file with autoconf to produce a configure script.
dnl ==============================================================
AC_INIT(system-tools-backends,1.4.2)
AC_CONFIG_AUX_DIR(.)
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AC_PROG_LIBTOOL
AC_PROG_INTLTOOL([0.29])
dnl ==============================================================
dnl Set SCRIPTS_DIR, FILES_DIR & LOCALE_DIR
dnl ==============================================================
if test "x${prefix}" = "xNONE"; then
scriptsdir="${ac_default_prefix}/share/setup-tool-backends/scripts"
filesdir="${ac_default_prefix}/share/setup-tool-backends/files"
localedir="${ac_default_prefix}/share/locale"
else
scriptsdir="${prefix}/share/setup-tool-backends/scripts"
filesdir="${prefix}/share/setup-tool-backends/files"
localedir="${prefix}/share/locale"
fi
AC_SUBST(scriptsdir)
AC_SUBST(filesdir)
AC_SUBST(localedir)
dnl ==============================================================
dnl END: Set SCRIPTS_DIR, FILES_DIR & LOCALE_DIR
dnl ==============================================================
GETTEXT_PACKAGE=system-tools-backends
AC_SUBST(GETTEXT_PACKAGE)
ALL_LINGUAS="ar az bg bn bs ca cs da de el en_CA en_GB es eu fi fr gu hi hr hu id it ja ko lt ms nb ne nl no pa pl pt pt_BR ro rw sk sq sr sr@Latn sv ta th tr uk vi xh zh_CN zh_TW"
AM_GLIB_GNU_GETTEXT
AC_OUTPUT([
Makefile
m4macros/Makefile
po/Makefile.in
system-tools-backends.pc
files/Makefile
boot-conf
dhcpd-conf
disks-conf
display-conf
font-conf
hardware-conf
internetsharing-conf
memory-conf
mouse-conf
network-conf
package-conf
print-conf
services-conf
shares-conf
time-conf
users-conf
boot-grub.pl
boot-lilo.pl
boot-yaboot.pl
boot.pl
debug.pl
dhcpd.pl
file.pl
filesys.pl
font.pl
general.pl
ishare.pl
media.pl
network.pl
parse.pl
partition.pl
platform.pl
print.pl
process.pl
removable-media.pl
replace.pl
report.pl
service-list.pl
service.pl
share.pl
tokenizer.pl
util.pl
xml.pl
x.pl
])
echo "
Configuration (BACKENDS):
The backends will be installed in : ${scriptsdir}
The files will be installed in : ${filesdir}
"
|