blob: 26ba68a3493f6f1541186611c4a43e42b135c0cf (
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
45
46
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Sound card based multimode software modem for Amateur Radio use."
HOMEPAGE="http://www.w1hkj.com/Fldigi.html"
SRC_URI="mirror://berlios/${PN}/${P}.tar.gz
doc? ( mirror://berlios/${PN}/${PN}-3.1.pdf )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc hamlib nls portaudio pulseaudio sndfile xmlrpc"
RDEPEND=">=x11-libs/fltk-1.1.7
dev-libs/libxml2
media-libs/libsamplerate
media-libs/jpeg
media-libs/libpng
x11-misc/xdg-utils
hamlib? ( media-libs/hamlib )
portaudio? ( >=media-libs/portaudio-19_pre20071207 )
pulseaudio? ( media-sound/pulseaudio )
sndfile? ( >=media-libs/libsndfile-1.0.10 )
xmlrpc? ( dev-libs/xmlrpc-c )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
dev-util/pkgconfig"
src_compile() {
econf $(use_with sndfile) \
$(use_with portaudio) \
$(use_with hamlib) \
$(use_enable nls) \
$(use_with pulseaudio) \
$(use_with xmlrpc)
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README || die "dodoc failed"
if use doc ; then
dodoc "${DISTDIR}"/${PN}-3.1.pdf || die "dodoc failed"
fi
}
|