8989fc2771
An initial draft of it was done half a year ago but several tricky thingies had kept the code from showing up as it was rather brittle and incomplete. This implementation involves quite a few changes all over the place but finally works good enough for live and installer images. Please pay attention to the versions of these packages: - installer-feature-setup-plymouth (0.3.2-alt1+) - branding-altlinux-sisyphus (20110706-alt2+ if used) - plymouth (0.8.3-alt20.git20110406+) See also: - http://www.altlinux.org/Branding - http://www.altlinux.org/Plymouth
21 lines
664 B
Makefile
21 lines
664 B
Makefile
# desktop distributions
|
|
ifeq (distro,$(IMAGE_CLASS))
|
|
|
|
distro/.desktop-base: distro/.installer use/syslinux/ui/vesamenu use/x11/xorg
|
|
@$(call set,INSTALLER,desktop)
|
|
|
|
distro/.desktop-mini: distro/.desktop-base use/x11/xdm +power; @:
|
|
|
|
distro/.desktop-network: distro/.desktop-mini +vmguest
|
|
@$(call add,BASE_LISTS, \
|
|
$(call tags,(base || desktop) && (l10n || network)))
|
|
|
|
distro/icewm: distro/.desktop-network use/lowmem +icewm; @:
|
|
distro/tde: distro/.desktop-mini +tde; @:
|
|
distro/ltsp-tde: distro/tde +ltsp; @:
|
|
distro/ltsp-icewm: distro/icewm +ltsp; @:
|
|
distro/desktop-systemd: distro/icewm use/systemd; @:
|
|
distro/desktop-plymouth: distro/icewm +plymouth; @:
|
|
|
|
endif
|