summaryrefslogtreecommitdiff
blob: 22036f1b4263045f59ac06e4af9d410801918ccb (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/ivcall/ivcall-0.4.ebuild,v 1.2 2005/04/06 05:26:11 mrness Exp $

inherit eutils

DESCRIPTION="Utility for making automated telephone calls via ISDN"
HOMEPAGE="http://0pointer.de/lennart/projects/ivcall/"
SRC_URI="http://0pointer.de/lennart/projects/ivcall/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="net-dialup/isdn4k-utils"

src_compile() {
	local myconf="--disable-lynx --disable-xmltoman"
	econf $myconf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	einstall || die "einstall failed"
	dohtml doc/*.{html,css}
	dodoc doc/README
}