Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syrep/
Date: Mon, 28 May 2018 23:02:24
Message-Id: 1527548518.c2491d8300f8765a27e25fdea23ee2573b983ad3.bman@gentoo
1 commit: c2491d8300f8765a27e25fdea23ee2573b983ad3
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 28 16:26:40 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon May 28 23:01:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2491d83
7
8 net-p2p/syrep: bump EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-p2p/syrep/syrep-0.9.ebuild | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/net-p2p/syrep/syrep-0.9.ebuild b/net-p2p/syrep/syrep-0.9.ebuild
16 index 5c015c5d59c..d3656097df0 100644
17 --- a/net-p2p/syrep/syrep-0.9.ebuild
18 +++ b/net-p2p/syrep/syrep-0.9.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2010 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=2
25 +EAPI=6
26 inherit autotools
27
28 DESCRIPTION="A generic file repository synchronization tool"
29 @@ -18,6 +18,7 @@ DEPEND="sys-libs/zlib
30 doc? ( www-client/lynx )"
31
32 src_prepare() {
33 + default
34 sed -i \
35 -e "s/#if (DB_VERSION_MAJOR != 4).*/#if (DB_VERSION_MAJOR < 4)/" \
36 configure.ac || die
37 @@ -33,8 +34,7 @@ src_configure() {
38 }
39
40 src_install() {
41 - emake DESTDIR="${D}" install || die
42 - cd doc
43 - dodoc README *.txt
44 - use doc && dohtml *.html *.css
45 + DOCS=( doc/README doc/*.txt )
46 + use doc && HTML_DOCS=( doc/*.html doc/*.css )
47 + default
48 }