diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-01-23 20:28:59 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-01-23 22:11:56 +0100 |
commit | c162e40a047a3fac1b55ce47a34bed4de55fcbbf (patch) | |
tree | 1f021e570e69dbad4b434d0d3e7a24b43e8a0f8d /media-libs/liblqr | |
parent | media-libs/libmatroska: Drop 1.5.2 (diff) | |
download | gentoo-c162e40a047a3fac1b55ce47a34bed4de55fcbbf.tar.gz gentoo-c162e40a047a3fac1b55ce47a34bed4de55fcbbf.tar.bz2 gentoo-c162e40a047a3fac1b55ce47a34bed4de55fcbbf.zip |
media-libs/liblqr: EAPI-7 bump, https
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/liblqr')
-rw-r--r-- | media-libs/liblqr/liblqr-0.4.2-r1.ebuild | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/media-libs/liblqr/liblqr-0.4.2-r1.ebuild b/media-libs/liblqr/liblqr-0.4.2-r1.ebuild index 92e8ad55728a..99053158003a 100644 --- a/media-libs/liblqr/liblqr-0.4.2-r1.ebuild +++ b/media-libs/liblqr/liblqr-0.4.2-r1.ebuild @@ -1,29 +1,23 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 -inherit eutils ltprune - -DESCRIPTION="An easy to use C/C++ seam carving library" -HOMEPAGE="http://liblqr.wikidot.com/" -SRC_URI="http://liblqr.wikidot.com/local--files/en:download-page/${PN}-1-${PV}.tar.bz2" +DESCRIPTION="Easy to use C/C++ seam carving library" +HOMEPAGE="https://liblqr.wikidot.com/" +SRC_URI="https://liblqr.wikidot.com/local--files/en:download-page/${PN}-1-${PV}.tar.bz2" LICENSE="|| ( GPL-3 LGPL-3 )" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 x86" RDEPEND="dev-libs/glib:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" S="${WORKDIR}/${PN}-1-${PV}" -src_prepare() { - epatch_user -} - src_install() { default - prune_libtool_files + find "${ED}" -name '*.la' -delete || die } |