58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
AC_INIT( [branding], [0.1], [http://bugzilla.altlinux.ru] )
|
|
|
|
|
|
PROGRESS_COLOR=`./fetch_color selectBackground` //MIDDLE_COLOR_DEC
|
|
TITLE_COLOR=`./fetch_color handle`
|
|
INACTIVE_COLOR=`./fetch_color inactiveTitleBtnBg`
|
|
LIGHT_COLOR_HEX=DFDFE0
|
|
MIDDLE_COLOR_HEX=C8C9CB
|
|
DARK_COLOR_HEX=909195
|
|
LIGHT_LABELS_HEX=FFFFFF
|
|
DARK_LABELS_HEX=000000
|
|
MIDDLE_LABELS_HEX=4d4d4f
|
|
LIGHT_COLOR_DEC=`./color_dec ${LIGHT_COLOR_HEX}`
|
|
MIDDLE_COLOR_DEC=`./color_dec ${MIDDLE_COLOR_HEX}`
|
|
DARK_COLOR_DEC=`./color_dec ${DARK_COLOR_HEX}`
|
|
|
|
AC_SUBST(THEME)
|
|
AC_SUBST(NAME)
|
|
AC_SUBST(BRAND_FNAME)
|
|
AC_SUBST(STATUS)
|
|
AC_SUBST(STATUS_EN)
|
|
AC_SUBST(VERSION)
|
|
AC_SUBST(PROGRESS_COLOR)
|
|
AC_SUBST(LIGHT_COLOR_HEX)
|
|
AC_SUBST(MIDDLE_COLOR_HEX)
|
|
AC_SUBST(DARK_COLOR_HEX)
|
|
AC_SUBST(LIGHT_LABELS_HEX)
|
|
AC_SUBST(DARK_LABELS_HEX)
|
|
AC_SUBST(MIDDLE_LABELS_HEX)
|
|
AC_SUBST(LIGHT_COLOR_DEC)
|
|
AC_SUBST(MIDDLE_COLOR_DEC)
|
|
AC_SUBST(DARK_COLOR_DEC)
|
|
AC_SUBST(TITLE_COLOR)
|
|
AC_SUBST(INACTIVE_COLOR)
|
|
|
|
AC_CONFIG_FILES([
|
|
Makefile
|
|
bootloader/config
|
|
bootsplash/config/bootsplash-640x480.cfg
|
|
bootsplash/config/bootsplash-800x600.cfg
|
|
alterator/design/design.ini
|
|
alterator/design/design.qss
|
|
bootloader/gfxboot.cfg
|
|
kde3-settings/apps/kdisplay/color-schemes/scheme.kcsrc
|
|
notes/release-notes.ru.html
|
|
notes/release-notes.all.html
|
|
notes/license.ru.html
|
|
notes/license.all.html
|
|
indexhtml.desktop
|
|
indexhtml/index-ru.html
|
|
indexhtml/index-uk.html
|
|
indexhtml/index-en.html
|
|
indexhtml/index.css
|
|
alterator/styles/alterator.css
|
|
kde3-styles-splash/Theme.rc
|
|
])
|
|
AC_OUTPUT
|