diff options
author | Matt Turner <mattst88@gentoo.org> | 2018-04-26 18:05:55 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-04-26 18:05:55 -0700 |
commit | 48c39c87f56eeede87b27d1572ae90437210b719 (patch) | |
tree | 3a07779c914391726ef4663b5cd9b3c2bee2e279 /app-editors/xvile/xvile-9.8s-r1.ebuild | |
parent | dev-java/*: Update dependencies (x11-proto/* -> x11-base/xorg-proto). (diff) | |
download | gentoo-48c39c87f56eeede87b27d1572ae90437210b719.tar.gz gentoo-48c39c87f56eeede87b27d1572ae90437210b719.tar.bz2 gentoo-48c39c87f56eeede87b27d1572ae90437210b719.zip |
app-editors/xvile: Move x11 proto deps to DEPEND
Diffstat (limited to 'app-editors/xvile/xvile-9.8s-r1.ebuild')
-rw-r--r-- | app-editors/xvile/xvile-9.8s-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-editors/xvile/xvile-9.8s-r1.ebuild b/app-editors/xvile/xvile-9.8s-r1.ebuild new file mode 100644 index 000000000000..8ea94b51724e --- /dev/null +++ b/app-editors/xvile/xvile-9.8s-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_P="${PN/x/}-${PV}" +DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone" +HOMEPAGE="https://invisible-island.net/vile/" +SRC_URI="ftp://invisible-island.net/vile/current/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="perl" + +RDEPEND="perl? ( dev-lang/perl ) + =app-editors/vile-${PV} + >=x11-libs/libX11-1.0.0 + >=x11-libs/libXt-1.0.0 + >=x11-libs/libICE-1.0.0 + >=x11-libs/libSM-1.0.0 + >=x11-libs/libXaw-1.0.1 + >=x11-libs/libXpm-3.5.4.2" +DEPEND="${RDEPEND} + x11-base/xorg-proto + sys-devel/flex" + +S=${WORKDIR}/${MY_P} + +src_configure() { + econf \ + --with-ncurses \ + --with-x \ + $(use_with perl) +} + +src_install() { + dobin xvile + dodoc CHANGES* README doc/*.doc + docinto html + dodoc doc/*.html +} |