blob: fcddc37f518ec14e4756b29dc07a887b089a67f5 (
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
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/hap/hap-3.7.ebuild,v 1.2 2004/10/17 09:42:03 dholm Exp $
IUSE=""
DESCRIPTION="A terminal mail notification program (replacement for biff)"
HOMEPAGE="http://www.transbay.net/~enf/sw.html"
SRC_URI="http://www.transbay.net/~enf/hap-3.7.tar"
DEPEND="sys-libs/libtermcap-compat"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
# untars to 'hap/'
S="${WORKDIR}/${PN}"
src_compile() {
# The configure script doesn't like --mandir etc., so we call it directly
# rather than via econf
./configure || die "configure failed"
emake || die "emake failed"
}
src_install() {
dobin hap
doman hap.1
}
|