summaryrefslogtreecommitdiff
blob: 386a22f679f8493259cd83f29de38b5656d3921b (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils autotools

DESCRIPTION="GNU ccAudio"
HOMEPAGE="http://www.gnu.org/software/ccrtp/"
SRC_URI="mirror://gnu/ccaudio/${P}.tar.gz"

KEYWORDS="~x86"
LICENSE="GPL-2"
IUSE=""
SLOT="0"

RDEPEND=">=dev-cpp/commoncpp2-1.3.0"
DEPEND="${RDEPEND}"

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${P}-configure.ac.patch
	epatch ${FILESDIR}/${P}-speex-1.1.12.patch
	eautoconf
}

src_install() {
	emake DESTDIR=${D} install || die "emake install failed"
	dodoc README ChangeLog AUTHORS NEWS TODO
}