diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-11-25 22:30:27 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-11-25 22:30:27 +0100 |
commit | c5e0c1dd1a45bb1928d4150e317408afb5c06d03 (patch) | |
tree | ee2c2e3a8d0c7c28519b829bee129672b7023d07 /net-mail | |
parent | net-dialup/isdn-firmware: bdepend on app-arch/xz-utils[extra-filters] (diff) | |
download | gentoo-c5e0c1dd1a45bb1928d4150e317408afb5c06d03.tar.gz gentoo-c5e0c1dd1a45bb1928d4150e317408afb5c06d03.tar.bz2 gentoo-c5e0c1dd1a45bb1928d4150e317408afb5c06d03.zip |
net-mail/asmail: update EAPI 5 -> 8
This also drops net-mail/asmail to ~arch-only - I have a feeling that a
package which has been stabilised on x86 but not on amd64 has not seen
much use lately, and we are trying to reduce arch-tester load on
now-exotic architectures.
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/asmail/asmail-2.1-r2.ebuild (renamed from net-mail/asmail/asmail-2.1-r1.ebuild) | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/net-mail/asmail/asmail-2.1-r1.ebuild b/net-mail/asmail/asmail-2.1-r2.ebuild index 4d88997e613f..8a15dabe5212 100644 --- a/net-mail/asmail/asmail-2.1-r1.ebuild +++ b/net-mail/asmail/asmail-2.1-r2.ebuild @@ -1,17 +1,17 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=8 -inherit epatch toolchain-funcs +inherit toolchain-funcs DESCRIPTION="A small mail monitor similar to xbiff" -HOMEPAGE="http://www.tigr.net" -SRC_URI="http://www.tigr.net/afterstep/download/${PN}/${P}.tar.gz" +HOMEPAGE="https://tigr.net/afterstep/applets/" +SRC_URI="https://tigr.net/afterstep/download/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="jpeg" RDEPEND=" @@ -25,8 +25,12 @@ RDEPEND=" DEPEND="${RDEPEND} x11-base/xorg-proto" +PATCHES=( + "${FILESDIR}"/${PN}-2.1-ldflags.patch +) + src_prepare() { - epatch "${FILESDIR}"/${P}-ldflags.patch + default sed -i -e "/LIB/s/-lssl/-lssl -lcrypto/g" \ configure } |