Commit 5a260fd3 authored by Anton V. Boyarshinov's avatar Anton V. Boyarshinov

5.0-alt2

- colors integration - graphics package added
parent 5a3d0325
...@@ -64,6 +64,18 @@ PreReq(post,preun): alternatives >= 0.2 ...@@ -64,6 +64,18 @@ PreReq(post,preun): alternatives >= 0.2
%description browser-qt %description browser-qt
Design for QT alterator for Desktop version Design for QT alterator for Desktop version
%package graphics
Summary: design for ALT
License: Different licenses
Group: Graphics
Provides: design-graphics-%theme
PreReq(post,preun): alternatives >= 0.2
%description graphics
This package contains some graphics for ALT design.
%prep %prep
%setup -q %setup -q
...@@ -119,6 +131,23 @@ cat >%buildroot/%_altdir/%name <<__EOF__ ...@@ -119,6 +131,23 @@ cat >%buildroot/%_altdir/%name <<__EOF__
__EOF__ __EOF__
popd popd
#graphicks
mkdir -p %buildroot/%_datadir/design/{%theme,backgrounds}
cp -ar graphics/* %buildroot/%_datadir/design/%theme
pushd %buildroot/%_datadir/design/%theme
pushd backgrounds
ln -sf ../../../wallpapers more
popd
popd
install -d %buildroot//etc/alternatives/packages.d
cat >%buildroot/etc/alternatives/packages.d/%name <<__EOF__
%_datadir/artworks %_datadir/design/%theme 10
%_datadir/design-current %_datadir/design/%theme 10
__EOF__
#bootloader #bootloader
%pre bootloader %pre bootloader
...@@ -154,6 +183,9 @@ popd ...@@ -154,6 +183,9 @@ popd
/usr/share/alterator-browser-qt/design/desktop.rcc /usr/share/alterator-browser-qt/design/desktop.rcc
%files graphics
%config /etc/alternatives/packages.d/%name
%_datadir/design
%files bootsplash %files bootsplash
%_sysconfdir/bootsplash/themes/%theme/ %_sysconfdir/bootsplash/themes/%theme/
...@@ -161,7 +193,8 @@ popd ...@@ -161,7 +193,8 @@ popd
%changelog %changelog
* Fri Dec 26 2008 Anton V. Boyarshinov <boyarsh@altlinux.ru> 5.0-alt2 * Fri Dec 26 2008 Anton V. Boyarshinov <boyarsh@altlinux.ru> 5.0-alt2
- colors integration - colors integration
- graphics package added
* Thu Dec 18 2008 Anton V. Boyarshinov <boyarsh@altlinux.ru> 5.0-alt1 * Thu Dec 18 2008 Anton V. Boyarshinov <boyarsh@altlinux.ru> 5.0-alt1
- initial sceleton - initial sceleton
......
...@@ -37,6 +37,18 @@ AC_ARG_WITH(status, ...@@ -37,6 +37,18 @@ AC_ARG_WITH(status,
[ [
STATUS="" STATUS=""
]) ])
AC_ARG_WITH(brand,
AC_HELP_STRING([--with-status=brand],
[brand, e.g '--with-brand="ALT Linux"']),
[
if test -n "$with_brand" ; then
BRAND_FNAME="$with_brand"
fi
],
[
BRAND_FNAME=""
])
AC_ARG_WITH(version, AC_ARG_WITH(version,
AC_HELP_STRING([--with-version=5.0], AC_HELP_STRING([--with-version=5.0],
...@@ -59,6 +71,7 @@ INACTIVE_COLOR=`./fetch_color inactiveTitleBtnBg` ...@@ -59,6 +71,7 @@ INACTIVE_COLOR=`./fetch_color inactiveTitleBtnBg`
AC_SUBST(THEMEMC) AC_SUBST(THEMEMC)
AC_SUBST(THEMELC) AC_SUBST(THEMELC)
AC_SUBST(THEME) AC_SUBST(THEME)
AC_SUBST(BRAND_FNAME)
AC_SUBST(STATUS) AC_SUBST(STATUS)
AC_SUBST(VERSION) AC_SUBST(VERSION)
AC_SUBST(PROGRESS_COLOR) AC_SUBST(PROGRESS_COLOR)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment