diff options
author | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2022-07-10 02:10:49 +0400 |
---|---|---|
committer | Vitaly Zdanevich <zdanevich.vitaly@ya.ru> | 2022-07-10 02:12:53 +0400 |
commit | ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf (patch) | |
tree | 961b0a23b8a11238a107597d4dc7a83b2f436909 /media-sound | |
parent | app-crypt/tang: add conf.d config file (diff) | |
download | guru-ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf.tar.gz guru-ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf.tar.bz2 guru-ceafffcacd1fe1fe14c1e4b1ad52662f97a96eaf.zip |
media-sound/nulloy: do not strip by default
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/nulloy/files/add-dark-theme.patch (renamed from media-sound/nulloy/files/nulloy.patch) | 0 | ||||
-rw-r--r-- | media-sound/nulloy/files/add-nostrip.patch | 10 | ||||
-rw-r--r-- | media-sound/nulloy/nulloy-9999.ebuild | 8 |
3 files changed, 17 insertions, 1 deletions
diff --git a/media-sound/nulloy/files/nulloy.patch b/media-sound/nulloy/files/add-dark-theme.patch index 155879b1b..155879b1b 100644 --- a/media-sound/nulloy/files/nulloy.patch +++ b/media-sound/nulloy/files/add-dark-theme.patch diff --git a/media-sound/nulloy/files/add-nostrip.patch b/media-sound/nulloy/files/add-nostrip.patch new file mode 100644 index 000000000..0078b64ce --- /dev/null +++ b/media-sound/nulloy/files/add-nostrip.patch @@ -0,0 +1,10 @@ +index 795269f..5d59711 100644 +--- a/nulloy.pro ++++ b/nulloy.pro +@@ -1,5 +1,5 @@ + TEMPLATE = subdirs +-CONFIG += ordered ++CONFIG += ordered nostrip + + isEmpty(N_CONFIG_SUCCESS) { + unix:error("Please run './configure'") diff --git a/media-sound/nulloy/nulloy-9999.ebuild b/media-sound/nulloy/nulloy-9999.ebuild index fb893764d..583be7996 100644 --- a/media-sound/nulloy/nulloy-9999.ebuild +++ b/media-sound/nulloy/nulloy-9999.ebuild @@ -46,7 +46,13 @@ src_prepare() { if use skins ; then default - eapply "${FILESDIR}"/nulloy.patch + # Because stripping should not be done by the build tools, + # because Portage does it when the install phase is run to be able + # to support the `splitdebug` and `installsources` FEATURES. + # See related issue https://bugs.gentoo.org/856292 + eapply "${FILESDIR}"/add-nostrip.patch + + eapply "${FILESDIR}"/add-dark-theme.patch cp -r $WORKDIR/night src/skins fi } |