Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/shntool/
Date: Fri, 01 Dec 2017 09:27:46
Message-Id: 1512120441.a360fbe26e5a2595bea2cf98e294af92dbd1bab1.grobian@gentoo
1 commit: a360fbe26e5a2595bea2cf98e294af92dbd1bab1
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 1 09:27:21 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 1 09:27:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a360fbe2
7
8 media-sound/shntool: fix building when CONFIG_SHELL != bash, bug #527310
9
10 Closes: https://bugs.gentoo.org/527310
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 media-sound/shntool/Manifest | 2 +-
14 media-sound/shntool/shntool-3.0.10-r1.ebuild | 7 ++++++-
15 2 files changed, 7 insertions(+), 2 deletions(-)
16
17 diff --git a/media-sound/shntool/Manifest b/media-sound/shntool/Manifest
18 index 312183bd527..c896779cc05 100644
19 --- a/media-sound/shntool/Manifest
20 +++ b/media-sound/shntool/Manifest
21 @@ -1 +1 @@
22 -DIST shntool-3.0.10.tar.gz 216061 SHA256 74302eac477ca08fb2b42b9f154cc870593aec8beab308676e4373a5e4ca2102 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d WHIRLPOOL fb7c11c99482e043da2827ab682aadde4b7309d5e0739a176589de2ac8db0af01d62826eb8d8c6451c2c72876078f4147fa8712ce41acff785ac495350d17322
23 +DIST shntool-3.0.10.tar.gz 216061 BLAKE2B b662c64992409c1a12dd3fffab5f39c69b2c1f8fb958cba590009f599e4363403aa1d353efdec8ab7529fc22cfac0b908368a132b60f7e5acd55dcae932909e2 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d
24
25 diff --git a/media-sound/shntool/shntool-3.0.10-r1.ebuild b/media-sound/shntool/shntool-3.0.10-r1.ebuild
26 index 16c9434f3ea..5e2ea531d5e 100644
27 --- a/media-sound/shntool/shntool-3.0.10-r1.ebuild
28 +++ b/media-sound/shntool/shntool-3.0.10-r1.ebuild
29 @@ -1,4 +1,4 @@
30 -# Copyright 1999-2012 Gentoo Foundation
31 +# Copyright 1999-2017 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33
34 EAPI=4
35 @@ -21,3 +21,8 @@ RDEPEND="flac? ( media-libs/flac )
36 DEPEND="${RDEPEND}"
37
38 DOCS="NEWS README ChangeLog AUTHORS doc/*"
39 +
40 +src_configure() {
41 + unset CONFIG_SHELL # default to bash, bug #527310
42 + default
43 +}