Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/jed/
Date: Wed, 02 Oct 2019 22:41:20
Message-Id: 1570056064.a078ea165fe46f0503edc472881e0431ec1101cd.ulm@gentoo
1 commit: a078ea165fe46f0503edc472881e0431ec1101cd
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:34:43 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:41:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a078ea16
7
8 app-editors/jed: Remove old.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-editors/jed/jed-0.99.19.ebuild | 61 --------------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/app-editors/jed/jed-0.99.19.ebuild b/app-editors/jed/jed-0.99.19.ebuild
17 deleted file mode 100644
18 index 04e69c80056..00000000000
19 --- a/app-editors/jed/jed-0.99.19.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit versionator
28 -
29 -MY_P=${PN}-$(replace_version_separator 2 '-')
30 -
31 -DESCRIPTION="Console S-Lang-based editor"
32 -HOMEPAGE="http://www.jedsoft.org/jed/"
33 -SRC_URI="ftp://space.mit.edu/pub/davis/jed/v${PV%.*}/${MY_P}.tar.bz2"
34 -
35 -LICENSE="GPL-2+"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
38 -IUSE="X gpm xft"
39 -
40 -RDEPEND=">=sys-libs/slang-2
41 - gpm? ( sys-libs/gpm )
42 - X? (
43 - x11-libs/libX11
44 - xft? (
45 - >=media-libs/freetype-2
46 - x11-libs/libXft
47 - )
48 - )"
49 -DEPEND="${RDEPEND}
50 - X? (
51 - x11-libs/libXt
52 - x11-base/xorg-proto
53 - )"
54 -
55 -S=${WORKDIR}/${MY_P}
56 -
57 -src_configure() {
58 - export JED_ROOT="${EPREFIX}"/usr/share/jed
59 - econf \
60 - $(use_enable gpm) \
61 - $(use_enable xft)
62 -}
63 -
64 -src_compile() {
65 - emake
66 - use X && emake xjed
67 -}
68 -
69 -src_install() {
70 - emake -j1 DESTDIR="${D}" install
71 -
72 - dodoc changes.txt INSTALL{,.unx} README
73 - doinfo info/jed*
74 -
75 - insinto /etc
76 - doins lib/jed.conf
77 -
78 - # replace IDE mode with EMACS mode
79 - sed -i \
80 - -e 's/\(_Jed_Default_Emulation = \).*/\1"emacs";/' \
81 - "${ED}"/etc/jed.conf || die
82 -}