1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: desktop.eclass
# @MAINTAINER:
# base-system@gentoo.org
# @SUPPORTED_EAPIS: 7 8 9
# @BLURB: support for desktop files, menus, and icons
if [[ -z ${_DESKTOP_ECLASS} ]]; then
_DESKTOP_ECLASS=1
case ${EAPI} in
7|8|9) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac
# @ECLASS_VARIABLE: _DESKTOP_IDS
# @DEFAULT_UNSET
# @DESCRIPTION:
# Internal array containing any app-ids used by make_desktop_entry() calls.
# Lets us keep track of/avoid duplicate desktop file names.
_DESKTOP_IDS=()
# @FUNCTION: make_desktop_entry
# @USAGE: [--eapi9] <command> [options]
# @DESCRIPTION:
# Make a .desktop file and install it in /usr/share/applications/.
#
# @CODE
# --eapi9: Switch to getopts style arguments instead of order based
# As the naming implies, this is off by default for EAPI=[78],
# but mandated by future EAPI.
# command: Exec command the app is being run with, also base for TryExec
# --- Options:
# name: Name that will show up in the menu; defaults to PN
# with --eapi9: must not contain arguments, use --args for that
# icon: Icon to use with the menu entry; defaults to PN
# this can be relative (to /usr/share/pixmaps) or
# a full path to an icon
# categories: Categories for this kind of application. Examples:
# https://specifications.freedesktop.org/menu-spec/latest/apa.html
# if unset, function tries to guess from package's category
# entry: Key=Value entry to append to the desktop file;
# with --eapi9: multiple allowed; old style: a printf string
# --- Additional parameters available using --eapi9:
# args: Arguments (binary params and desktop spec field codes) to add
# to Exec value, separated by a space if multiple
# desktopid: <desktopid>.desktop will be created. Must be same as "app id"
# defined in code (including reverse qualified domain if set);
# defaults to <command>
# comment: Comment (menu entry tooltip), defaults to DESCRIPTION
# force: Force-write resulting desktop file (overwrite existing)
# @CODE
#
# Example usage:
# @CODE
# Deprecated, in order:
# <command> [name] [icon] [categories] [entries...]
# New style:
# --eapi9 <command> [-a args] [-d desktopid] [-C comment] [-i icon]
# --eapi9 <command> [-n name] [-e entry...] [-c categories]
# @CODE
make_desktop_entry() {
local eapi9
if [[ ${1} == --eapi9 ]]; then
case ${EAPI} in
7|8)
eapi9=1
shift
;;
*)
die "make_desktop_entry: --eapi9 arg is obsolete in EAPI-${EAPI}!"
;;
esac
fi
[[ -z ${1} ]] && die "make_desktop_entry: You must specify at least a command"
if [[ ${eapi9} ]]; then
local args cats cmd comment desktopid entries force icon name
while [[ $# -gt 0 ]] ; do
case "${1}" in
-a|--args)
args="${2}"; shift 2 ;;
-c|--categories)
cats="${2}"; shift 2 ;;
-C|--comment)
comment="${2}"; shift 2 ;;
-d|--desktopid)
desktopid="${2}"; shift 2 ;;
-e|--entry)
entries+=( "${2}" ); shift 2 ;;
-f|--force)
force=1; shift 1 ;;
-i|--icon)
icon="${2}"; shift 2 ;;
-n|--name)
name="${2}"; shift 2 ;;
*)
if [[ -z ${cmd} ]] ; then
cmd="${1}"
else
die "make_desktop_entry: Can only take one command! First got: ${cmd}; then got: ${1}"
fi
shift ;;
esac
done
[[ -z ${cmd} ]] && die "make_desktop_entry: You must specify at least a command"
[[ -z ${name} ]] && name=${PN}
[[ -z ${icon} ]] && icon=${PN}
else
local cmd=${1}
local name=${2:-${PN}}
local icon=${3:-${PN}}
local cats=${4}
local entries=${5}
fi
[[ -z ${comment} ]] && comment="${DESCRIPTION}"
if [[ -z ${cats} ]] ; then
local catmaj=${CATEGORY%%-*}
local catmin=${CATEGORY##*-}
case ${catmaj} in
app)
case ${catmin} in
accessibility) cats="Utility;Accessibility";;
admin) cats=System;;
antivirus) cats=System;;
arch) cats="Utility;Archiving";;
backup) cats="Utility;Archiving";;
cdr) cats="AudioVideo;DiscBurning";;
dicts) cats="Office;Dictionary";;
doc) cats=Documentation;;
editors) cats="Utility;TextEditor";;
emacs) cats="Development;TextEditor";;
emulation) cats="System;Emulator";;
laptop) cats="Settings;HardwareSettings";;
office) cats=Office;;
pda) cats="Office;PDA";;
vim) cats="Development;TextEditor";;
xemacs) cats="Development;TextEditor";;
esac
;;
dev)
cats="Development"
;;
games)
case ${catmin} in
action|fps) cats=ActionGame;;
arcade) cats=ArcadeGame;;
board) cats=BoardGame;;
emulation) cats=Emulator;;
kids) cats=KidsGame;;
puzzle) cats=LogicGame;;
roguelike) cats=RolePlaying;;
rpg) cats=RolePlaying;;
simulation) cats=Simulation;;
sports) cats=SportsGame;;
strategy) cats=StrategyGame;;
esac
cats="Game;${cats}"
;;
gnome)
cats="Gnome;GTK"
;;
kde)
cats="KDE;Qt"
;;
mail)
cats="Network;Email"
;;
media)
case ${catmin} in
gfx)
cats=Graphics
;;
*)
case ${catmin} in
radio) cats=Tuner;;
sound) cats=Audio;;
tv) cats=TV;;
video) cats=Video;;
esac
cats="AudioVideo;${cats}"
;;
esac
;;
net)
case ${catmin} in
dialup) cats=Dialup;;
ftp) cats=FileTransfer;;
im) cats=InstantMessaging;;
irc) cats=IRCClient;;
mail) cats=Email;;
news) cats=News;;
nntp) cats=News;;
p2p) cats=FileTransfer;;
voip) cats=Telephony;;
esac
cats="Network;${cats}"
;;
sci)
case ${catmin} in
astro*) cats=Astronomy;;
bio*) cats=Biology;;
calc*) cats=Calculator;;
chem*) cats=Chemistry;;
elec*) cats=Electronics;;
geo*) cats=Geology;;
math*) cats=Math;;
physics) cats=Physics;;
visual*) cats=DataVisualization;;
esac
cats="Education;Science;${cats}"
;;
sys)
cats="System"
;;
www)
case ${catmin} in
client) cats=WebBrowser;;
esac
cats="Network;${cats}"
;;
*)
cats=
;;
esac
fi
if [[ ${eapi9} ]]; then
if [[ -z ${desktopid} ]]; then
if [[ ${cmd} =~ .+[[:space:]].+ ]]; then
die "make_desktop_entry: --desktopid must be provided when <command> contains a space"
fi
desktopid="${cmd##*/}"
fi
if [[ ! ${desktopid} =~ ^[A-Za-z0-9._-]+$ ]]; then
die "make_desktop_entry: <desktopid> must only consist of ASCII letters, digits, dash, underscore and dots"
fi
if [[ ${_DESKTOP_IDS[*]} =~ (^|[[:space:]])"${desktopid}"($|[[:space:]]) ]]; then
die "make_desktop_entry: desktopid \"${desktopid}\" already used in a previous call, choose a different one"
else
_DESKTOP_IDS+=( "${desktopid}" )
fi
local desktop="${T}/${desktopid}.desktop"
if [[ ! ${force} && -e ${ED}/usr/share/applications/${desktopid}.desktop ]]; then
die "make_desktop_entry: desktopid \"${desktopid}\" already exists, must be unique"
fi
else
local desktop_exec="${cmd%%[[:space:]]*}"
desktop_exec="${desktop_exec##*/}"
local desktop_suffix="-${PN}"
[[ ${SLOT%/*} != 0 ]] && desktop_suffix+="-${SLOT%/*}"
# Replace foo-foo.desktop by foo.desktop
[[ ${desktop_suffix#-} == "${desktop_exec}" ]] && desktop_suffix=""
# Prevent collisions if a file with the same name already exists #771708
local desktop="${desktop_exec}${desktop_suffix}" count=0
while [[ -e ${ED}/usr/share/applications/${desktop}.desktop ]]; do
desktop="${desktop_exec}-$((++count))${desktop_suffix}"
done
desktop="${T}/${desktop}.desktop"
fi
# Don't append another ";" when a valid category value is provided.
cats=${cats%;}${cats:+;}
if [[ -n ${icon} && ${icon} != /* ]] && [[ ${icon} == *.xpm || ${icon} == *.png || ${icon} == *.svg ]]; then
ewarn "As described in the Icon Theme Specification, icon file extensions are not"
ewarn "allowed in .desktop files if the value is not an absolute path."
icon=${icon%.*}
fi
cat > "${desktop}" <<- _EOF_ || die
[Desktop Entry]
Type=Application
Name=${name}
Comment=${comment}
Icon=${icon}
Categories=${cats}
_EOF_
if [[ ${eapi9} ]]; then
local cmd_args="${cmd} ${args}"
cat >> "${desktop}" <<- _EOF_ || die
Exec=${cmd_args%[[:space:]]}
TryExec=${cmd}
_EOF_
else
cat >> "${desktop}" <<- _EOF_ || die
Exec=${cmd}
TryExec=${cmd%% *}
_EOF_
fi
if [[ ${eapi9} && -n ${entries} ]]; then
local entry
for entry in "${entries[@]}"; do
if [[ ${entry} =~ ^[A-Za-z0-9-]+=.* ]]; then
printf "%s\n" "${entry}" >> "${desktop}" || die
else
die "make_desktop_entry: <entry> \"${entry}\" rejected; must be passed a Key=Value pair"
fi
done
else
if [[ ${entries:-=} != *=* ]]; then
# 5th arg used to be value to Path=
ewarn "make_desktop_entry: update your 5th arg to read Path=${entries}"
entries="Path=${entries}"
fi
if [[ -n ${entries} ]]; then
printf '%b\n' "${entries}" >> "${desktop}" || die
fi
fi
(
# wrap the env here so that the 'insinto' call
# doesn't corrupt the env of the caller
insopts -m 0644
insinto /usr/share/applications
doins "${desktop}"
)
}
# @FUNCTION: make_session_desktop
# @USAGE: [--eapi9] <command> [options]
# @DESCRIPTION:
# Make a session file to start a Wayland compositor or X window manager
# and install it in the appropriate location.
#
# @CODE
# --eapi9: Switch to getopts style arguments instead of order based
# As the naming implies, this is off by default for EAPI=[78],
# but mandated by future EAPI.
# command: Exec command the session is being started with, also base
# for TryExec
# with --eapi9: must not contain arguments, use --args for that
# --- Options:
# name: Name that will be displayed in login managers;
# with --eapi9: defaults to PN
# --- Additional parameters available using --eapi9:
# args: Arguments (binary params) to add to Exec value, separated by
# space if multiple
# entry: Key=Value entry to append to the session desktop file;
# multiple allowed
# comment: Comment, defaults to generic text
# filename: <filename>.desktop will be created. defaults to <command>
# xsession: Create an XSession file (Type=XSession) and install into
# /usr/share/xsessions/
# default is wayland session into /usr/share/wayland-sessions
# @CODE
#
# Example usage:
# @CODE
# Deprecated, in order:
# <name> <command> [command args...]
# You can set the file name of the session via the ${wm} variable.
# New style:
# --eapi9 <command> [-a args] [-f filename] [-C comment]
# --eapi9 <command> [-n name] [-e entry...] [-X]
# @CODE
make_session_desktop() {
local eapi9
if [[ ${1} == --eapi9 ]]; then
case ${EAPI} in
7|8)
eapi9=1
shift
;;
*)
die "make_session_desktop: --eapi9 arg is obsolete in EAPI-${EAPI}!"
;;
esac
fi
[[ -z ${1} ]] && die "make_session_desktop: You must specify at least a command"
if [[ ${eapi9} ]]; then
local args cmd comment entries filename name xsession
while [[ $# -gt 0 ]] ; do
case "${1}" in
-a|--args)
args="${2}"; shift 2 ;;
-C|--comment)
comment="${2}"; shift 2 ;;
-e|--entry)
entries+=( "${2}" ); shift 2 ;;
-f|--filename)
filename="${2}"; shift 2 ;;
-n|--name)
name="${2}"; shift 2 ;;
-X|--xsession)
xsession=1; shift 1 ;;
*)
if [[ -z ${cmd} ]] ; then
cmd="${1}"
else
die "make_session_desktop: Can only take one command! First got: ${cmd}; then got: ${1}"
fi
shift ;;
esac
done
[[ -z ${cmd} ]] && die "make_session_desktop: You must specify at least a command"
[[ -z ${name} ]] && name=${PN}
if [[ -z ${filename} ]]; then
if [[ ${cmd} =~ .+[[:space:]].+ ]]; then
die "make_session_desktop: --filename must be provided when <command> contains a space"
fi
filename="${cmd##*/}"
fi
if [[ ! ${filename} =~ ^[A-Za-z0-9._-]+$ ]]; then
die "make_session_desktop: <filename> must only consist of ASCII letters, digits, dash, underscore and dots"
fi
local cmd_args="${cmd} ${args}"
else
local name=${1:-${PN}}
local cmd=${2}
local xsession=1
local filename=${wm:-${PN}}
shift 2
local cmd_args="${cmd} $*"
fi
[[ -z ${comment} ]] && comment="This session logs you into ${name}"
local desktop="${T}/${filename}.desktop"
if [[ ${xsession} ]]; then
local path="/usr/share/xsessions"
else
local path="/usr/share/wayland-sessions"
fi
if [[ -e ${ED}${path}/${filename}.desktop ]]; then
die "make_session_desktop: session \"${filename}\" already exists, must be unique"
fi
cat > "${desktop}" <<- _EOF_ || die
[Desktop Entry]
Name=${name}
Comment=${comment}
Exec=${cmd_args%[[:space:]]}
TryExec=${cmd}
_EOF_
if [[ ${xsession} ]]; then
cat >> "${desktop}" <<- _EOF_ || die
Type=XSession
_EOF_
fi
if [[ -n ${entries} ]]; then
local entry
for entry in "${entries[@]}"; do
if [[ ${entry} =~ ^[A-Za-z0-9-]+=.* ]]; then
printf "%s\n" "${entry}" >> "${desktop}" || die
else
die "make_session_desktop: <entry> \"${entry}\" rejected; must be passed a Key=Value pair"
fi
done
fi
(
# wrap the env here so that the 'insinto' call
# doesn't corrupt the env of the caller
insopts -m 0644
insinto "${path}"
doins "${desktop}"
)
}
# @FUNCTION: domenu
# @USAGE: <menus>
# @DESCRIPTION:
# Install the list of .desktop menu files into the appropriate directory
# (/usr/share/applications).
domenu() {
(
# wrap the env here so that the 'insinto' call
# doesn't corrupt the env of the caller
local i ret=0
insopts -m 0644
insinto /usr/share/applications
for i in "$@" ; do
if [[ -d ${i} ]] ; then
doins "${i}"/*.desktop
((ret|=$?))
else
doins "${i}"
((ret|=$?))
fi
done
exit ${ret}
)
}
# @FUNCTION: newmenu
# @USAGE: <menu> <newname>
# @DESCRIPTION:
# Like all other new* functions, install the specified menu as newname.
newmenu() {
(
# wrap the env here so that the 'insinto' call
# doesn't corrupt the env of the caller
insopts -m 0644
insinto /usr/share/applications
newins "$@"
)
}
# @FUNCTION: _iconins
# @INTERNAL
# @DESCRIPTION:
# function for use in doicon and newicon
_iconins() {
(
# wrap the env here so that the 'insinto' call
# doesn't corrupt the env of the caller
insopts -m 0644
local funcname=$1; shift
local size dir
local context=apps
local theme=hicolor
while [[ $# -gt 0 ]] ; do
case $1 in
-s|--size)
if [[ ${2%%x*}x${2%%x*} == "$2" ]] ; then
size=${2%%x*}
else
size=${2}
fi
case ${size} in
16|22|24|32|36|48|64|72|96|128|192|256|512|1024)
size=${size}x${size};;
symbolic|scalable)
;;
*)
eerror "${size} is an unsupported icon size!"
exit 1;;
esac
shift 2;;
-t|--theme)
theme=${2}
shift 2;;
-c|--context)
context=${2}
shift 2;;
*)
if [[ -z ${size} ]] ; then
insinto /usr/share/pixmaps
else
insinto /usr/share/icons/${theme}/${size}/${context}
fi
if [[ ${funcname} == doicon ]] ; then
if [[ -f $1 ]] ; then
doins "${1}"
elif [[ -d $1 ]] ; then
shopt -s nullglob
doins "${1}"/*.{png,svg}
shopt -u nullglob
else
eerror "${1} is not a valid file/directory!"
exit 1
fi
else
break
fi
shift 1;;
esac
done
if [[ ${funcname} == newicon ]] ; then
newins "$@"
fi
)
}
# @FUNCTION: doicon
# @USAGE: [options] <icons>
# @DESCRIPTION:
# Install icon into the icon directory /usr/share/icons or into
# /usr/share/pixmaps if "--size" is not set.
# This is useful in conjunction with creating desktop/menu files.
#
# @CODE
# options:
# -s, --size
# !!! must specify to install into /usr/share/icons/... !!!
# size of the icon, like 48 or 48x48
# supported icon sizes are:
# 16 22 24 32 36 48 64 72 96 128 192 256 512 1024 scalable
# -c, --context
# defaults to "apps"
# -t, --theme
# defaults to "hicolor"
#
# icons: list of icons
#
# example 1: doicon foobar.png fuqbar.svg suckbar.png
# results in: insinto /usr/share/pixmaps
# doins foobar.png fuqbar.svg suckbar.png
#
# example 2: doicon -s 48 foobar.png fuqbar.png blobbar.png
# results in: insinto /usr/share/icons/hicolor/48x48/apps
# doins foobar.png fuqbar.png blobbar.png
# @CODE
doicon() {
_iconins ${FUNCNAME} "$@"
}
# @FUNCTION: newicon
# @USAGE: [options] <icon> <newname>
# @DESCRIPTION:
# Like doicon, install the specified icon as newname.
#
# @CODE
# example 1: newicon foobar.png NEWNAME.png
# results in: insinto /usr/share/pixmaps
# newins foobar.png NEWNAME.png
#
# example 2: newicon -s 48 foobar.png NEWNAME.png
# results in: insinto /usr/share/icons/hicolor/48x48/apps
# newins foobar.png NEWNAME.png
# @CODE
newicon() {
_iconins ${FUNCNAME} "$@"
}
fi
|