blob: 58382bf7e9869e94cd9307742b4a25e7c5d77dbb (
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
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/hap/hap-3.7-r1.ebuild,v 1.4 2007/04/24 18:40:58 dertobi123 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/ncurses
sys-devel/autoconf"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha ppc x86"
# untars to 'hap/'
S="${WORKDIR}/${PN}"
src_compile() {
# Fix configure to use ncurses instead of termcap (bug #103105)
sed -i -e '/AC_CHECK_LIB/s~termcap~ncurses~' configure.in
# Fix Makefile.in to use our CFLAGS
sed -i -e "/^CFLAGS=-O/s//CFLAGS=${CFLAGS}/" Makefile.in
# Rebuild the compilation framework
autoconf || die "autoconf failed"
# 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
}
|