blob: c897b7e67869d6ebb7801557ab50fb84029a0245 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="An amateur radio logging program"
HOMEPAGE="http://pg4i.chronos.org.uk/"
SRC_URI="http://pg4i.chronos.org.uk/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
RDEPEND="media-libs/hamlib
>=x11-libs/gtk+-2.6.0
dev-libs/libxml2
gnome-base/libgnomeprint"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
# mime-update causes file collisions if enabled
econf --enable-mime-update=no || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog NEWS README
}
|