Skip to content

Commit

Permalink
Gentoo: Add support for lxde target.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Jezak committed Mar 24, 2017
1 parent 2db07c6 commit a6ed7f7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
12 changes: 8 additions & 4 deletions targets/lxde
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ CHROOTBIN='crouton-noroot startlxde'
. "${TARGETSDIR:="$PWD"}/common"

### Append to prepare.sh:
install lxde -- dictionaries-common chromium-browser network-manager wicd
if [ "${DISTROAKA:-"$DISTRO"}" = 'gentoo' ]; then
install lxde-meta
else
install lxde -- dictionaries-common chromium-browser network-manager wicd

# xenial needs a few more packages.
if release -ge xenial; then
install lxde-common lxsession-logout
# xenial needs a few more packages.
if release -ge xenial; then
install lxde-common lxsession-logout
fi
fi

TIPS="$TIPS
Expand Down
7 changes: 6 additions & 1 deletion targets/lxde-desktop
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ DESCRIPTION='Installs LXDE along with common applications. (Approx. 800MB)'
. "${TARGETSDIR:="$PWD"}/common"

### Append to prepare.sh:
install ubuntu=lubuntu-desktop,task-lxde-desktop -- network-manager
if [ "${DISTROAKA:-"$DISTRO"}" = 'gentoo' ]; then
install lightdm lxlauncher lxtask galculator gpicview leafpad \
lxappearance-obconf xarchiver libreoffice-bin
else
install ubuntu=lubuntu-desktop,task-lxde-desktop -- network-manager
fi

0 comments on commit a6ed7f7

Please sign in to comment.