Skip to content

Commit

Permalink
media-video/vlc: avoid calling lua-single_pkg_setup when USE='-lua'
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/761535
Signed-off-by: Mike Gilbert <[email protected]>
  • Loading branch information
floppym committed Dec 25, 2020
1 parent 35da3ae commit 2140581
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions media-video/vlc/vlc-3.0.11.1-r100.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,12 @@ DOCS=( AUTHORS THANKS NEWS README doc/fortunes.txt )

S="${WORKDIR}/${MY_P}"

pkg_setup() {
if use lua; then
lua-single_pkg_setup
fi
}

src_prepare() {
xdg_src_prepare # bug 608256

Expand Down
6 changes: 6 additions & 0 deletions media-video/vlc/vlc-3.0.9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,12 @@ DOCS=( AUTHORS THANKS NEWS README doc/fortunes.txt )

S="${WORKDIR}/${MY_P}"

pkg_setup() {
if use lua; then
lua-single_pkg_setup
fi
}

src_prepare() {
xdg_src_prepare # bug 608256

Expand Down
6 changes: 6 additions & 0 deletions media-video/vlc/vlc-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ DOCS=( AUTHORS THANKS NEWS README doc/fortunes.txt )

S="${WORKDIR}/${MY_P}"

pkg_setup() {
if use lua; then
lua-single_pkg_setup
fi
}

src_prepare() {
xdg_src_prepare # bug 608256

Expand Down

0 comments on commit 2140581

Please sign in to comment.