Skip to content

Commit

Permalink
dev-libs/iksemel: update EAPI 7 -> 8
Browse files Browse the repository at this point in the history
Closes: gentoo#32879
Signed-off-by: Michael Mair-Keimberger <[email protected]>
Signed-off-by: David Seifert <[email protected]>
  • Loading branch information
mm1ke authored and SoapGentoo committed Sep 17, 2023
1 parent 671dab8 commit 6f14d35
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
EAPI=8

inherit autotools

Expand All @@ -12,11 +12,11 @@ SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
IUSE="ssl static-libs"
IUSE="ssl"

RDEPEND="ssl? ( net-libs/gnutls:= )"
DEPEND="${RDEPEND}
ssl? ( virtual/pkgconfig )"
DEPEND="${RDEPEND}"
BDEPEND="ssl? ( virtual/pkgconfig )"

PATCHES=(
"${FILESDIR}"/${PN}-1.3-gnutls-2.8.patch
Expand All @@ -30,15 +30,13 @@ src_prepare() {
}

src_configure() {
econf \
$(use_with ssl gnutls) \
$(use_enable static-libs static)
econf $(use_with ssl gnutls)
}

src_install() {
default
dodoc HACKING

# package installs .pc files
find "${D}" -name '*.la' -delete || die
find "${ED}" -name '*.la' -delete || die
}

0 comments on commit 6f14d35

Please sign in to comment.