blob: 8af67b710954ab54498a61adb4d279a76f1e4138 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/jive/jive-1.1.ebuild,v 1.2 2003/06/09 20:01:05 brad Exp $
DESCRIPTION="Filter that converts English text to Jive, by Adam Douglas"
HOMEPAGE="http://cvs.gentoo.org/~brad/"
SRC_URI="http://cvs.gentoo.org/~brad/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="virtual/glibc"
#RDEPEND=""
S=${WORKDIR}/${PN}
src_compile() {
emake
}
src_install() {
dobin jive
doman jive.1
dodoc README POSTER
}
|