diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-24 23:53:23 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-25 00:16:42 +0100 |
commit | 2a5008e569266c828d659083a5a017acb88cccf2 (patch) | |
tree | 5470aa70b9acfad549c23aa694447ca598368c06 /media-sound/audacious | |
parent | media-sound/jack-smf-utils: EAPI-7 bump, DEPEND on virtual/jack (diff) | |
download | gentoo-2a5008e569266c828d659083a5a017acb88cccf2.tar.gz gentoo-2a5008e569266c828d659083a5a017acb88cccf2.tar.bz2 gentoo-2a5008e569266c828d659083a5a017acb88cccf2.zip |
media-sound/audacious: Disable po dir if USE !nls
Build system fails to live up to the promise of --disable-nls,
so do it manually.
Bug: https://bugs.gentoo.org/512698
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/audacious')
-rw-r--r-- | media-sound/audacious/audacious-9999.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/media-sound/audacious/audacious-9999.ebuild b/media-sound/audacious/audacious-9999.ebuild index 3bbf110f1388..11547ce4fca9 100644 --- a/media-sound/audacious/audacious-9999.ebuild +++ b/media-sound/audacious/audacious-9999.ebuild @@ -51,6 +51,9 @@ src_unpack() { src_prepare() { default + if ! use nls; then + sed -e "/SUBDIRS/s/ po//" -i Makefile || die # bug #512698 + fi [[ ${PV} == *9999 ]] && eautoreconf } |