summaryrefslogtreecommitdiff
blob: 27afc486c955122337ad61eb661b1b5e12d5281b (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
# 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-r1.ebuild,v 1.2 2005/06/26 08:41:01 blubb 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="~amd64 ~x86"
IUSE="softfax"
DEPEND="net-dialup/isdn4k-utils
	softfax? ( >=media-libs/spandsp-0.0.2_pre10 )"

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
}