blob: 508014d2b7be5bb5c0141f57c27d7737a8378749 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-radio/qsstv/qsstv-7.1.7.ebuild,v 1.5 2012/08/01 06:49:00 tomjbe Exp $
EAPI=4
inherit eutils multilib qt4-r2
MY_P=${P/-/_}
DESCRIPTION="Amateur radio SSTV software"
HOMEPAGE="http://users.telenet.be/on4qz/"
SRC_URI="http://users.telenet.be/on4qz/qsstv/downloads/${MY_P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="x11-libs/qt-core:4[qt3support]
media-libs/hamlib
media-libs/alsa-lib
sci-libs/fftw:3.0"
RDEPEND="${DEPEND}
x11-misc/xdg-utils"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# fix docdirectory, install path and hamlib search path
sed -i -e "s:/doc/\$\$TARGET:/doc/${PF}:" \
-e "s:local/bin:/bin:" \
-e "s:target.extra:#target.extra:" \
-e "s:-lhamlib:-L/usr/$(get_libdir)/hamlib -lhamlib:g" src/src.pro
sed -i -e "s:doc/qsstv:doc/${PF}:" src/configdialog.cpp
# add missing #includes for gcc-4.7 (bug # 427486)
epatch "${FILESDIR}"/${P}-gcc-47.patch
}
|