Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mswatch/
Date: Mon, 01 Feb 2021 13:30:44
Message-Id: 1612174822.f8c9f6bce5b3a2e80257875e658df2b4cd52875c.sam@gentoo
1 commit: f8c9f6bce5b3a2e80257875e658df2b4cd52875c
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 09:34:49 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 10:20:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c9f6bc
7
8 net-mail/mswatch: port to EAPI 7
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-mail/mswatch/mswatch-1.2.0-r1.ebuild | 18 +++++++++---------
14 1 file changed, 9 insertions(+), 9 deletions(-)
15
16 diff --git a/net-mail/mswatch/mswatch-1.2.0-r1.ebuild b/net-mail/mswatch/mswatch-1.2.0-r1.ebuild
17 index 06d3a3d1712..7c542663566 100644
18 --- a/net-mail/mswatch/mswatch-1.2.0-r1.ebuild
19 +++ b/net-mail/mswatch/mswatch-1.2.0-r1.ebuild
20 @@ -1,8 +1,9 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 -inherit linux-info ltprune
27 +EAPI=7
28 +
29 +inherit linux-info
30
31 DESCRIPTION="A utility to watch mailstores for changes and initiate mailbox syncs"
32 HOMEPAGE="http://mswatch.sourceforge.net/"
33 @@ -11,12 +12,10 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 LICENSE="GPL-2"
35 SLOT="0"
36 KEYWORDS="~amd64 ~x86"
37 -IUSE="static-libs"
38
39 +BDEPEND="virtual/pkgconfig"
40 RDEPEND=">=dev-libs/glib-2.6:2"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig
43 -"
44 +DEPEND="${RDEPEND}"
45
46 CONFIG_CHECK="~INOTIFY_USER"
47 ERROR_INOTIFY_USER="${P} requires in-kernel inotify support."
48 @@ -30,10 +29,11 @@ src_configure() {
49 econf \
50 --with-notify=inotify \
51 --enable-shared \
52 - $(use_enable static-libs static)
53 + --disable-static
54 }
55
56 src_install() {
57 default
58 - prune_libtool_files
59 +
60 + find "${ED}" -name '*.la' -delete || die
61 }