-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mail-client/betterbird-bin: fix QA bugs
Closes: https://bugs.gentoo.org/935522 Closes: https://bugs.gentoo.org/935523 Signed-off-by: Justin Donofrio <[email protected]>
- Loading branch information
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ inherit desktop xdg | |
|
||
DESCRIPTION="Betterbird is a fine-tuned version of Mozilla Thunderbird." | ||
HOMEPAGE="https://github.com/Betterbird/thunderbird-patches https://betterbird.eu/" | ||
SRC_URI="https://www.betterbird.eu/downloads/LinuxArchive/betterbird-${PV}-bb29.en-US.linux-x86_64.tar.bz2" | ||
SRC_URI="amd64? ( https://www.betterbird.eu/downloads/LinuxArchive/betterbird-${PV}-bb29.en-US.linux-x86_64.tar.bz2 )" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
redawl
Contributor
|
||
|
||
S="${WORKDIR}" | ||
LICENSE="MPL-2.0" | ||
|
@@ -17,7 +17,29 @@ KEYWORDS="-* ~amd64" | |
RESTRICT="bindist mirror test strip" | ||
|
||
RDEPEND=" | ||
app-accessibility/at-spi2-core | ||
dev-libs/dbus-glib | ||
dev-libs/glib | ||
media-libs/alsa-lib | ||
media-libs/fontconfig | ||
media-libs/freetype | ||
sys-apps/dbus | ||
virtual/freedesktop-icon-theme | ||
x11-libs/cairo | ||
x11-libs/gdk-pixbuf:2 | ||
x11-libs/gtk+ | ||
x11-libs/libX11 | ||
x11-libs/libXcomposite | ||
x11-libs/libXcursor | ||
x11-libs/libXdamage | ||
x11-libs/libXext | ||
x11-libs/libXfixes | ||
x11-libs/libXi | ||
x11-libs/libXrandr | ||
x11-libs/libXrender | ||
x11-libs/libXtst | ||
x11-libs/libxcb | ||
x11-libs/pango | ||
" | ||
|
||
QA_PREBUILT="*" | ||
|
@@ -37,6 +59,8 @@ src_install() { | |
} | ||
|
||
pkg_postinst() { | ||
xdg_pkg_postinst | ||
|
||
elog "Language pack XPIs need to be downloaded and installed manually." | ||
elog "Please see the link below for further information." | ||
elog "" | ||
|
Why is amd64 checked here? I would assume keywords should handle this.
In other words, only amd64 is supported, so why does this check need to happen?
Also curious about why
KEYWORDS="-* ~amd64"
is used instead ofKEYWORDS="~amd64"