summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-08-28 08:29:00 +0000
committerTim Harder <radhermit@gentoo.org>2012-08-28 08:29:00 +0000
commitb1c62c078a60e644c5f66f3a568ea16089ddd34e (patch)
tree33c7586d0891121b3b8e9b1e1fcc00fe840d5ea6 /app-editors/xvile
parentVersion bump. (diff)
downloadgentoo-2-b1c62c078a60e644c5f66f3a568ea16089ddd34e.tar.gz
gentoo-2-b1c62c078a60e644c5f66f3a568ea16089ddd34e.tar.bz2
gentoo-2-b1c62c078a60e644c5f66f3a568ea16089ddd34e.zip
Remove old.
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/xvile')
-rw-r--r--app-editors/xvile/ChangeLog5
-rw-r--r--app-editors/xvile/xvile-9.4d.ebuild55
2 files changed, 4 insertions, 56 deletions
diff --git a/app-editors/xvile/ChangeLog b/app-editors/xvile/ChangeLog
index 7a0c46686857..87c6d332717a 100644
--- a/app-editors/xvile/ChangeLog
+++ b/app-editors/xvile/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/xvile
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.30 2012/07/08 18:22:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.31 2012/08/28 08:29:00 radhermit Exp $
+
+ 28 Aug 2012; Tim Harder <radhermit@gentoo.org> -xvile-9.4d.ebuild:
+ Remove old.
08 Jul 2012; Raúl Porcel <armin76@gentoo.org> xvile-9.8g.ebuild:
alpha/ia64/sparc stable wrt #418409
diff --git a/app-editors/xvile/xvile-9.4d.ebuild b/app-editors/xvile/xvile-9.4d.ebuild
deleted file mode 100644
index a07b11f9ed35..000000000000
--- a/app-editors/xvile/xvile-9.4d.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild,v 1.11 2010/10/30 10:06:41 ssuominen Exp $
-
-inherit eutils
-
-S=${WORKDIR}/vile-9.4
-DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
-HOMEPAGE="http://www.clark.net/pub/dickey/vile/vile.html"
-SRC_URI="ftp://ftp.phred.org/pub/vile/vile-9.4.tgz
- ftp://ftp.phred.org/pub/vile/patches/vile-9.4a.patch.gz
- ftp://ftp.phred.org/pub/vile/patches/vile-9.4b.patch.gz
- ftp://ftp.phred.org/pub/vile/patches/vile-9.4c.patch.gz
- ftp://ftp.phred.org/pub/vile/patches/vile-9.4d.patch.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86"
-IUSE="perl"
-
-RDEPEND="perl? ( dev-lang/perl )
- >=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
- >=x11-proto/xproto-7.0.4
- =app-editors/vile-${PVR}"
-DEPEND="${RDEPEND}
- sys-devel/flex"
-
-src_unpack() {
- unpack vile-9.4.tgz
- cd "${S}"
-
- local p
- for p in "${DISTDIR}"/vile-${PV%[a-z]}[a-${P##*[0-9]}].patch.gz; do
- epatch ${p}
- done
-}
-
-src_compile() {
- econf \
- --with-ncurses \
- --with-x \
- `use_with perl` \
- || die "configure failed"
- emake || die "emake failed"
-}
-
-src_install() {
- dobin xvile || die
- dodoc CHANGES* INSTALL README* doc/*
-}