diff options
author | Sam James <sam@gentoo.org> | 2021-03-23 04:22:56 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-23 04:22:56 +0000 |
commit | 59931de2f634661f1340346e6cbc411a71f0b234 (patch) | |
tree | dd07edd781b5c0b8b0d23d62cad1bc62afdfc60d /app-text/asa | |
parent | app-admin/authbind: add 2.1.2 (diff) | |
download | gentoo-59931de2f634661f1340346e6cbc411a71f0b234.tar.gz gentoo-59931de2f634661f1340346e6cbc411a71f0b234.tar.bz2 gentoo-59931de2f634661f1340346e6cbc411a71f0b234.zip |
app-text/asa: port to EAPI 7, HTTPS in HOMEPAGE/SRC_URI
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-text/asa')
-rw-r--r-- | app-text/asa/asa-1.1-r1.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app-text/asa/asa-1.1-r1.ebuild b/app-text/asa/asa-1.1-r1.ebuild index 83a488a04c1c..64afb7597cb3 100644 --- a/app-text/asa/asa-1.1-r1.ebuild +++ b/app-text/asa/asa-1.1-r1.ebuild @@ -1,24 +1,26 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 inherit toolchain-funcs DESCRIPTION="ASA Carriage control conversion for ouput by Fortran programs" -HOMEPAGE="http://www.ibiblio.org/pub/Linux/devel/lang/fortran/" -SRC_URI="http://www.ibiblio.org/pub/Linux/devel/lang/fortran/${P}.tar.gz" +HOMEPAGE="https://www.ibiblio.org/pub/Linux/devel/lang/fortran/" +SRC_URI="https://www.ibiblio.org/pub/Linux/devel/lang/fortran/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64" -IUSE="" src_prepare() { + default + sed \ - -e "s:-o:${LDFLAGS} -o:g" \ + -e "s;-o;${LDFLAGS} -o;g" \ -e "/^CFLAGS/d" \ -i Makefile || die + tc-export CC } |