summaryrefslogtreecommitdiff
blob: 43fef87cafd11403bd4b51919a3d2ac7fada936b (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
42
43
44
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-app_rtxfax/asterisk-app_rtxfax-0.0.2_pre25.ebuild,v 1.3 2009/07/23 15:19:20 volkmar Exp $

IUSE=""

inherit eutils

MY_PN="app_rtxfax"

DESCRIPTION="Asterisk applications for sending and receiving faxes"
HOMEPAGE="http://www.soft-switch.org/"
#SRC_URI="mirror://gentoo/${P}.tar.bz2"
SRC_URI="http://www.netdomination.org/pub/asterisk/${P}.tar.bz2"

RESTRICT="mirror"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"

DEPEND=">=media-libs/spandsp-0.0.2_pre20
	>=net-misc/asterisk-1.0.5-r1"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${MY_PN}-${PV}

src_unpack() {
	unpack ${A}
	cd "${S}"

	# use asterisk-config...
	epatch "${FILESDIR}"/${MY_PN}-0.0.2_pre25-gentoo.diff
}

src_compile() {
	emake -j1 || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"

	dodoc README || die "dodoc failed"
}