blob: 7c08183ecf38d5ea4000914da58efd8096ac97eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/videoteco/videoteco-4.69.ebuild,v 1.8 2004/06/24 22:02:42 agriffis Exp $
inherit eutils
DESCRIPTION="Enhanced Visual TECO clone"
HOMEPAGE="ftp://ftp.mindlink.net/pub/teco/cantrell-teco/"
SRC_URI="mirror://gentoo/teco_4_69.tar.gz
mirror://gentoo/patch1"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha x86"
IUSE=""
DEPEND="virtual/glibc
sys-libs/libtermcap-compat"
S=${WORKDIR}/teco_4_69
src_compile() {
epatch ${FILESDIR}/teco_linux_gcc3.patch
epatch ${DISTDIR}/patch1
emake || die "compilation failed"
}
src_install() {
insinto /usr/bin
dobin teco
dodoc README RELEASE_NOTES
}
|