summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-terms/xvt/xvt-2.1-r1.ebuild')
-rw-r--r--x11-terms/xvt/xvt-2.1-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/x11-terms/xvt/xvt-2.1-r1.ebuild b/x11-terms/xvt/xvt-2.1-r1.ebuild
deleted file mode 100644
index d10eef7e0d94..000000000000
--- a/x11-terms/xvt/xvt-2.1-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/xvt/xvt-2.1-r1.ebuild,v 1.9 2010/01/11 17:58:35 armin76 Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="A tiny vt100 terminal emulator for X"
-HOMEPAGE="ftp://ftp.x.org/R5contrib/xvt-1.0.README"
-SRC_URI="ftp://ftp.x.org/R5contrib/xvt-1.0.tar.Z
- mirror://gentoo/xvt-2.1.diff.gz"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="alpha ~amd64 ~ppc x86"
-IUSE=""
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}
- x11-proto/xproto"
-S=${WORKDIR}/${PN}-1.0
-
-src_unpack() {
- unpack ${A}
-
- # this brings the distribution upto version 2.1
- cd "${S}"
- epatch "${WORKDIR}"/xvt-2.1.diff
-
- # fix #61393
- epatch "${FILESDIR}"/xvt-ttyinit-svr4pty.diff
-
- # set the makefile options
- sed -i 's/#\(ARCH=LINUX\)/\1/g' Makefile
-
- # set CFLAGS
- sed -i "s^\(CFLAGS=\)-O^\1${CFLAGS}^g" Makefile
-
- # make gcc quiet.
- sed -i -e 's/^void$/int/' -e 's/^void\( main\)/int\1/g' xvt.c
-
-}
-
-src_compile() {
- # emake -j1 config
- emake || die "emake failed"
-}
-
-src_install() {
- dobin xvt || die "dobin failed"
- doman xvt.1
- dodoc README
-}