Path: blob/main/Mk/Scripts/desktop-categories.sh
16124 views
#!/bin/sh1#2# MAINTAINER: [email protected]34set -e5set -o pipefail67. "${dp_SCRIPTSDIR}/functions.sh"89validate_env dp_CATEGORIES dp_SORT dp_TR dp_ECHO_CMD1011[ -n "${DEBUG_MK_SCRIPTS}" ] || [ -n "${DEBUG_MK_SCRIPTS_DESKTOP_CATEGORIES}" ] && set -x1213set -u1415categories=""16for native_category in ${dp_CATEGORIES}; do17c=""18case ${native_category} in19accessibility) c="Utility Accessibility" ;;20archivers) c="Utility Archiving" ;;21astro) c="Education Science Astronomy" ;;22audio) c="AudioVideo Audio" ;;23benchmarks) c="System" ;;24biology) c="Education Science Biology" ;;25cad) c="Graphics Engineering" ;;26comms) c="Utility" ;;27converters) c="Utility" ;;28databases) c="Office Database" ;;29deskutils) c="Utility" ;;30devel) c="Development" ;;31dns) c="Network" ;;32elisp) c="Development" ;;33editors) c="Utility" ;;34education) c="Education" ;;35emulators) c="System Emulator" ;;36finance) c="Office Finance" ;;37ftp) c="Network FileTransfer" ;;38games) c="Game" ;;39geography) c="Education Science Geography" ;;40gnome) c="GNOME GTK" ;;41graphics) c="Graphics" ;;42hamradio) c="HamRadio" ;;43haskell) c="Development" ;;44irc) c="Network IRCClient" ;;45java) c="Development Java" ;;46kde) c="KDE Qt" ;;47lang) c="Development" ;;48lisp) c="Development" ;;49mail) c="Office Email" ;;50mate) c="MATE GTK" ;;51math) c="Education Science Math" ;;52mbone) c="Network AudioVideo" ;;53multimedia) c="AudioVideo" ;;54net) c="Network" ;;55net-im) c="Network InstantMessaging" ;;56net-mgmt) c="Network" ;;57net-p2p) c="Network P2P" ;;58net-vpn) c="Network VPN" ;;59news) c="Network News" ;;60parallel) c="ParallelComputing" ;;61pear) c="Development WebDevelopment" ;;62perl5) c="Development" ;;63python) c="Development" ;;64ruby) c="Development" ;;65rubygems) c="Development" ;;66scheme) c="Development" ;;67science) c="Science Education" ;;68security) c="System Security" ;;69shells) c="System Shell" ;;70sysutils) c="System" ;;71tcl*|tk*) c="Development" ;;72textproc) c="Utility TextTools" ;;73www) c="Network" ;;74x11-clocks) c="Utility Clock" ;;75x11-fm) c="System FileManager" ;;76xfce) c="GTK XFCE" ;;77zope) c="Development WebDevelopment" ;;78esac79if [ -n "${c}" ]; then80categories="${categories} ${c}"81fi82done8384if [ -n "${categories}" ]; then85for c in ${categories}; do86${dp_ECHO_CMD} "${c}"87done | ${dp_SORT} -u | ${dp_TR} '\n' ';'88${dp_ECHO_CMD}89fi909192