diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-03-04 12:53:03 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-03-04 12:53:18 +0100 |
commit | 55a882c310ec3147dae57465f46c86bfcacdd8b0 (patch) | |
tree | ec09877727bf07f73f18ff7b5a27347bdcae09c2 /mail-client/claws-mail | |
parent | mail-client/claws-mail: Removed old (diff) | |
download | gentoo-55a882c310ec3147dae57465f46c86bfcacdd8b0.tar.gz gentoo-55a882c310ec3147dae57465f46c86bfcacdd8b0.tar.bz2 gentoo-55a882c310ec3147dae57465f46c86bfcacdd8b0.zip |
mail-client/claws-mail: live ebuild adjustments
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'mail-client/claws-mail')
-rw-r--r-- | mail-client/claws-mail/claws-mail-9999.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mail-client/claws-mail/claws-mail-9999.ebuild b/mail-client/claws-mail/claws-mail-9999.ebuild index c2818293f810..aca0fa2b8041 100644 --- a/mail-client/claws-mail/claws-mail-9999.ebuild +++ b/mail-client/claws-mail/claws-mail-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ if [[ "${PV}" == *9999 ]] ; then EGIT_REPO_URI="https://git.claws-mail.org/readonly/claws.git" else SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" fi SLOT="0" @@ -109,7 +109,7 @@ PATCHES=( ) pkg_setup() { - if [[ "${PV}" == *9999 ]] && ! use gtk2 ; then + if [[ "${PV}" == 9999 ]] && ! use gtk2 ; then EGIT_BRANCH="gtk3" fi } @@ -209,7 +209,8 @@ src_install() { doexe tb2claws-mail update-po uudec uuooffice # kill useless files - rm -f "${ED}"/usr/lib*/claws-mail/plugins/*.{a,la} + find "${ED}"/usr/lib*/claws-mail/plugins/ \ + \( -name "*.a" -o -name ".la" \) -delete || die } pkg_postinst() { |