diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-10-03 00:34:43 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-10-03 00:41:04 +0200 |
commit | a078ea165fe46f0503edc472881e0431ec1101cd (patch) | |
tree | 0844e9d5bd81c66bd84ed9c2e6bd734fba0b9614 /app-editors/jed | |
parent | app-editors/ersatz-emacs: Remove old. (diff) | |
download | gentoo-a078ea165fe46f0503edc472881e0431ec1101cd.tar.gz gentoo-a078ea165fe46f0503edc472881e0431ec1101cd.tar.bz2 gentoo-a078ea165fe46f0503edc472881e0431ec1101cd.zip |
app-editors/jed: Remove old.
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors/jed')
-rw-r--r-- | app-editors/jed/jed-0.99.19.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/app-editors/jed/jed-0.99.19.ebuild b/app-editors/jed/jed-0.99.19.ebuild deleted file mode 100644 index 04e69c80056f..000000000000 --- a/app-editors/jed/jed-0.99.19.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit versionator - -MY_P=${PN}-$(replace_version_separator 2 '-') - -DESCRIPTION="Console S-Lang-based editor" -HOMEPAGE="http://www.jedsoft.org/jed/" -SRC_URI="ftp://space.mit.edu/pub/davis/jed/v${PV%.*}/${MY_P}.tar.bz2" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="X gpm xft" - -RDEPEND=">=sys-libs/slang-2 - gpm? ( sys-libs/gpm ) - X? ( - x11-libs/libX11 - xft? ( - >=media-libs/freetype-2 - x11-libs/libXft - ) - )" -DEPEND="${RDEPEND} - X? ( - x11-libs/libXt - x11-base/xorg-proto - )" - -S=${WORKDIR}/${MY_P} - -src_configure() { - export JED_ROOT="${EPREFIX}"/usr/share/jed - econf \ - $(use_enable gpm) \ - $(use_enable xft) -} - -src_compile() { - emake - use X && emake xjed -} - -src_install() { - emake -j1 DESTDIR="${D}" install - - dodoc changes.txt INSTALL{,.unx} README - doinfo info/jed* - - insinto /etc - doins lib/jed.conf - - # replace IDE mode with EMACS mode - sed -i \ - -e 's/\(_Jed_Default_Emulation = \).*/\1"emacs";/' \ - "${ED}"/etc/jed.conf || die -} |