Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lde/
Date: Sun, 26 Feb 2017 22:49:40
Message-Id: 1488149369.aad03638ce6c227fe4340aa9f6216d8f96950850.monsieurp@gentoo
1 commit: aad03638ce6c227fe4340aa9f6216d8f96950850
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 26 22:48:16 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 26 22:49:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aad03638
7
8 sys-fs/lde: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sys-fs/lde/lde-2.6.1-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/sys-fs/lde/lde-2.6.1-r1.ebuild b/sys-fs/lde/lde-2.6.1-r1.ebuild
16 new file mode 100644
17 index 0000000000..18a1283d9b
18 --- /dev/null
19 +++ b/sys-fs/lde/lde-2.6.1-r1.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="ext2fs and minix disk editor for linux"
28 +HOMEPAGE="http://lde.sourceforge.net/"
29 +SRC_URI="mirror://sourceforge/lde/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +
35 +RDEPEND="sys-libs/ncurses:0="
36 +DEPEND="
37 + ${RDEPEND}
38 + dev-util/yacc"
39 +
40 +S="${WORKDIR}/${PN}"
41 +
42 +PATCHES=(
43 + "${FILESDIR}/${P}-no-shadowing.patch"
44 +)
45 +
46 +DOCS=( WARNING README TODO COPYING )
47 +
48 +RESTRICT="test"
49 +
50 +src_install() {
51 + dosbin "${PN}"
52 + newman "doc/${PN}.man" "${PN}.8"
53 + einstalldocs
54 +}