diff options
author | Perberos <[email protected]> | 2011-12-01 23:42:46 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 23:42:46 -0300 |
commit | ead8ef613ce66d51399a87d225b4cd52c6c7983e (patch) | |
tree | 28331e03ae7cced58068fc2a35dbf127d109a73e /configure.in | |
download | mate-themes-ead8ef613ce66d51399a87d225b4cd52c6c7983e.tar.bz2 mate-themes-ead8ef613ce66d51399a87d225b4cd52c6c7983e.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 359 |
1 files changed, 359 insertions, 0 deletions
diff --git a/configure.in b/configure.in new file mode 100644 index 00000000..656ba6ab --- /dev/null +++ b/configure.in @@ -0,0 +1,359 @@ +AC_PREREQ(2.53) + +AC_INIT([mate-themes], [2011.11.16], [https://github.com/perberos/mate-desktop-environment]) +AC_CONFIG_SRCDIR([icon-themes]) + +AM_INIT_AUTOMAKE([1.9 tar-ustar]) + +# Enable silent build rules by default, requires at least +# Automake-1.11. Disable by either passing --disable-silent-rules to +# configure or passing V=1 to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +IT_PROG_INTLTOOL([0.35.0]) +PKG_PROG_PKG_CONFIG([0.19]) + +GETTEXT_PACKAGE="${PACKAGE}" +AC_SUBST(GETTEXT_PACKAGE) + +AM_GLIB_GNU_GETTEXT + +# AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME +# this is the directory where the *.{mo,gmo} files are installed +localedir='${prefix}/${DATADIRNAME}/locale' +AC_SUBST(localedir) + +# Workaround to make aclocal get the right flags +AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") + +# Check GTK+ theme engines +PKG_CHECK_MODULES(THEME_ENGINE, + [gtk+-2.0 >= 2.0.0 dnl + gdk-pixbuf-2.0 >= 2.0.0 dnl + gtk-engines-2 >= 2.15.3 ]) + +GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0` +AC_SUBST(GTK_VERSION) + +# Check if it's a development (odd minor) version (obsolete with date versions) +#AC_MSG_CHECKING([development series build]) +#MINOR_VERSION="`echo $PACKAGE_VERSION|cut -d. -f2`" +#if expr $MINOR_VERSION % 2 > /dev/null != "0"; then + # Development version, disable mapping + # and enable placeholder by default +# icon_mapping_policy=no +# placeholders_policy=yes +# enable_test_themes=yes +# AC_MSG_RESULT([yes]) +#else + # Stable version, enable mapping + # and disable placeholders by default + icon_mapping_policy=yes + placeholders_policy=no +# AC_MSG_RESULT([no]) +#fi + +# Configure option to force placeholders +AC_ARG_ENABLE([placeholders], + AC_HELP_STRING([--enable-placeholders], + [Enable placeholder icons [default=auto]]), + enable_placeholders=$enableval, + enable_placeholders=$placeholders_policy) + +AM_CONDITIONAL(PLACEHOLDERS, test "x$enable_placeholders" != "xno") + +# Configure option to force icon mapping +AC_ARG_ENABLE([icon-mapping], + AC_HELP_STRING([--enable-icon-mapping], + [Enable compatibility symlinks [default=auto]]), + enable_mapping=$enableval, + enable_mapping=$icon_mapping_policy) + +# Check for icon-naming-utils +ICONMAP="true" +if test "x$enable_mapping" != "xno"; then + UTILS_REQUIRED=0.8.7 + + AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED]) + PKG_CHECK_EXISTS(icon-naming-utils >= $UTILS_REQUIRED, have_utils=yes, have_utils=no) + if test "x$have_utils" = "xyes"; then + UTILS_PATH="`$PKG_CONFIG --variable=program_path icon-naming-utils`" + ICONMAP="$UTILS_PATH/icon-name-mapping" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + AC_MSG_ERROR([icon-naming-utils >= $UTILS_REQUIRED is required to build and install mate-themes]) + fi +fi +AC_SUBST(ICONMAP) +AM_CONDITIONAL(LEGACY_ICON_MAPPING, test "x$enable_mapping" != "xno") + +# Configure options for extra a11y themes +AC_ARG_ENABLE(all-themes, + AC_HELP_STRING([--enable-all-themes], + [Install all a11y theme sets, default is core a11y themes only]),, + [enable_all_themes=no]) +AM_CONDITIONAL(CORE_THEMES_ONLY, test "$enable_all_themes" = no) + +# Configure option for testing themes +AC_ARG_ENABLE(test-themes, + AC_HELP_STRING([--enable-test-themes], + [Install themes to test applications.]),, + [enable_test_themes=no]) + +if test "x$enable_test_themes" = "xyes"; then + TEST_THEMES="ClearlooksTest" +else + TEST_THEMES="" +fi +AC_SUBST(TEST_THEMES) + +### Cursor theme to use for large print desktop themes. +### TODO: Should probably check whether specified/default themes are +### installed too, and do something appropriate if not. +AC_ARG_WITH(lp-cursor-theme, +[AS_HELP_STRING([--with-lp-cursor-theme=THEME], + [cursor theme for Large Print desktop theme [default=whiteglass]])], +[LARGEPRINT_CURSOR_THEME="$withval"], +[LARGEPRINT_CURSOR_THEME="whiteglass"], +) +AC_SUBST(LARGEPRINT_CURSOR_THEME) + +AC_ARG_WITH(hclp-cursor-theme, +[AS_HELP_STRING([--with-hclp-cursor-theme=THEME], + [cursor theme for High Contrast Large Print desktop theme [default=redglass]])], +[LARGEPRINT_HC_CURSOR_THEME="$withval"], +[LARGEPRINT_HC_CURSOR_THEME="redglass"], +) +AC_SUBST(LARGEPRINT_HC_CURSOR_THEME) + +AC_ARG_WITH(hclpi-cursor-theme, +[AS_HELP_STRING([--with-hclpi-cursor-theme=THEME], + [cursor theme for High Contrast Large Print Inverse desktop theme [default=whiteglass]])], +[LARGEPRINT_HCI_CURSOR_THEME="$withval"], +[LARGEPRINT_HCI_CURSOR_THEME="whiteglass"], +) +AC_SUBST(LARGEPRINT_HCI_CURSOR_THEME) + +### Icon sizes for all large print themes + +LARGEPRINT_DND="48,48" +LARGEPRINT_MENU="32,32" +LARGEPRINT_PANEL_MENU="48,48" +LARGEPRINT_LARGE_TOOLBAR="48,48" +LARGEPRINT_SMALL_TOOLBAR="32,32" +LARGEPRINT_BUTTON="32,32" +LARGEPRINT_DIALOG="64,64" +LARGEPRINT_MINI_COMMANDER="24,24" + +LARGEPRINT_ICON_SIZES="mini-commander-icon=$LARGEPRINT_MINI_COMMANDER:print-manager=$LARGEPRINT_DIALOG:panel-button=$LARGEPRINT_BUTTON:gtk-dnd=$LARGEPRINT_DND:gtk-menu=$LARGEPRINT_MENU:panel-menu=$LARGEPRINT_PANEL_MENU:gtk-large-toolbar=$LARGEPRINT_LARGE_TOOLBAR:gtk-small-toolbar=$LARGEPRINT_SMALL_TOOLBAR:gtk-button=$LARGEPRINT_BUTTON:gtk-dialog=$LARGEPRINT_DIALOG" + +LARGEPRINT_FONT="sans 18" +LARGEPRINT_DOCUMENTS_FONT="sans 18" +LARGEPRINT_DESKTOP_FONT="sans 18" +LARGEPRINT_WINDOW_FONT="sans 18" +LARGEPRINT_MONOSPACE_FONT="monospace 18" +LARGEPRINT_CURSOR_SIZE="48" + +AC_SUBST(LARGEPRINT_ICON_SIZES) +AC_SUBST(LARGEPRINT_FONT) +AC_SUBST(LARGEPRINT_DOCUMENTS_FONT) +AC_SUBST(LARGEPRINT_DESKTOP_FONT) +AC_SUBST(LARGEPRINT_WINDOW_FONT) +AC_SUBST(LARGEPRINT_MONOSPACE_FONT) +AC_SUBST(LARGEPRINT_CURSOR_SIZE) + +dnl used to substitute in common sections of theme gtkrc files +gtk_stock_icons_rc=${srcdir}/common/gtk-stock-icons.rc +panel_stock_icons_rc=${srcdir}/common/panel-stock-icons.rc +media_stock_icons_rc=${srcdir}/common/media-stock-icons.rc +capplet_stock_icons_rc=${srcdir}/common/capplet-stock-icons.rc +marco_stock_icons_rc=${srcdir}/common/marco-stock-icons.rc +AC_SUBST_FILE(gtk_stock_icons_rc) +AC_SUBST_FILE(panel_stock_icons_rc) +AC_SUBST_FILE(media_stock_icons_rc) +AC_SUBST_FILE(capplet_stock_icons_rc) +AC_SUBST_FILE(marco_stock_icons_rc) + +AC_CONFIG_FILES([ +Makefile +mate-themes.spec +common/Makefile +cursor-themes/Makefile +desktop-themes/Makefile +desktop-themes/aldabra//Makefile +desktop-themes/aldabra/gtk-2.0/Makefile +desktop-themes/aldabra/gtk-2.0/assets/Makefile +desktop-themes/aldabra/gtk-3.0/Makefile +desktop-themes/aldabra/gtk-3.0/assets/Makefile +desktop-themes/aldabra/metacity-1/Makefile +desktop-themes/Crux/Makefile +desktop-themes/Clearlooks/Makefile +desktop-themes/ClearlooksTest/Makefile +desktop-themes/Glider/Makefile +desktop-themes/Glossy/Makefile +desktop-themes/HighContrast/Makefile +desktop-themes/HighContrastInverse/Makefile +desktop-themes/HighContrastLargePrint/Makefile +desktop-themes/HighContrastLargePrint/index.theme.in +desktop-themes/HighContrastLargePrintInverse/Makefile +desktop-themes/HighContrastLargePrintInverse/index.theme.in +desktop-themes/LargePrint/Makefile +desktop-themes/LargePrint/index.theme.in +desktop-themes/LowContrast/Makefile +desktop-themes/LowContrastLargePrint/Makefile +desktop-themes/LowContrastLargePrint/index.theme.in +desktop-themes/Mist/Makefile +marco-themes/Makefile +gtk-themes/Makefile +gtk-themes/Glider/Makefile +gtk-themes/Glossy/Makefile +gtk-themes/ClearlooksClassic/Makefile +gtk-themes/ClearlooksTest/Makefile +gtk-themes/HighContrast/Makefile +gtk-themes/HighContrast/gtkrc +gtk-themes/HighContrastInverse/Makefile +gtk-themes/HighContrastInverse/gtkrc +gtk-themes/HighContrastLargePrint/Makefile +gtk-themes/HighContrastLargePrint/gtkrc +gtk-themes/HighContrastLargePrint/pixmaps/Makefile +gtk-themes/HighContrastLargePrintInverse/Makefile +gtk-themes/HighContrastLargePrintInverse/gtkrc +gtk-themes/HighContrastLargePrintInverse/pixmaps/Makefile +gtk-themes/Inverted/Makefile +gtk-themes/LargePrint/Makefile +gtk-themes/LargePrint/gtkrc +gtk-themes/LowContrast/Makefile +gtk-themes/LowContrast/gtkrc +gtk-themes/LowContrastLargePrint/Makefile +gtk-themes/LowContrastLargePrint/gtkrc +gtk-themes/LowContrastLargePrint/pixmaps/Makefile +gtk-themes/Simple/Makefile +icon-themes/Makefile +icon-themes/Crux/Makefile +icon-themes/Crux/16x16/Makefile +icon-themes/Crux/16x16/actions/Makefile +icon-themes/Crux/16x16/status/Makefile +icon-themes/Crux/16x16/places/Makefile +icon-themes/Crux/22x22/Makefile +icon-themes/Crux/22x22/actions/Makefile +icon-themes/Crux/22x22/status/Makefile +icon-themes/Crux/22x22/places/Makefile +icon-themes/Crux/24x24/Makefile +icon-themes/Crux/24x24/actions/Makefile +icon-themes/Crux/24x24/status/Makefile +icon-themes/Crux/24x24/places/Makefile +icon-themes/Crux/32x32/Makefile +icon-themes/Crux/32x32/actions/Makefile +icon-themes/Crux/32x32/status/Makefile +icon-themes/Crux/32x32/places/Makefile +icon-themes/Crux/scalable/Makefile +icon-themes/Crux/scalable/actions/Makefile +icon-themes/Crux/scalable/status/Makefile +icon-themes/Crux/scalable/places/Makefile +icon-themes/HighContrast/Makefile +icon-themes/HighContrastInverse/Makefile +icon-themes/HighContrastLargePrint/Makefile +icon-themes/HighContrastLargePrint/36x36/Makefile +icon-themes/HighContrastLargePrint/36x36/animations/Makefile +icon-themes/HighContrastLargePrint/48x48/Makefile +icon-themes/HighContrastLargePrint/48x48/actions/Makefile +icon-themes/HighContrastLargePrint/48x48/apps/Makefile +icon-themes/HighContrastLargePrint/48x48/categories/Makefile +icon-themes/HighContrastLargePrint/48x48/devices/Makefile +icon-themes/HighContrastLargePrint/48x48/emblems/Makefile +icon-themes/HighContrastLargePrint/48x48/mimetypes/Makefile +icon-themes/HighContrastLargePrint/48x48/places/Makefile +icon-themes/HighContrastLargePrint/48x48/status/Makefile +icon-themes/HighContrastLargePrintInverse/Makefile +icon-themes/HighContrastLargePrintInverse/36x36/Makefile +icon-themes/HighContrastLargePrintInverse/36x36/animations/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/actions/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/apps/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/categories/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/devices/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/emblems/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/mimetypes/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/places/Makefile +icon-themes/HighContrastLargePrintInverse/48x48/status/Makefile +icon-themes/HighContrast-SVG/Makefile +icon-themes/HighContrast-SVG/48x48/Makefile +icon-themes/HighContrast-SVG/48x48/animations/Makefile +icon-themes/HighContrast-SVG/scalable/Makefile +icon-themes/HighContrast-SVG/scalable/actions/Makefile +icon-themes/HighContrast-SVG/scalable/apps/Makefile +icon-themes/HighContrast-SVG/scalable/categories/Makefile +icon-themes/HighContrast-SVG/scalable/devices/Makefile +icon-themes/HighContrast-SVG/scalable/emblems/Makefile +icon-themes/HighContrast-SVG/scalable/emotes/Makefile +icon-themes/HighContrast-SVG/scalable/mimetypes/Makefile +icon-themes/HighContrast-SVG/scalable/places/Makefile +icon-themes/HighContrast-SVG/scalable/status/Makefile +icon-themes/HighContrast-SVG/scalable/actions-extra/Makefile +icon-themes/HighContrast-SVG/scalable/apps-extra/Makefile +icon-themes/HighContrast-SVG/scalable/categories-extra/Makefile +icon-themes/HighContrast-SVG/scalable/devices-extra/Makefile +icon-themes/HighContrast-SVG/scalable/emblems-extra/Makefile +icon-themes/HighContrast-SVG/scalable/emotes-extra/Makefile +icon-themes/HighContrast-SVG/scalable/mimetypes-extra/Makefile +icon-themes/HighContrast-SVG/scalable/places-extra/Makefile +icon-themes/HighContrast-SVG/scalable/status-extra/Makefile +icon-themes/LargePrint/Makefile +icon-themes/Mist/22x22/status/Makefile +icon-themes/Mist/22x22/devices/Makefile +icon-themes/Mist/22x22/actions/Makefile +icon-themes/Mist/22x22/places/Makefile +icon-themes/Mist/22x22/apps/Makefile +icon-themes/Mist/22x22/Makefile +icon-themes/Mist/16x16/status/Makefile +icon-themes/Mist/16x16/devices/Makefile +icon-themes/Mist/16x16/actions/Makefile +icon-themes/Mist/16x16/places/Makefile +icon-themes/Mist/16x16/apps/Makefile +icon-themes/Mist/16x16/Makefile +icon-themes/Mist/32x32/status/Makefile +icon-themes/Mist/32x32/devices/Makefile +icon-themes/Mist/32x32/actions/Makefile +icon-themes/Mist/32x32/places/Makefile +icon-themes/Mist/32x32/apps/Makefile +icon-themes/Mist/32x32/Makefile +icon-themes/Mist/Makefile +icon-themes/Mist/48x48/status/Makefile +icon-themes/Mist/48x48/devices/Makefile +icon-themes/Mist/48x48/actions/Makefile +icon-themes/Mist/48x48/places/Makefile +icon-themes/Mist/48x48/apps/Makefile +icon-themes/Mist/48x48/Makefile +icon-themes/Mist/24x24/status/Makefile +icon-themes/Mist/24x24/devices/Makefile +icon-themes/Mist/24x24/actions/Makefile +icon-themes/Mist/24x24/places/Makefile +icon-themes/Mist/24x24/apps/Makefile +icon-themes/Mist/24x24/Makefile +icon-themes/Mist/256x256/status/Makefile +icon-themes/Mist/256x256/devices/Makefile +icon-themes/Mist/256x256/actions/Makefile +icon-themes/Mist/256x256/places/Makefile +icon-themes/Mist/256x256/apps/Makefile +icon-themes/Mist/256x256/Makefile +po/Makefile.in +]) + +AC_OUTPUT + +dnl ========================================================================== +echo " +mate-themes-$VERSION: + + Installation prefix: ${prefix} + + Enable placeholders: ${enable_placeholders} + Enable legacy icons: ${enable_mapping} + Enable all themes: ${enable_all_themes} + Enable test themes: ${enable_test_themes} + LargePrint cursor theme: ${LARGEPRINT_CURSOR_THEME} + HC LargePrint cursor theme: ${LARGEPRINT_HC_CURSOR_THEME} + HCI LargePrint cursor theme: ${LARGEPRINT_HCI_CURSOR_THEME} + +" |