Skip to content

Commit

Permalink
www-plugins/firefoxpwa: fix cargo target dir
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/939376
Signed-off-by: Viorel Munteanu <[email protected]>
  • Loading branch information
ceamac committed Sep 11, 2024
1 parent 89de6f2 commit 04722c6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions www-plugins/firefoxpwa/firefoxpwa-2.12.0-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ src_configure() {

src_install() {
# Executables
dobin target/*/firefoxpwa
dobin $(cargo_target_dir)/firefoxpwa
exeinto /usr/libexec
doexe target/*/firefoxpwa-connector
doexe $(cargo_target_dir)/firefoxpwa-connector

# Manifest
local target_dirs=( /usr/lib{,64}/mozilla/native-messaging-hosts )
Expand All @@ -479,9 +479,9 @@ src_install() {
done

# Completions
newbashcomp target/*/completions/firefoxpwa.bash firefoxpwa
dofishcomp target/*/completions/firefoxpwa.fish
dozshcomp target/*/completions/_firefoxpwa
newbashcomp $(cargo_target_dir)/completions/firefoxpwa.bash firefoxpwa
dofishcomp $(cargo_target_dir)/completions/firefoxpwa.fish
dozshcomp $(cargo_target_dir)/completions/_firefoxpwa

# UserChrome
insinto /usr/share/firefoxpwa
Expand Down
10 changes: 5 additions & 5 deletions www-plugins/firefoxpwa/firefoxpwa-2.12.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ src_configure() {

src_install() {
# Executables
dobin target/*/firefoxpwa
dobin $(cargo_target_dir)/firefoxpwa
exeinto /usr/libexec
doexe target/*/firefoxpwa-connector
doexe $(cargo_target_dir)/firefoxpwa-connector

# Manifest
local target_dirs=( /usr/lib{,64}/mozilla/native-messaging-hosts )
Expand All @@ -479,9 +479,9 @@ src_install() {
done

# Completions
newbashcomp target/*/completions/firefoxpwa.bash firefoxpwa
dofishcomp target/*/completions/firefoxpwa.fish
dozshcomp target/*/completions/_firefoxpwa
newbashcomp $(cargo_target_dir)/completions/firefoxpwa.bash firefoxpwa
dofishcomp $(cargo_target_dir)/completions/firefoxpwa.fish
dozshcomp $(cargo_target_dir)/completions/_firefoxpwa

# UserChrome
insinto /usr/share/firefoxpwa
Expand Down
10 changes: 5 additions & 5 deletions www-plugins/firefoxpwa/firefoxpwa-2.12.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,9 @@ src_configure() {

src_install() {
# Executables
dobin target/*/firefoxpwa
dobin $(cargo_target_dir)/firefoxpwa
exeinto /usr/libexec
doexe target/*/firefoxpwa-connector
doexe $(cargo_target_dir)/firefoxpwa-connector

# Manifest
local target_dirs=( /usr/lib{,64}/mozilla/native-messaging-hosts )
Expand All @@ -499,9 +499,9 @@ src_install() {
done

# Completions
newbashcomp target/*/completions/firefoxpwa.bash firefoxpwa
dofishcomp target/*/completions/firefoxpwa.fish
dozshcomp target/*/completions/_firefoxpwa
newbashcomp $(cargo_target_dir)/completions/firefoxpwa.bash firefoxpwa
dofishcomp $(cargo_target_dir)/completions/firefoxpwa.fish
dozshcomp $(cargo_target_dir)/completions/_firefoxpwa

# UserChrome
insinto /usr/share/firefoxpwa
Expand Down
10 changes: 5 additions & 5 deletions www-plugins/firefoxpwa/firefoxpwa-2.12.3.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,9 @@ src_configure() {

src_install() {
# Executables
dobin target/*/firefoxpwa
dobin $(cargo_target_dir)/firefoxpwa
exeinto /usr/libexec
doexe target/*/firefoxpwa-connector
doexe $(cargo_target_dir)/firefoxpwa-connector

# Manifest
local target_dirs=( /usr/lib{,64}/mozilla/native-messaging-hosts )
Expand All @@ -499,9 +499,9 @@ src_install() {
done

# Completions
newbashcomp target/*/completions/firefoxpwa.bash firefoxpwa
dofishcomp target/*/completions/firefoxpwa.fish
dozshcomp target/*/completions/_firefoxpwa
newbashcomp $(cargo_target_dir)/completions/firefoxpwa.bash firefoxpwa
dofishcomp $(cargo_target_dir)/completions/firefoxpwa.fish
dozshcomp $(cargo_target_dir)/completions/_firefoxpwa

# UserChrome
insinto /usr/share/firefoxpwa
Expand Down

0 comments on commit 04722c6

Please sign in to comment.