Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 920771
Collapse All | Expand All

(-)file_not_specified_in_diff (-9 / +16 lines)
Line  Link Here
0
-- a/pinentry.eselect    2024-01-10 00:13:03.214008508 +0300
0
++ b/pinentry.eselect    2024-01-10 00:15:31.156736469 +0300
Lines 6-19 Link Here
6
VERSION="0.7.3"
6
VERSION="0.7.3"
7
SYMLINK_PATH=/usr/bin/pinentry
7
SYMLINK_PATH=/usr/bin/pinentry
8
SYMLINK_TARGETS=(
8
# We will override it, but bin-symlink lib requires some value
9
       pinentry-efl
9
SYMLINK_TARGETS=( pinentry-tty)
10
       pinentry-gnome3
11
       pinentry-qt5
12
       pinentry-curses
13
       pinentry-tty
14
       pinentry-emacs
15
)
16
SYMLINK_DESCRIPTION='pinentry binary'
10
SYMLINK_DESCRIPTION='pinentry binary'
17
inherit bin-symlink
11
inherit bin-symlink
12
13
# override function from bin-symlink
14
find_targets() {
15
       local basedir=${SYMLINK_PATH%/*}
16
       TARGETS=()
17
18
       local f
19
       for f in "${EROOT}/${basedir}"/pinentry-*; do
20
               if [[ -x "${f}" ]]; then
21
                       TARGETS+=( "${f#*/}" )
22
               fi
23
       done
24
}

Return to bug 920771