zero-system: drop mplayer

zero-profile: random flag removals due to bugs
This commit is contained in:
Rick Farina (Zero_Chaos) 2024-01-03 13:22:11 -05:00
parent f07c970282
commit 9f590d38aa
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 13 additions and 2 deletions

View file

@ -101,7 +101,6 @@ RDEPEND="
media-gfx/gimp
x11-apps/mesa-progs
media-video/xine-ui
media-video/mplayer
net-wireless/hidclient
x11-misc/redshift
!arm? ( media-sound/baudline )

View file

@ -22,7 +22,7 @@ if [[ ${CATEGORY}/${PN} == app-crypt/hashcat ]]; then
export ALLOW_TEST=all
fi
# These packages need lto disabled
# These packages need lto or similar disabled
# CFLAGS
if [[ ${CATEGORY}/${PN} == app-crypt/mit-krb5 ]]; then
export CFLAGS="${CFLAGS/-flto/}"
@ -33,6 +33,10 @@ fi
if [[ ${CATEGORY}/${PN} == dev-util/radare2 ]]; then
export CFLAGS="${CFLAGS/-flto/}"
fi
if [[ ${CATEGORY}/${PN} == media-gfx/gimp ]]; then
# replicated on mammon but not naga
export CFLAGS="${CFLAGS/-Werror=strict-aliasing/}"
fi
if [[ ${CATEGORY}/${PN} == sys-apps/util-linux ]]; then
export CFLAGS="${CFLAGS/-flto/}"
fi
@ -52,9 +56,17 @@ fi
if [[ ${CATEGORY}/${PN} == media-libs/mesa ]]; then
export CXXFLAGS="${CXXFLAGS/-flto/}"
fi
if [[ ${CATEGORY}/${PN} == media-libs/vlc ]]; then
# replicated on mammon but not naga
export CXXFLAGS="${CXXFLAGS/-Werror=strict-aliasing/}"
fi
if [[ ${CATEGORY}/${PN} == net-ftp/filezilla ]]; then
export CXXFLAGS="${CXXFLAGS/-flto/}"
fi
if [[ ${CATEGORY}/${PN} == net-wireless/gnuradio ]]; then
# replicated on mammon but not naga
export CXXFLAGS="${CXXFLAGS/-Werror=odr/}"
fi
if [[ ${CATEGORY}/${PN} == media-libs/x265 ]]; then
export CXXFLAGS="${CXXFLAGS/-flto/}"
fi