Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/edictionary/
Date: Sat, 08 Apr 2017 21:36:59
Message-Id: 1491687408.9110c7bfbaf6ed327e8d095e1a27cd74b42788fd.dilfridge@gentoo
1 commit: 9110c7bfbaf6ed327e8d095e1a27cd74b42788fd
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 8 21:35:09 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 8 21:36:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9110c7bf
7
8 app-dicts/edictionary: EAPI bump, bug 605728
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 app-dicts/edictionary/edictionary-2.6-r1.ebuild | 26 +++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/app-dicts/edictionary/edictionary-2.6-r1.ebuild b/app-dicts/edictionary/edictionary-2.6-r1.ebuild
16 new file mode 100644
17 index 00000000000..a0ae02ba223
18 --- /dev/null
19 +++ b/app-dicts/edictionary/edictionary-2.6-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +MY_PN="edict"
27 +MY_P="${MY_PN}-${PV}"
28 +
29 +DESCRIPTION="Command line dictionary and thesaurus"
30 +HOMEPAGE="http://edictionary.sourceforge.net/"
31 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
36 +IUSE=""
37 +
38 +RDEPEND=""
39 +DEPEND="dev-lang/perl"
40 +
41 +S="${WORKDIR}/${MY_PN}"
42 +
43 +src_install() {
44 + make prefix="${ED}/usr/bin" install
45 + dodoc Changelog ReleaseNotes README TODO
46 +}